1
vote
Processing chunked encoded HTTP POST requests in python (or generic CGI under apache)
I'd say use the twisted framework for building your http listener.
Twisted supports chunked encoding.
…
1
vote
retrieving current URL from FireFox with python
If on windows you can use win32com
import win32clipboard
import win32com.client
shell = win32com.client.Dispatch("WScript.Shell")
shell.AppActivate('Some Application Title')
…
