Utility functions and classes
Project description
Some utility functions and classes I use in many projects.
Note: This package does not follow the UNIX philosophy. (It does more than one thing). Though some modules might get moved to their own packages in the future, this is currently not planned.
Documentation at GitHub
logable
Module to ease logging efforts
Supports
Using logging calls directly on instance
Module logger
Optional instance id
Add method information to log
Default logging config
In class Demo(Logable) you are able to use the logging calls directly (eg. self.debug(), self.warning(), self.exception(),..) to produce structured logging output like
DEBUG:Demo:working on something INFO:Demo:Finished working DEBUG:root:Inbetween WARNING:Demo:Something might go wrong ERROR:Demo:Something went wrong WARNING:Demo:Told you!
The Logable class allows you to specify an id for an instance Demo({'id': "demo2"}) resulting in
DEBUG:Demo.demo2:working on something INFO:Demo.demo2:Finished working DEBUG:root:Inbetween WARNING:Demo.demo2:Something might go wrong ERROR:Demo.demo2:Something went wrong WARNING:Demo.demo2:Told you!
Also supports method information:
2015-12-27 20:30:48 DEBUG [Demo.demo2.work_on_something] working on something 2015-12-27 20:30:48 INFO [Demo.demo2.work_on_something] Finished working 2015-12-27 20:30:48 DEBUG [root] Inbetween 2015-12-27 20:30:48 WARNING [Demo.demo2.work_on_something_else] Something might go wrong 2015-12-27 20:30:48 ERROR [Demo.demo2.work_on_something_else] Something went wrong 2015-12-27 20:30:48 WARNING [Demo.demo2.work_on_something_else] Told you!
For information on how to enable this, please have a look at logable.default_logging_config
loadable
Module to ease json(file) efforts
Supports
loading/writing json both as string and file
date, time and datetime types supported (saved and loaded as utc)
class to load/save settings from/to file
Loadable is a child class of Logable, thus inheriting all logging capabilities.
To tell class Demo(Loadable) to create an instance from a settings file, just write Demo({'settings_file': "path/to/settings.json"}).
Settings provided in __init__() overwrite the ones set in the file.
runable
Module to ease starting/stoping of classes
Supports
Startable (Class can be started start())
Stopable (Class can be stopped stop())
StartStopable (Startable() + Stopable())
SignalStopWrapper (Listens for SIGTERM and SIGINT signals and stops the class)
History
0.3.2a0 (2016-08-14)
Add datetime.timedelta to JSONEncoder/Decoder
0.3.1a0 (2016-03-31)
Catch interrupt in Stopable.stop() when sleeping
0.3.0a0 (2016-03-08)
Move webscraper to own package
0.2.14b0 (2016-03-02)
Fix missing calls to parent init method
0.2.13a0 (2016-01-28)
Runable (Startable, Stopable, StartStopable, SignalStopWrapper)
0.2.12a0 (2016-01-07)
WebScraper
0.2.11a0 (2015-12-31)
Loadable
Changed documentation
0.2.10a0 (2015-12-27)
First release on PyPI.
Logable
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distributions
Hashes for flotils-0.3.2a0.macosx-10.6-intel.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7b0bc52774e39c6b95c823fcf38dc6aac2120f3b8ebbbce4275abe2052619367 |
|
MD5 | b4e9227e8a40574cbfd59cd5abaa0a04 |
|
BLAKE2b-256 | 9a587cc51da5d96479279eeb5693ddab886ee17c2691f167172393a114690d8c |
Hashes for flotils-0.3.2a0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ff1491782cc6d478e6e338e8a6c36629bcf8793ccf2a9c29a764242126643304 |
|
MD5 | 31760c526d18e7748f69a7309a63c239 |
|
BLAKE2b-256 | 215c0ee104c3990c5936eaf1160dfe18985d31d25be4a85e30e1d77ae2e5e86c |