By Randell on August 2, 2010
The Django version I have in my machine is 1.2.1, while one of my apps running on Google App Engine utilizes use_library to use Django 1.1. Apparently, Django versions later than 1.1 is not included in the Google App Engine SDK. So everytime I try to access my app on my dev machine, I get [...]
Posted in Random | Tagged Django, easy_install, Fedora, Google App Engine, pip, Python, setuptools, virtualenv |
By Randell on July 30, 2010
There are cases when you would want to know the version of Django that is being used in your Python installation. To do that, go to your Python console and execute the following commands: >>> import django >>> django.VERSION In my machine, it showed the following: (1, 2, 1, ‘final’, 0)
Posted in Random | Tagged Django, Python |
By Randell on April 5, 2010
In my quest for testing if emails are being sent by my app engine app, I came across GAE Testbed. GAE Testbed … is a set of base test cases to make it simple to test the more complicated pieces of AppEngine’s framework (such as sending E-mail messages, the datastore, Memcache, etc.) Since I’m already using [...]
Posted in Software Development, Web | Tagged gae-testbed, GAEUnit, Google App Engine, Python, unit testing |
By Randell on April 4, 2010
From the Python Package Index page, setuptools allows you to Download, build, install, upgrade, and uninstall Python packages — easily! The PEAK Development Center, setuptools … is a collection of enhancements to the Python distutils (for Python 2.3.5 and up on most platforms; 64-bit platforms require a minimum of Python 2.4) that allow you to more [...]
Posted in Fedora, How-to, Software Development | Tagged Easy Install, easy_install, Fedora, Python, setuptools |
By Randell on April 3, 2010
I’ve been looking for a way to print CHM files in (Fedora) Linux, since my CHM file viewer, chmsee, doesn’t have a print option (and probably all other CHM file viewers as well). Searching for CHM to PDF converters in Fedora led me to chm2pdf. chm2pdf has a couple of requirements: chmlib pychm htmldoc To [...]
Posted in Fedora, How-to | Tagged CHM, chm2pdf, chmlib, chmsee, Fedora, htmldoc, Linux, PDF, pychm, Python, python-chm |