Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/bernardobarreto/logger
- Owner: bernardobarreto
- Created: 2011-10-01T19:41:30.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2012-05-01T17:28:49.000Z (over 12 years ago)
- Last Synced: 2024-05-13T03:02:27.209Z (6 months ago)
- Language: Python
- Homepage:
- Size: 98.6 KB
- Stars: 2
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.mkd
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()
```