https://github.com/karrlab/log
because you deserve better than log4j
https://github.com/karrlab/log
Last synced: about 1 month ago
JSON representation
because you deserve better than log4j
- Host: GitHub
- URL: https://github.com/karrlab/log
- Owner: KarrLab
- License: mit
- Created: 2016-08-22T19:37:10.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-10-21T21:54:20.000Z (almost 10 years ago)
- Last Synced: 2025-08-14T04:35:08.862Z (12 months ago)
- Language: Python
- Homepage: http://log.readthedocs.io/en/latest/
- Size: 261 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
=====
log
=====
`because you deserve better than log4j`
.. image:: https://coveralls.io/repos/github/vforgione/log/badge.svg?branch=master
:target: https://coveralls.io/github/vforgione/log?branch=master
.. image:: https://travis-ci.org/vforgione/log.svg?branch=master
:target: https://travis-ci.org/vforgione/log
.. image:: https://img.shields.io/pypi/v/log.svg?style=flat
:target: https://pypi.python.org/pypi/log
.. image:: https://readthedocs.org/projects/log/badge/?version=latest
:target: http://log.readthedocs.io/en/latest/?badge=latest
--------------
installation
--------------
pip
---
you can install via pip::
$ pip install log
if you want timezone support in the log entries, install the arrow extras::
$ pip install log[timezone]
if you want to contribute, install the dev extras::
$ pip install log[dev]
git
---
clone and run setup.py::
$ git clone https://github.com/vforgione/log.git
$ cd log
$ virtualenv -p python3 .env
$ source .env/bin/activate
$ pip install -e .
if you want timezone support in the log entries, install the arrow extras::
$ pip install "file://$(pwd)#egg=log[timezone]"
if you want to contribute, install the dev extras::
$ pip install "file://$(pwd)#egg=log[dev]"
---------------
run the tests
---------------
to run the tests you must either install the dev extras (see above). then, simply run pytest::
$ py.test --cov log --cov-report term-missing tests