Tag: TIL

  • Django Logging Setup

    Post 1.3, Django has some nice integration with the python logging module. It can dictConf to specify the formatters, handlers, etc. This is all pretty well documented here. What wasn’t immediately obvious (to me anyway) was that you can use any of the handlers in django logging and pass the __init__ params to them in this config. So for…

  • PySide + PyInstaller = Joy

    I have a small project to make a pretty simple windows GUI executable. In the past I have always used wxpython + py2exe for this kind of thing but decided to try something new. After some poking around I settled on PySide which is the bindings for QT from Nokia. Its nice. Seems a little…