kopia lustrzana https://github.com/glidernet/python-ogn-client
13 wiersze
295 B
Python
13 wiersze
295 B
Python
![]() |
from .base import BaseParser
|
||
|
|
||
|
|
||
|
class GenericParser(BaseParser):
|
||
|
def __init__(self):
|
||
|
self.beacon_type = 'generic'
|
||
|
|
||
|
def parse_position(self, aprs_comment):
|
||
|
return {'comment': aprs_comment}
|
||
|
|
||
|
def parse_status(self, aprs_comment):
|
||
|
return {'comment': aprs_comment}
|