Search Results

1
vote

What defines “pythonian” or “pythonic”?

The answers here are good, but it should also be noted that, since the definition is rather elastic, plenty of people will use "pythonic" to mean "the style I prefer". More heat than light …
5
votes

Can I document Python code with doxygen (and does it make sense)?

Sphinx is mainly a tool for formatting docs written independently from the source code, as I understand it. For generating API docs from Python docstrings, the leading tools are …
5
votes

Best way to open a socket in Python

For developing portable network programs of any sort in Python, Twisted is quite useful. One of its benefits is providing a convenient layer ab …
-3
votes

How to do relative imports in Python?

Don't do relative imports. They'll only make your code more fragile. If you do an absolute import as Matej suggested, you'll be less vulnerable to changes in sys.path and changes in file locations. …
3
votes

How to check for memory leaks in Guile extension modules?

You've got a couple options. One is to write a supressions file for valgrind that turns off reporting of stuff that you're not working on. Python has such a file, for example: …
2
votes

Good Python Network Programing Resource

I wrote a SIP proxy and other VoIP tools using Twisted: http://twistedmatrix.com It's an excellent networking engine for any sort of task. …
6
votes

Unittest causing sys.exit()

Don't try to run unittest.main() from IDLE. It's trying to access sys.argv, and it's getting the args that IDLE was started with. Either run your tests in a different way …
5
votes

Split a string by spaces — preserving quoted substrings — in Python

Have a look at the shlex module, particularly shlex.split. >>> import shlex >>> shlex.split('This i …
5
votes

Search for host with MAC-address using Python

You need ARP. Python's standard library doesn't include any code for that, so you either need to call an extern …
9
votes

In Python, what is the fastest algorithm for removing duplicates from a list so that all elements are unique *while preserving order*?

What's going to be fastest depends on what percentage of your list is duplicates. If it's nearly all duplicates, with few unique items, creating a new list will probably be faster. If it's mostly u …
3
votes

what is the best/easiest to use encryption library in python

See Google's Keyczar project, which provides a nice set of interfaces to PyCrypto's functionality. …
5
votes

How do I merge a 2D array in Python into one string with List Comprehension?

There's a couple choices. First, you can just create a new list and add the contents of each list to it: li2 = [] for sublist in li: li2.extend(sublist) Altern …