0
votes
What are good open source projects in Python for which I can be a contributor?
The Fedora Project uses Python in a number of projects located at their Fedora Hosted site.
…
1
vote
How to express this Bash command in pure Python
I wrote a proof-of-concept for a batch command processor in Python, but haven't had the chance to finish it. You may …
1
vote
Tabs versus spaces in Python programming
You CAN mix tabs and spaces... BUT a tab is considered to be the same indentation as 8 spaces, so unless your editor is set up to consider a tab to be 8 spaces you're asking for trouble when mixing …
0
votes
Does an application-wide exception handler make sense?
Consider writing a context manager and using the with statement.
…
-1
votes
Python object attributes - methodology for access
Python does not need to define accessors right from the beginning, since converting attributes into properties is quick and painless. See the following for a vivid demonstration:
…
0
votes
How do I reverse a list using recursion in Python?
The trick is to join after recursing:
def backwards(l):
if not l:
return
x, y = l[0], l[1:]
return backwards(y) + [x]
…
3
votes
What is a good open source pastebin in Python or Perl?
Stickum is written using TurboGears and supports syntax highlighting for a large number of languages thanks to its use of …
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. …
2
votes
What’s a good resource for learning CGI programming in Python?
One of the biggest resources for CGI programming is the CGI homepage. Once you're done with that, familiarizing yourself with the …
12
votes
ASCII value of a character in python
Note that ord() doesn't give you the ASCII value per se; it gives you the numeric value of the character in whatever encoding it's in. Therefore the result of ord('ä') can be 228 if you're using La …
3
votes
1
vote
Install MySQLdb (for python) as non-compressed egg
This will tell setuptools to not zip it up:
sudo python setup.py install --single-version-externally-managed
…
0
votes
Python 3.0 and language evolution
gcc regularly changes how it handles C++ almost every minor release. Of course, this is more a consequence of gcc tightening how they follow the rules, and less of C++ itself changing.
…
4
votes
python curses.ascii depending on locale?
If you convert the character to a unicode then you can use unicodedata:
>>> unicodedata.category(u'ą')[0] in 'LNPS'
True
…
-1
votes
How do I get the UTC time of “midnight” for a given timezone?
Setting the TZ environment variable modifies what timezone Python's date and time functions work with.
>>> time.gmtime()
(2008, 12, 17, 1, 16, 46, 2, 352, 0)
>>> t …
