aboutsummaryrefslogtreecommitdiffstats
path: root/python/__init__.py
blob: e619f4f6c858303ffae55859bc9f33ea06b0183a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#
# Copyright 2008,2009 Free Software Foundation, Inc.
#
# SPDX-License-Identifier: GPL-3.0-or-later
#

# The presence of this file turns this directory into a Python package

'''
This is the GNU Radio OSMOSDR module. Place your Python package
description here (python/__init__.py).
'''
import os

# import pybind11 generated symbols into the osmosdr namespace
try:
    from .osmosdr_python import *
except ImportError:
    dirname, filename = os.path.split(os.path.abspath(__file__))
    __path__.append(os.path.join(dirname, "bindings"))
    from .osmosdr_python import *

# import any pure python here
#