2025-09-12 11:32:49 -04:00
|
|
|
"""
|
2025-09-12 14:51:45 -04:00
|
|
|
This package provides a unified API for working with a variety of software-defined radios.
|
2025-09-12 11:32:49 -04:00
|
|
|
It streamlines tasks involving signal reception and transmission, as well as common administrative
|
|
|
|
|
operations such as detecting and configuring available devices.
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
__all__ = ["SDR"]
|
|
|
|
|
|
|
|
|
|
from .sdr import SDR
|