Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bernardobarreto/logger

Log your interactive python shell actions
https://github.com/bernardobarreto/logger

Last synced: 5 days ago
JSON representation

Log your interactive python shell actions

Awesome Lists containing this project

README

        

Logger
======

Log your actions in python interactive shell.

Important
---------
It doesn't play well with ipython just with python itself.

Usage:
------
```python
from logger import *
logger = Logger()
logger.start_log()

print 'foooo' # the print output goes to the defined file (default: "python_log")

logger.stop_log()
```