Search Results

1
vote

RFC 1123 Date Representation in Python?

You can set LC_TIME to force stftime() to use a specific locale: >>> locale.setlocale(locale.LC_TIME, 'en_US') 'en_US' >>> datetime.datetime.now().strftime(locale. …
3
votes

URL redirects; for general purpose use, which is better: server-side or client-side?

Apache HTTPD's mod_rewrite can leave a browser showing a SEO-friendly URL in its location bar while redirecting to a numeric URL on the server: RewriteEngine on RewriteRule ^/about$ …
3
votes

Python - downloading a file over HTTP with progress bar and basic authentication

urlgrabber has built-in support for progress bars, authentication, and more. …
7
votes

Django: using <select multiple> and POST

request.POST.getlist('services') …