Coder’s Eye

A site about one of the three passions in my life.

Coder’s Eye header image 4

Entries Tagged as 'Python'

Stats on a larger Django project

September 29th, 2006 · No Comments

A Django website that took (a lot) more than 20 minutes. Interesting writeup of a meta-forum app, including code samples and time breakdown.
Found via Django Forums.
Technorati Tags: django

[Read more →]

Tags: Django · Python

Zyons Forum for Django

September 16th, 2006 · Comments Off

This summer, I’ve been converting my biggest site, Invisible Castle, from Cheetah to straight Cheetah templates to Django. I’m a total Django convert, as is obvious from this site.

[Read more →]

Tags: Django · Python

A Django Killer App - Web Table Data

September 12th, 2006 · 2 Comments

Yet another great use for Django is to make trivial the creation of shared tables & forms for internal projects.

[Read more →]

Tags: OS · Tips · Django

Google Checkout - Initial Impressions from a developer

August 7th, 2006 · 2 Comments

This weekend I wrote my first Google Checkout integration module.

[Read more →]

Tags: Reviews · Best Practices · Python

Speedy Django Development

July 7th, 2006 · 3 Comments

As I’ve mentioned before, I am building my own web store using Django. The coding is going extremely quickly, thanks to the excellence of the framework.
I find myself marvelling at how quickly and simply various elements come together, especially when I contrast this to my previous experience doing the same thing with Java for […]

[Read more →]

Tags: Languages · Django · Python · Java

The best python url_join routine ever

July 6th, 2006 · 2 Comments

I don’t know how many times I’ve had to write a function to safely join url path components.

[Read more →]

Tags: Open Source · Python

SQLAlchemy = Another great SQL Frameword

June 19th, 2006 · No Comments

Just a few days ago, I was talking about how much I enjoy PySqlite, and now I’ve found another great tool for my SQL war chest. SQLAlchemy
I am already using it for another part of a big multi-database reporting project. The fun part for me is that it is more modular and less demanding […]

[Read more →]

Tags: Libraries · Python

Discovered the killer combo of Pysqlite and SQLObject

June 8th, 2006 · 2 Comments

At work, I’m doing a bunch of data acquisition on various machines outside the firewall. I think I’ve hit on an absolutely great combination of Python technologies to do this in a really manageable and scalable manner.
The design constraints:

No long-running processes. These are heavily loaded boxes. The data acquisition will run via […]

[Read more →]

Tags: Design · Libraries · Python

Magic Removal Success!

May 1st, 2006 · No Comments

I’m pleased to report that the Django magic removal branch is now much easier to use. It feels stable, the docs are getting complete, and I see now that the branch has now been merged to the head.My magic-removed code works great, and is passing all its tests with flying colors. Total time taken for three apps was approximately 4 hours.

[Read more →]

Tags: Django · Libraries · Python

Django Magic Removal, this time for real

April 27th, 2006 · No Comments

Despite my earlier initial successes using the Django Magic-Removal Branch, I had to roll back. The branch code was stuck in an unusable state for a couple weeks when I was really wanting to crank out some functionality on my storefront.
I’ve long since learned that when you have a strong urge to code, […]

[Read more →]

Tags: Django · Python