Skip to content

Instantly share code, notes, and snippets.

View lanshark's full-sized avatar

Scott Sharkey lanshark

View GitHub Profile
@lanshark
lanshark / django-logging-sample
Created April 1, 2015 14:13
Django Sample Logging Configuration
Note: replace 'appname' with your application's name...
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'formatters': {
'verbose': {
'format': '%(levelname)s|%(asctime)s|%(module)s|%(process)d|%(thread)d|%(message)s',
'datefmt' : "%d/%b/%Y %H:%M:%S",
},
@lanshark
lanshark / pypi-release-checklist.md
Created August 27, 2013 01:07
My PyPi Package Release Checklist
  • Update HISTORY.rst
  • Update version number in my_project/__init__.py
  • Update version number in setup.py
  • Run the tests:
python setup.py test
tox
  • Commit the changes: