cariboulabs-cariboulite/software/gr-caribouLite/python/caribouLite/__init__.py

24 wiersze
533 B
Python

#
# 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 CARIBOULITE module. Place your Python package
description here (python/__init__.py).
'''
import os
# import pybind11 generated symbols into the caribouLite namespace
try:
# this might fail if the module is python-only
from .caribouLite_python import *
except ModuleNotFoundError:
pass
# import any pure python here
#