Tagged Questions

69
votes
13answers
33k views

How to setup setuptools for python 2.6 on Windows?

Is there any way to install setuptools for python 2.6 in Windows without having an .exe installer? There isn't one built at the moment, and the maintainer of setuptools has stated that it's probable ...
61
votes
29answers
90k views

Is there a good, free Python IDE for Windows?

Other than Notepad++, what text editor do you use to program in Windows? Is there a good, free Python IDE for Windows? I really need some good debugging abilities.
46
votes
11answers
32k views

MySQL for Python in Windows

I am finding it difficult to use MySQL with Python in my windows system. I am currently using Python 2.6. I have tried to compile MySQL-python-1.2.3b1 (which is supposed to work for Python 2.6 ?) ...
45
votes
4answers
15k views

How to install pip on windows?

The python software pip is a replacement for *easy_install*. But I will install pip using easy_install on Windows. Is there a better way? Edit: This also seems to work: Download the last easy ...
34
votes
7answers
14k views

Can I run a Python script as a service (in Windows)? How?

I am sketching the architecture for a set of programs that share various interrelated objects stored in a database. I want one of the programs to act as a service which provides a higher level ...
25
votes
1answer
341 views

A super strange bug of os.path.abspath

On My Python 2.6 ( 64bit, win7, ActivePython ), when i call: os.path.abspath('D:/PROJECTS/SuiShouBei/www/ssb/static/voices/en/mp3/con.mp3') It returns: '\\\\.\\con' I have no problem with other ...
24
votes
13answers
21k views

How to clear python interpreter console?

Like most Python developers, I typically keep a console window open with the Python interpreter running to test commands, dir() stuff, help() stuff, etc. Like any console, after a while the visible ...
21
votes
6answers
3k views

How do I correctly install dulwich to get hg-git working on Windows?

I'm trying to use the hg-git Mercurial extension on Windows (Windows 7 64-bit, to be specific). I have Mercurial and Git installed. I have Python 2.5 (32-bit) installed. I followed the instructions ...
21
votes
10answers
5k views

Open document with default application in Python

I need to be able to open a document using it's default application in Windows and Mac OS. Basically, I want to do the same thing that happens when you double click on the document icon in Explorer or ...
20
votes
6answers
2k views

How can I make an EXE file from a Python program?

I've used several modules to make EXEs for Python, but I'm not sure if I'm doing it right. How should I go about this, and why? Please base your answers on personal experience, and provide ...
19
votes
15answers
6k views

Best environment for Python on Windows? [closed]

So I've got plain python downloaded, so I can run .py files from the command line. Now I want to step it up, have a debugger, be able to call .net or other Windows things, etc... What's my next ...
18
votes
8answers
14k views

How do you get a directory listing sorted by creation date in python?

What is the best way to get a list of all files in a directory, sorted by date [created | modified], using python, on a windows machine?
17
votes
2answers
4k views

Drag and drop onto Python script in Windows Explorer

I would like to drag and drop my data file onto a Python script and have it process the file and generate output. The Python script accepts the name of the data file as a command-line parameter, but ...
16
votes
5answers
6k views

How to keep a Python script output window open?

I have just started with Python. When I execute a python script file on Windows, the output window appears but instantaneously goes away. I need it to stay there so I can analyze my output. How can I ...
15
votes
5answers
933 views

Can I install Python windows packages into virtualenvs?

Virtualenv is great: it lets me keep a number of distinct Python installations so that different projects' dependencies aren't all thrown together into a common pile. But if I want to install a ...
15
votes
3answers
4k views

Python: shutil.rmtree fails on Windows with 'Access is denied'

