update docs (#698)

This commit is contained in:
chestm007 2019-01-08 01:49:40 +11:00 committed by GitHub
parent cf5b4576a8
commit 1c972b802d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,6 +11,11 @@ tools for this which make this even easier:
- Common base classes: :py:class:`.Module` for everything and
:py:class:`.IntervalModule` specifically for the aforementioned
usecase of updating stuff periodically.
the :py:class:`.Module` class inherits a `logger` attribute and as such
all logging should be implemented via `self.logger.<level>` rather then
initializing a new logger in the module.
- Settings (already built into above classes) allow you to easily
specify user-modifiable attributes of your class for configuration.