Archives September 2011
Find Equivalent Timezones with pytz?
Written by
on
in
Snaking.
Ran into a little problem today that requires being able to see what timezones (of the Linux-ish America/Toronto, America/Montreal variety) are equivalent to one another.:
#! /usr/bin/env python
"""Stupid little script to find equivalent timezones"""
import pytz, pprint, pickle, datetime
all_timezones = [pytz.timezone(name) for name in pytz.all_timezones]
def search():
now = datetime.datetime.now()
set = {} ...
Django Model Forms made easier...
Written by
on
in
Snaking.
Django model forms are already easy. How could they be easier?
@decorators.with_X( request, model_class, key, url_field, parameter, required=True )
def my_view( parameter ):
We also use decorators that do x.y lookup on another parameter (i.e. lookup a particular object in the fields of another object based on ids (root_object.field.get( id=...))). Sure, it winds up hitting ...
PyDispatcher runs on Python 3.2 now...
Written by
on
in
Snaking.
PyDispatcher is one of those projects that's been in "just works" mode for a long time which needs to be updated to work on Python 3.x if I'm going to be able to test much of my software there. PyDispatcher is the glue that keeps OpenGLContext/PyVRML97 together. It's also the ancestor of the Django signals ...
RunSnakeRun begins to get a memory...
Written by
on
in
Snaking.
By popular demand (well, one user so far), I've added rudimentary support for window state storage to RunSnakeRun. There's lots more state that could be stored, but for now it just stores the window position, size and maximization. Should be considered an alpha-level feature for now, as it is untested on Win32 or OSX. ...
PyOpenGL Folks, please test 3.0.2a1
Written by
on
.
Have just released this release. Not a lot of new features, though there are a number of bug fixes and a lot of new extensions, including the OpenGL 4.2 ARB modules. Particularly need testers with Win32 and OSX.
Python 2.5.6 on Ubuntu Natty... urgh...
Written by
on
in
Snaking.
Customer asked me to look at a 2.5 based project yesterday. No problem, just fire up my virtualenv and take a quick look. Hrm, no, the virtualenv isn't working... Python 2.5 isn't installed. Hrm, and it's not in the apt repository for Natty. Hrm... okay, build from source... fail on sqlite... debug... patch... build succeeds. ...
SimpleParse-pure on Python 3.2, useless, but working
Written by
on
in
Snaking.
I wanted to test PyOpenGL under 3.2 (using 2to3), but my entire test-suite is written in OpenGLContext, which is dependent on many other libraries (numpy, pydispatcher, pyvrml97, fonttools, ttfquery, simpleparse, etceteras). So, since I want to test, let's see how easy it is to convert the SimpleParse-pure project (written to test pypy speed) into a ...
PyOpenGL should now support GLE on Python 2.7
Written by
on
in
Snaking.
Got the GLE DLL built using VC9 (a.k.a. 2008), and a mechanism in place to load the GLE DLL based on which version of Python you are running (unfortunately, I don't see a good hook to check for the vcX version to use that to decide which DLL to load. In theory someone might compile ...
OpenGL up to 4.2
Written by
on
in
Snaking.
We should now have up to OpenGL 4.2 supported in PyOpenGL bzr head, should someone have a desire to play with it and hardware/drivers capable of running it.
Requests Library is nice
Written by
on
in
Snaking.
Experimented with replacing a few urllib2 calls in a product today with the requests library. Yes, requests really is nice (sat down and read through the code last night). One thing that's not obvious from the docs, to do digest auth, you pass (username, password, 'digest') as the auth parameter. There are a number ...
Daily archives
- Sept. 1, 2011
- Sept. 5, 2011
- Sept. 6, 2011
- Sept. 11, 2011
- Sept. 12, 2011
- Sept. 13, 2011
- Sept. 22, 2011
- Sept. 25, 2011
- Sept. 27, 2011
- Sept. 28, 2011