summaryrefslogtreecommitdiff
path: root/gr-wavelet/python/wavelet/__init__.py
blob: bc3b3db63fae3436e3ad2b2304b6e6f026b056c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#
# Copyright 2011 Free Software Foundation, Inc.
#
# This file is part of GNU Radio
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
#

'''
Processing blocks for wavelet transforms.
'''
import os

try:
    from .wavelet_python import *
except ImportError:
    dirname, filename = os.path.split(os.path.abspath(__file__))
    __path__.append(os.path.join(dirname, "bindings"))
    from .wavelet_python import *