1
vote
Is there anyway to do HTTP PUT in python
You can of course roll your own with the existing standard libraries at any level from sockets up to tweaking urllib.
http://pycurl.s …
4
votes
How to express this Bash command in pure Python
import os
import shutil
from os import path
from os.path import join, getmtime
from time import time
archive = "bak"
current = "cur"
def archive_old_versions(days = 3):
for root, dirs …
2
votes
What is the best way to sample/profile a PyObjC application?
The answer is "dtrace", but it won't work on sufficiently old macs.
http://tech.mar …
