summaryrefslogtreecommitdiff
path: root/gr-network/python/network/__init__.py
blob: f5844994bb7a6a3a24431c6070368c07523eb913 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#
# Copyright 2020 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 NETWORK module. Place your Python package
description here (python/__init__.py).
'''
from __future__ import unicode_literals

# import swig generated symbols into the network namespace
from .network_swig import *

# import any pure python here
#
from . import tcp_source