10 lines
374 B
Python
10 lines
374 B
Python
"""
|
|
This package provides a unified API for working with a variety of software-defined radios.
|
|
It streamlines tasks involving signal reception and transmission, as well as common administrative
|
|
operations such as detecting and configuring available devices.
|
|
"""
|
|
|
|
__all__ = ["SDR", "SDRError", "SDRParameterError"]
|
|
|
|
from .sdr import SDR, SDRError, SDRParameterError
|