Search Results

17
votes

how to use xpath in python

libxml2 has a number of advantages: Compliance to the spec …
13
votes

What is the most efficient graph data structure in Python?

I would strongly advocate you look at NetworkX. It's a battle-tested war horse and the first tool most 'research' types reach for when th …
3
votes

Vim extension (via Python)?

Checkout this excellent presentation on the topic: Python and vim: Two great tastes that go great t …
5
votes

Modern, high performance bloom filter in Python?

I recently went down this path as well; though it sounds like my application was slightly different. I was interested in approximating set operations on a large number of strings. You do m …
4
votes

Ping a site in Python?

You may find Noah Gift's presentation Creating Agile Comman …
3
votes

Python coding standards/best practices

To add to bhadra's list of idiomatic g …
3
votes

Any python Support Vector Machine library around that allows online learning?

LibSVM includes a python wrapper that works via SWIG. Example svm-test.py from their distribution: #!/ …