1
2
3 '''
4 Phone communication libary - python wrapper for Gammu library.
5
6 This module wraps all python-gammu functionality. Core library is
7 named L{gammu.Core} and all of it's content is automatically
8 imported also into this gammu module, so you can use both
9 L{gammu.StateMachine} or L{gammu.Core.StateMachine}.
10 '''
11 __author__ = 'Michal Čihař'
12 __email__ = 'michal@cihar.com'
13 __license__ = '''
14 Copyright (c) 2003 - 2007 Michal Čihař
15
16 This program is free software; you can redistribute it and/or modify it
17 under the terms of the GNU General Public License version 2 as published by
18 the Free Software Foundation.
19
20 This program is distributed in the hope that it will be useful, but WITHOUT
21 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
22 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
23 more details.
24
25 You should have received a copy of the GNU General Public License along with
26 this program; if not, write to the Free Software Foundation, Inc.,
27 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
28 '''
29
30
31 __all__ = [
32 'Data',
33 'Worker',
34 'Core',
35 '__author__',
36 '__email__',
37 '__license__',
38 '__version__',
39 ]
40
41
42 from gammu.Core import *
43
44 import gammu.Core
45 __version__ = gammu.Core.Version()[1]
46