File: __init__.py

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

# import pybind11 generated symbols into the rds namespace
try:
    from .bindings.rds_python import *
except ModuleNotFoundError:
    from .rds_python import *

# import any pure python here
from .rdspanel import rdsPanel