1
vote
How to call external command in Python
os.system has been superceeded by the subprocess module. Use subproccess instead.
…
0
votes
In python how to I verify that a string only contains letters, numbers, underscores and dashes?
You could always use a list comprehension and check the results with all, it would be a little less resource intensive than using a regex: all([c in string.letters + string.digits + ["_", "-" …
4
votes
Reasons not to use django
I personally don't like Django's ORM at all, and usually opt for SQLAlchemy if I choose it for a project. Also, I'm not sure if it's still an issue, but not being able to delete multiple items in t …
2
votes
Python Reg Ex. problem
Please, don't manually parse html in python! There are many better options available; I'd recommend the wonderful BeautifulSou …
1
vote
Python, beyond the basics
I'd suggest writing a non-trivial webapp using either Django or Pylons, something that does some number crunching.
No better way to learn a new language than commiting yourself to a problem and lea …
3
votes
Stripping non printable characters from a string in python
As far as I know, the most pythonic/efficient method would be:
import string
filtered_string = filter(lambda x: x in string.printable, myStr)
…
2
votes
Python module functions used in unexpected ways
I found struct.unpack to be a godsend for unpacking binary data formats after I learned of it!
…
1
vote
What is your favorite Python mocking library?
I've used pMock in the past, and didn't mind it, it had pretty decent docs too. However, Foord's Mock as mentioned above is also nice. …
0
votes
How do I use Django templates without the rest of Django?
Google AppEngine uses the Django templating engine, have you taken a look at how they do it? You could possibly just use that.
…
0
votes
How to bundle a python application including dependencies for windows?
py2exe will make windows executables with python bundled in.
…
24
votes
What did you use to teach yourself python?
The official tutorial is great, as is Dive into Python. However, I tought myself …
0
votes
Is there anyway to do HTTP PUT in python
Have you taken a look at put.py? I've used it in the past. You can also just hack up your own request with urllib.
…
3
votes
Using Python’s ftplib to get a directory listing, portably
Try ftp.nlst(dir).
however note that if the folder is empty, it might throw an error:
files = []
try:
files = ftp.nlst()
except ftplib.error_perm, resp:
if s …
0
votes
0
votes
How to express this Bash command in pure Python
import os, stat
os.stat("test")[stat.ST_MTIME]
Will give you the mtime. I suggest fixing those in walk_results[2], and then recursing, calling the function fo …
