This repository was archived by the owner on Mar 11, 2024. It is now read-only.
  
  
  
  
  
Description
Hello,
I am trying to setup aprs module on a Raspberry pi but I have this error
AttributeError: module 'aprs' has no attribute 'parse_frame'
with this code => frame = aprs.parse_frame('xxxx')
Python 3.6.4
pip3.6 show aprs
Name: aprs
Version: 7.0.0
Summary: Python APRS Module.
Home-page: https://github.com/ampledata/aprs
Author: Greg Albrecht
Author-email: [email protected]
License: Copyright 2017 Greg Albrecht and Contributors
Location: /usr/local/lib/python3.6/site-packages
Requires: kiss, requests, bitarray
Python3.6
import aprs
Traceback (most recent call last):
File "", line 1, in 
File "/home/pi/aprs.py", line 2, in 
frame = aprs.parse_frame('FG4KL-3>APRS:>Hello World!')
AttributeError: module 'aprs' has no attribute 'parse_frame'
print(aprs.version)
Traceback (most recent call last):
File "", line 1, in 
NameError: name 'aprs' is not defined
Many thanks for you help !