__init__.py 582 B

1234567891011121314151617
  1. # Copyright 2016, 2017 by MPI-SWS and Data-Ken Research.
  2. # Licensed under the Apache 2.0 License.
  3. """
  4. This is the main package for antevents. Directly within this package you fill
  5. find the following module:
  6. * `base` - the core abstractions and classes of the system.
  7. The rest of the functionality is in sub-packages:
  8. * `adapters` - components to read/write events outside the system
  9. * `internal` - some internal definitions
  10. * `filters` - filters that allow linq-style query pipelines over event streams
  11. * `sensors` - interfaces to sensors go here
  12. """
  13. __version__ = "2.3.0"