Metadata-Version: 1.0
Name: kiss
Version: 1.0.0
Summary: KISS Python Module.
Home-page: https://github.com/ampledata/kiss
Author: Greg Albrecht
Author-email: gba@onbeep.com
License: Copyright 2013 OnBeep, 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: A pure-Python implementation of the KISS Protocol for communicating with serial TNC devices for use with Amateur Radio.
        
        Installation
        ============
        Install from pypi using pip::
        
            pip install kiss
        
        
        Usage Example
        =============
        Read & print frames from a TNC connected to '/dev/ttyUSB0' at 1200 baud::
        
            import kiss
        
            k = kiss.KISS('/dev/ttyUSB0', 1200)
            k.start()  # inits the TNC, optionally passes KISS config flags.
            k.read(callback=print)
        
        
        Testing
        =======
        Run nosetests from a Makefile target::
        
            make test
        
        
        Inspiration
        ===========
        Inspiration for this project came from:
        
        * HA5DI's dixprs_: A Python APRS project with KISS, digipeater, et al., support.
        * GE0RG's APRSDroid_: A Java/Scala Android APRS App.
        * KA2DDO's YAAC_: A Java APRS app.
        * aprs.fi_'s Ham-APRS-FAP_: A Perl APRS parser.
        
        .. _dixprs: https://sites.google.com/site/dixprs/
        .. _aprsdroid: http://aprsdroid.org/
        .. _YAAC: http://www.ka2ddo.org/ka2ddo/YAAC.html
        .. _aprs.fi: http://search.cpan.org/dist/Ham-APRS-FAP/
        .. _Ham-APRS-FAP: http://search.cpan.org/dist/Ham-APRS-FAP/
        
        
        Source
        ======
        https://github.com/ampledata/kiss
        
        Author
        ======
        Greg Albrecht W2GMD gba@onbeep.com
        
        http://ampledata.org/
        
        
        Copyright
        =========
        Copyright 2013 OnBeep, Inc.
        
        
        License
        =======
        Apache License, Version 2.0. See LICENSE for details.
Platform: UNKNOWN
