3
votes
What is the best solution for database connection pooling in python?
Wrap your connection class.
Set a limit on how many connections you make.
Return an unused connection.
Intercept close to free the connection.
Update:
…
2
votes
What are the Python equivalents of the sighold and sigrelse functions found in C?
There is no way to ``block'' signals temporarily from critical sections (since this is not supported by all Unix flavors).
…
1
vote
Send file using POST from a Python script
PyCURL provides an interface to CURL from Python.
http://curl.haxx.se/libcurl/python/
Curl will do all you need. It …
1
vote
Set permissions on a compressed file in python
Per the documentation, unzip sets the permissions to those stored, under unix. Also, the shell umask is not used. Your best bet is to make sure the perms are set before you zip the file.
…
