gr-digitalhf/python/__init__.py

28 lines
698 B
Python
Raw Permalink Normal View History

2018-10-24 18:17:58 +00:00
#
# Copyright 2008,2009 Free Software Foundation, Inc.
#
2020-02-19 13:11:45 +00:00
# SPDX-License-Identifier: GPL-3.0-or-later
2018-10-24 18:17:58 +00:00
#
# The presence of this file turns this directory into a Python package
'''
This is the GNU Radio DIGITALHF module. Place your Python package
description here (python/__init__.py).
'''
2020-02-19 13:11:45 +00:00
from __future__ import unicode_literals
2018-10-24 18:17:58 +00:00
# import swig generated symbols into the digitalhf namespace
try:
2020-02-19 13:11:45 +00:00
# this might fail if the module is python-only
from .digitalhf_swig import *
2018-10-24 18:17:58 +00:00
except ImportError:
2020-02-19 13:11:45 +00:00
pass
2018-10-24 18:17:58 +00:00
# import any pure python here
2020-02-19 13:11:45 +00:00
#
#
2019-03-28 16:23:15 +00:00
from .physical_layer_driver import physical_layer_driver
from .msg_proxy import msg_proxy
2019-08-27 06:49:07 +00:00
from .cis_12_channelizer import cis_12_channelizer