"Initial commit to Gerrit"
[profile/ivi/gpsd.git] / gps / __init__.py
1 # Make core client functions available without prefix.
2 #
3 # This file is Copyright (c) 2010 by the GPSD project
4 # BSD terms apply: see the file COPYING in the distribution root for details.
5
6 api_major_version = 4   # bumped on incompatible changes
7 api_minor_version = 1   # bumped on compatible changes
8
9 from gps import *
10 from misc import *
11
12 # The 'client' module exposes some C utility functions for Python clients.
13 # The 'packet' module exposes the packet getter via a Python interface.