Posts Tagged ‘python’

My Favorite Python Page on the Internet

I’ve been struggling to get Numpy running on Windows 7 so that I could try out Pandas. I think this might be the ticket:

Unofficial Windows Binaries for Python Extension Packages

by Christoph Gohlke, Laboratory for Fluorescence Dynamics, University of California, Irvine.

This page provides 32- and 64-bit Windows binaries of many open-source extension packages for the official CPython distribution of the Python programming language.

via Python Extension Packages for Windows – Christoph Gohlke.

Python SimpleHTTPServer

Handy Python feature that I often forget about…

python -m SimpleHTTPServer 8000

The SimpleHTTPServer module defines a single class, SimpleHTTPRequestHandler, which is interface-compatible with BaseHTTPServer.BaseHTTPRequestHandler.

via 20.19. SimpleHTTPServer — Simple HTTP request handler — Python v2.7.3 documentation.