3
votes
3answers
168 views
Which Python client library should I use for CouchdB?
I'm starting to experiment with CouchDB because it looks like the perfect solution for certain problems we have. Given that all work will be on a brand new project with no legacy dependencies, whi …
2
votes
What’s the easiest way to read a FoxPro DBF file from Python?
If you're still checking this, I have a GPL FoxPro-to-PostgreSQL converter at http://honeypot.net/project/pgdbf . We use it to routi …
2
votes
Stripping non printable characters from a string in python
This function uses list comprehensions and str.join, so it runs in linear time instead of O(n^2):
from curses.ascii import isprint
def printable(input):
return ''.join([char fo …
6
votes
I know Perl 5. What are the advantages of learning Perl 6, rather than moving to Python?
In my opinion, Python's syntax is much cleaner, simpler, and consistent. You can define nested data structures the same everywhere, whether you plan to pass them to a function (or return them from …
0
votes
How to list only top level directories in Python?
Like so?
>>> [path for path in os.listdir(os.getcwd()) if os.path.isdir(path)]
…
0
votes
Most pythonic way of counting matching elements in something iterable
Alt 3, for the reason that it doesn't use memory proportional to the number of "hits". Given a pathological case like xrange(one_trillion), many of the other offered solutions would fail badly. …
2
votes
How to handle a broken pipe (SIGPIPE) in python?
My answer is very close to S.Lott's, except I'd be even more particular:
try:
# do something
except IOError, e:
# ooops, check the attributes of e to see precisely what happ …
0
votes
How do I make the business case for Python?
Python lets you migrate your code to cheap Linux servers should you want to, or lets your GUI applications run unchanged on OS X.
If Microsoft ever abandons .NET, it's dead. Think that won …
0
votes
What’s the best way to store simple user settings in Python?
The built-in sqlite3 module would probably be far simpler than most alternatives, and gets you ready to update t …
0
votes
What’s the best SOAP client library for Python, and where is the documentation for it?
We'd used SOAPpy from Python Web Services, but it seems that ZSI (same source) is replacing it.
…
3
votes
Howto do python command-line autocompletion but NOT only at the beginning of a string
I'm not sure I understand the problem. You could use readline.clear_history and readline.add_history to set up the completable strings you want, then control-r to search backword in the history (j …
1
vote
Are there any IDE’s that support Python 3 syntax?
Emacs + python.el continues to be better than anything else I've tried.
…
1
vote
Binary Search in Python
Using a dict wouldn't like double your memory usage unless the objects you're storing are really tiny, since the values are only pointers to the actual objects:
>>> a = 'fo …
0
votes
Splitting strings in python
Here's a more procedural approach:
#!/usr/bin/env python
a = 'this is [bracket test] "and quotes test "'
words = a.split()
wordlist = []
while True:
try:
word = words …
2
votes
Difference between defining a member in __init__ to defining it in the class body in python?
Others have explained the technical differences. I'll try to explain why you might want to use class variables.
If you're only instantiating the class once, then class variables effectivel …
