File: __init__.py

package info (click to toggle)
gr-limesdr 3.0.1.10.69-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,900 kB
  • sloc: python: 9,646; cpp: 2,091; ansic: 26; makefile: 8; sh: 5
file content (23 lines) | stat: -rw-r--r-- 521 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#
# 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 LIMESDR module. Place your Python package
description here (python/__init__.py).
'''
import os

# import pybind11 generated symbols into the limesdr namespace
try:
    # this might fail if the module is python-only
    from .limesdr_python import *
except ModuleNotFoundError:
    pass

# import any pure python here
#