In Python, when running shutil.rmtree over a folder that contains a read-only file, the following exception is printed: File "C:\Python26\lib\shutil.py", line 216, in rmtree rmtree(fullname, ...
15
votes
3answers
4k views

Request UAC elevation from within a Python script?

I want my Python script to copy files on Vista. When I run it from a normal cmd.exe window, no errors are generated, yet the files are NOT copied. If I run cmd.exe "as administator" and then run my ...
14
votes
3answers
2k views

Windows is not passing command line arguments to Python programs executed from the shell

I'm having trouble getting command line arguments passed to Python programs if I try to execute them directly as executable commands from a Windows command shell. For example, if I have this program ...
14
votes
3answers
3k views

Subversion python bindings could not be loaded

This is a but of a part 2 in trying to convert an SVN repository to a Mercurial one command is: hg convert file://c:/svnrepository but, the output I get is: assuming destination svnrepository-hg ...
14
votes
8answers
12k views

Python: how do I install SciPy on 64 bit Windows?

How do I install SciPy on my system? Update 1: for the NumPy part (that SciPy depends on) there is actually an installer for 64 bit Windows: numpy-1.3.0.win-amd64-py2.6.msi (is direct download URL, ...
13
votes
1answer
159 views

Windows - running .py directly vs running python blah.py behaves differently

I have a python script that uses subprocess: import subprocess print "Running stuff" subprocess.check_call(["do_stuff.bat"]) print "Stuff run" If this was named blah.py, and I run (from a command ...
13
votes
6answers
459 views

right way to run some code with timeout in Python

I looked online and found some SO discussing and ActiveState recipes for running some code with a timeout. It looks there are some common approaches: Use thread that run the code, and join it with ...
13
votes
3answers
278 views

Python raw strings and trailing backslash

I ran across something once upon a time and wondered if it was a Python "bug" or at least a misfeature. I'm curious if anyone knows of any justifications for this behavior. I thought of it just now ...
13
votes
4answers
3k views

How does Dropbox use Python on Windows and OS X?

In Windows the Dropbox client uses python25.dll and the MS C runtime libraries (msvcp71.dll, etc). On OS X the Python code is compiled bytecode (pyc). My guess is they are using a common library they ...
13
votes
5answers
4k views

Getting name of windows computer running python script?

Basically, I have a couple Windows computers on my network that will be running a python script. A different set of configuration options should be used in the script depending on which computer is ...
13
votes
3answers
6k views

How to check if OS is Vista in Python?

How, in the simplest possible way, distinguish between Windows XP and Windows Vista, using Python and pywin32 or wxPython? Essentially, I need a function that called will return True iff current OS ...
13
votes
7answers
4k views

Cross-platform space remaining on volume using python

I need a way to determine the space remaining on a disk volume using python on linux, Windows and OS X. I'm currently parsing the output of the various system calls (df, dir) to accomplish this - is ...
12
votes
3answers
164 views

Python HTTPS against Azure service management API fails on Windows

I've recently extended a Python API for the Windows Azure storage APIs (PyAzure) to include support for the service management APIs. See https://github.com/bmb/pyazure. I'm using a ...
12
votes
8answers
883 views

Why don't scripting languages output Unicode to the Windows console?

The Windows console has been Unicode aware for at least a decade and perhaps as far back as Windows NT. However for some reason the major cross-platform scripting languages including Perl and Python ...
12
votes
5answers
657 views

How to implement pause (and more) functionality?

My apologies beforehand for the length of the question, I didn't want to leave anything out. UPDATE: I added an update all the way at the bottom (still looking for an answer) Some background ...
12
votes
10answers
963 views

Which scripting language is better for embedding in multi-threaded C/C++ application

Considering the following requirementes: Must be supported on Windows. Preferably works also on other platforms. Must support multi threading. By that I mean that the engine can work in parallel ...
12
votes
4answers
2k views

Is it safe to use sys.platform=='win32' check on 64-bit Python?

The usual check to differentiate between running Python-application on Windows and on other OSes (Linux typically) is to use conditional: if sys.platform == 'win32': ... But I wonder is it safe ...
12
votes
6answers
12k views

Controlling mouse with Python

How to control mouse in Python, i.e. move it to certain position and click. Thank you, Sasha
12
votes
7answers
6k views

Getting MAC Address

I need a cross platform method of determining the MAC address of a computer at run time. For windows the 'wmi' module can be used and the only method under Linux I could find was to run ifconfig and ...
11
votes
3answers
489 views

In Python, how can I detect whether the computer is on battery power?

I'm playing around with pygame, and one thing I'd like to do is reduce the number of frames per second when the computer is on battery power (to lower the CPU usage and extend battery life). How can ...
11
votes
4answers
884 views

Why can't I handle a KeyboardInterrupt in python?

I'm writing python 2.6.6 code on windows that looks like this: try: dostuff() except KeyboardInterrupt: print "Interrupted!" except: print "Some other exception?" finally: print ...
11
votes
5answers
2k views

Create a standalone windows exe which does not require pythonXX.dll

is there a way to create a standalone .exe from a python script. Executables generated with py2exe can run only with pythonXX.dll. I'd like to obtain a fully standalone .exe which does not require to ...
11
votes
6answers
697 views

Opening a handle to a device in Python on Windows

I'm trying to use the giveio.sys driver which requires a "file" to be opened before you can access protected memory. I'm looking at a C example from WinAVR/AVRdude that uses the syntax: #define ...
10
votes
1answer
240 views

What are the pitfalls and workarounds when using Python virtual environments on Windows?

Short Description The question is not meant to ask if using virtual environments are needed, but when using Ian Bicking's virtualenv what is the best way, if any, to manage environments in Windows. ...
10
votes
8answers
975 views

What is the most popular GUI library for Python in Windows?

What is the most popular GUI library for Python in Windows ?
10
votes
1answer
975 views

How do you get the exact path to “My Documents”?

In C++ it's not too hard to get the full pathname to the folder that the shell calls "My Documents" in Windows XP and Windows 7 and "Documents" in Vista; see ...
10
votes
2answers
2k views

Python nonblocking console input

I am (trying) to make a simple IRC client in python (as kind of a project while I learn the language). I have a loop that I use to receive and parse what the IRC server sends me, but if I use ...
10
votes
3answers
3k views

PyQt 4.7 - ImportError after installing on Windows

I've been trying to install PyQt 4.7 on Vista, but I am getting an ImportError when I try to do: from PyQt4 import QtCore, QtGui. ImportError: DLL load failed: The specified module could not be ...
10
votes
3answers
2k views

curses-like library for cross-platform console app in python

i'm looking into developing a console-app in python which should be able to run under windows as well as linux. for this, i'd really like to use a high-level console library like curses. however, as ...
10
votes
4answers
3k views

Common ways to connect to odbc from python on windows?

What library should I use to connect to odbc from python on windows? Is there a good alternative for pywin32 when it comes to odbc? What about pyodbc? http://code.google.com/p/pyodbc/ Any others? ...
10
votes
7answers
5k views

What's the best way to duplicate fork() in windows?

How do I implement some logic that will allow me to duplicate the functionality on windows that I have on linux with fork() using python? I'm specifically trying to execute a method on the SAPI Com ...
10
votes
5answers
3k views

Get a preview JPEG of a PDF on Windows?

I have a cross-platform (Python) application which needs to generate a JPEG preview of the first page of a PDF. On the Mac I am spawning sips. Is there something similarly simple I can do on ...
9
votes
3answers
1k views

Cross-compiling a Python script on Linux into a Windows executable

I have a Python script that I'd like to compile into a Windows executable. Now, py2exe works fine from Windows, but I'd like to be able to run this from Linux. I do have Windows on my development ...
9
votes
5answers
2k views

Installing PygraphViz on Windows, Python 2.6

Anybody out there has successfully installed PygraphViz on Windows? Since there is not an official release for Windows, I'm trying to build it myself, but it fails to compile. I'm not the first one ...
9
votes
10answers
1k views

I need a beginners guide to setting up windows for python development

I currently work with .NET exclusively and would like to have a go at python. To this end I need to set up a python development environment. I guide to this would be handy. I guess I would be doing ...

1 2 3 4 5 30