Search Results

7
votes

Is there an IDE that provides code completion for Python

IPython is an almost complete interactive python shell with an integrated help system and tab completion for every live object and class. …
3
votes

Beginner looking for beautiful and instructional Python code

The Python project itself maintains a nice list of beginner's guides. …
2
votes

Is Python only for building backends when you need to write SQL by hand?

Your question is very strange. First, Django doesn't force you to use its SQL abstraction. Each part of Django can be use idenpendently of the others. You can use Django together with any o …
1
vote

Parallel SSH in Python

You can simply use subprocess.Popen for that purpose, without any problems. However, you might want to simply install cronjobs on the remote machines. :-) …
6
votes

Can I use C++ features while extending Python?

It doesn't matter whether your implementation of the hook functions is implemented in C or in C++. In fact, I've already seen some Python extensions which make active use of C++ templates and even …
0
votes

Read content of RAR file into memory in Python

The free 7zip library is also able to handle RAR files. …