Skip to main content

Posts

Showing posts from August, 2009

easy_install read pip requirements.txt file

No way to feed PIP requirements file into easy_install , so the following snippet do the job:- import os f = open("requirements.txt") reqs = f.read().split("\n") for req in reqs: # ignore comments or pip options if req.startswith('--') or req.startswith('#'): continue # ignore blank lines if len(req) > 0: os.system("easy_install %s" % req)

Bookmark

Found few interesting stuff:- Pressflow, kind of Drupal distro aim for faster performance - http://pressflow.org/ Drupal module for OpenLayers - http://drupal.org/project/openlayers Flunc, web functional test - http://www.coactivate.org/projects/flunc/project-home Kind of heard about Twill before never look into it. Look quite interesting. Flunc act as a wrapper to twill script.

Meta blog

With www.k4ml.com being abandoned and not updated anymore, I've decided to start blogging here. The old site probably would being resurrected as a business site some other time. For now, all stuff would end up here.