1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

# http://pyrocko.org - GPLv3 

# 

# The Pyrocko Developers, 21st Century 

# ---|P------/S----------~Lg---------- 

 

''' 

Prompt seismological data access with a fluffy tail. 

 

Usage 

----- 

 

.. code:: 

 

from pyrocko import squirrel as psq 

 

sq = psq.Squirrel() 

sq.add(files) 

 

 

Concepts 

-------- 

 

* squirrel 

* nut 

* database 

 

Reference 

--------- 

''' 

 

from __future__ import absolute_import, print_function 

 

 

from . import base, model, io, client, tool, error, environment 

 

from .base import * # noqa 

from .model import * # noqa 

from .io import * # noqa 

from .client import * # noqa 

from .tool import * # noqa 

from .error import * # noqa 

from .environment import * # noqa 

 

__all__ = base.__all__ + model.__all__ + io.__all__ + client.__all__ \ 

+ tool.__all__ + error.__all__ + environment.__all__