Posts tagged with python
The Python install system needs an overhaul
Perhaps this is more of a rant than a useful blog post. I do plan on posting something useful though, so bear with me. First, a little background. I’ve been working on installing a website based on Django for the last while. As part of the process, I wanted to bring in all the dependencies [...]
- Share this:
- Share
Launching wxPython apps with an iPython shell
Suppose you want to run your fancy wxPython application but have a shell in the background to peek and poke at certains settings, help debug, and possibly even use an API that your program provides to automate tasks. iPython has built in wx support (as well as support for other GUIs and frontends). So anyway, [...]
- Share this:
- Share
Converting financial CSV data to OFX or QIF import files
As a side project, I created a CSV to OFX converter that applies custom mappings to CSV data to export them to QIF or OFX files. This morning, I added the ability to override the built-in mappings with custom mappings that suite your needs. Basically, you can take financial data from any institution and modify [...]
- Share this:
- Share
Custom Derived Classes for wxPython XRC resources
First of all, this isn’t a topic that is bran new or which requires new documentation. I have learned a few quirks about the process for creating custom controls, panels, frames, and other elements with XRC files in wxPython and I thought I’d write up a little post. Let me point you to the two [...]
- Share this:
- Share
Using Multiple Python Environments With Gentoo
It’s been some time since Python 2.5 became stable and released. Version 2.5 has plenty of new features that have helped me in deciding that it was time to go ahead and start using it for primary development of all my new projects. One of the reasons I was still using version 2.4 is that [...]
- Share this:
- Share
Virtual Hosting TurboGears Applications on Mac OS X Leopard
For a couple years now, I’ve been learning and applying various tricks for developing and hosting multiple Python web sites on my development machines. During that time, I made a migration to Mac OS X. Most setup files for python applications and libraries work out of the box on the Linux distributions I’ve tried. For [...]
- Share this:
- Share