24 lines
492 B
Python
24 lines
492 B
Python
import os
|
|
import warnings
|
|
|
|
try:
|
|
from . import c_common as common
|
|
from .c_common import *
|
|
except:
|
|
from . import py_common as common
|
|
from .py_common import *
|
|
|
|
from .decoder import tell
|
|
from .decoder import adsb
|
|
from .decoder import commb
|
|
from .decoder import allcall
|
|
from .decoder import surv
|
|
from .decoder import bds
|
|
from .extra import aero
|
|
from .extra import tcpclient
|
|
|
|
|
|
warnings.simplefilter("once", DeprecationWarning)
|
|
|
|
dirpath = os.path.dirname(os.path.realpath(__file__))
|