Coverage for /usr/local/lib/python3.11/dist-packages/pyrocko/squirrel/client/__init__.py: 100%
7 statements
« prev ^ index » next coverage.py v6.5.0, created at 2023-10-06 15:01 +0000
« prev ^ index » next coverage.py v6.5.0, created at 2023-10-06 15:01 +0000
1# http://pyrocko.org - GPLv3
2#
3# The Pyrocko Developers, 21st Century
4# ---|P------/S----------~Lg----------
6'''
7Squirrel remote data access.
8'''
10from . import base, local, fdsn, catalog
12from .base import * # noqa
13from .local import * # noqa
14from .fdsn import * # noqa
15from .catalog import * # noqa
17__all__ = base.__all__ + local.__all__ + fdsn.__all__ + catalog.__all__