Metadata-Version: 1.0
Name: aprs
Version: 3.0.1
Summary: Python Bindings for APRS-IS API.
Home-page: https://github.com/ampledata/aprs
Author: Greg Albrecht
Author-email: gba@orionlabs.co
License: Copyright 2015 Orion Labs, Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Description: Python Module for APRS-IS.
        
        .. image:: https://travis-ci.org/ampledata/aprs.png?branch=develop
                :target: https://travis-ci.org/ampledata/aprs
        
        
        Example Usage
        =============
        
        The following example connects to APRS-IS as W2GMD (me!) and filters for APRS
        frames coming from my prefix (W2GMD, W2GMD-n, etc). Any frames returned are
        sent to my callback *my_cb* and printed.
        
            #!/usr/bin/env python
        
            import aprs
        
            def my_callback(line):
                print line
        
            a = aprs.APRS('W2GMD', '12345')
        
            a.connect()
        
            a.send('W2GMD>APRS:>Test!')
        
            a.receive(callback=my_callback)
        
        
        Example output:
        
            W2GMD-6>APRX28,TCPIP*,qAC,APRSFI-I1:T#471,7.5,34.7,37.0,1.0,137.0,00000000
        
        Source
        ======
        Github: https://github.com/ampledata/aprs
        
        Author
        ======
        Greg Albrecht W2GMD <gba@orionlabs.co>
        
        Copyright
        =========
        Copyright 2015 Orion Labs, Inc.
        
        License
        =======
        Apache License, Version 2.0
        
Platform: UNKNOWN
