virtualenv is a tool to create isolated Python environments.
You can install it with easy_install virtualenv, or from the subversion repository with easy_install virtualenv==dev.
1
$ python virtualenv.py ENV
Distributed issue tracker.
Enhanced Python shell.
A fast, pure-Python database engine
The data is stored and accessed on disk (it is not an in-memory database) ; the implementation has been designed to make all operations, and especially selection, as fast as possible with an interpreted language
The database is implemented as a Python iterator, yielding objects whose attributes are the fields defined when the base is created ; therefore, requests can be expressed as list comprehensions or generator expressions, instead of SQL queries :
1 2
for record in [ r for r in db if r.name == 'pierre' ]:
print record.name,record.age
instead of
1 2 3
cursor.execute("SELECT * IN db WHERE name = 'pierre'")
for r in cursor.fetchall():
print r[0],r[1]
pg8000 is a Pure-Python interface to the PostgreSQL database engine
Python-PostgreSQL Database Adapter
uxPython is a cross-platform UI toolkit for creating stunning user interfaces.
A PyQt-based alternative to IDLE.
Bookshelf is a twExtJs demo with Pylons
Programming by Contract for Python
Python extension for removing markup from strings.
setuptools integration for Mercurial
A simple package that, once installed, allows setuptools to automatically create a package MANIFEST using the Mercurial version control system.
Easy-to-use, Pythonic and complete IMAP client library with no dependencies outside the Python standard library.
IMAPClient aims to be a easy-to-use, Pythonic and complete IMAP client library with no dependencies outside the Python standard library.
Features:
PDF reading/writing library.
Python bindings for the FLTK cross platform GUI toolkit
Cross-platform windowing and multimedia library
Python bindings for GTK
PyGTK allows you to write full featured GTK programs in Python. It is targetted at GTK 2.x, and can be used in conjunction with gnome-python to write Gnome applications.
Python code static checker.
Python web framework.
A Pure-Python library built as a PDF toolkit. It is capable of:
Cross platform GUI toolkit for Python
An authentication and authorization toolkit for WSGI applications and frameworks.
useful for network apps