Metadata-Version: 2.1
Name: Boomstick
Version: 0.1.dev2
Summary: UNKNOWN
Home-page: https://github.com/FuelRats/boomstick
Author: The Fuel Rats Mischief
Author-email: UNKNOWN
License: BSD-3-Clause
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Requires-Dist: coloredlogs

# Boomstick

This project is under current development, and is intended as a logging library for [mechasqueak3](https://github.com/FuelRats/pipsqueak3).

However, it does have applications as a standalone logging tool.

This project is currently in *pre-release*.  Use at your own risk!

### Requirements
* Python 3.7+
* coloredlogs

### Installation
This is python library.  Install using pip/pipenv
and import boomstick with ``import boomstick``


### Usage

```py
from boomstick import Logger``
log = Logger("Namespace", "Logfile.txt")
log.info("This is an info-level entry!")
```


will get you:
```
<2019-01-12 15:17:40,572 Namespace> [INFO] This is an info-level entry!
```


### License

*Boomstick* is licensed under the BSD 3-Clause License.



