File: __init__.py

package info (click to toggle)
python-watchgod 0.8.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 220 kB
  • sloc: python: 1,040; makefile: 55
file content (18 lines) | stat: -rw-r--r-- 432 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from .main import arun_process, awatch, run_process, watch
from .version import VERSION
from .watcher import AllWatcher, Change, DefaultDirWatcher, DefaultWatcher, PythonWatcher, RegExpWatcher

__version__ = VERSION
__all__ = (
    'watch',
    'awatch',
    'run_process',
    'arun_process',
    'Change',
    'AllWatcher',
    'DefaultDirWatcher',
    'DefaultWatcher',
    'PythonWatcher',
    'RegExpWatcher',
    'VERSION',
)