1
vote
What’s the easiest non-memory intensive way to output XML from Python?
I think you'll find XMLGenerator from xml.sax.saxutils is the closest thing to what you want.
import time
from xml.sax.saxutils import XMLGenerator
from xml.sax.xmlreader import Attribut …
1
vote
How to convert a list of longs into a comma separated string in python
Just for the sake of it, you can also use string formatting:
",".join("%s" % i for i in list_of_things)
…
6
votes
Accept Cookies in Python
Try this:
import urllib2
import cookielib
jar = cookielib.FileCookieJar("cookies")
opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(jar))
print "Currently have %d cookie …
7
votes
Python 2.x gotcha’s and landmines
There was a lot of discussion on hidden language features a while back: hidden-features-of-python. Where some pitfa …
2
votes
Searching a list of objects in Python
You can use in to look for an item in a collection, and a list comprehension to extract the field you are interested in. This (works for lists, sets, tuples, and anything that defines …
1
vote
Where can I find good python Twisted framework documentation, blog entries, articles, etc?
There's an overview here: The Twisted Network Framework.
Bruce Eckel wrote a nice article that point …
2
votes
Learning Python
For the webhost, take a look at Webfaction. You get a shell accout, and Postgres (or MySQL), and Django are available as one-click installs. …
0
votes
what next after ‘dive into python’
Others have said it but I'll repeat: work on something you are interested in or it won't be fun.
If you do decide that a crawler would be fun, take a look at …
5
votes
Copy constructor in python
I think you want the copy module
import copy
x = copy.copy(y) # make a shallow copy of y
x = copy.deepc …
6
votes
Python : Assert that variable is instance method?
inspect.ismethod is what you want to find out if you defiantly have a method, rather than just …
