3
votes
2answers
68 views
How properly bundle&install python to windows users
I need to redistribute Python 2.6 for my users.
Currently, I execute the silent instalation for the msi installer from http://www.python.org/download/, but I have some problems, like if other version …
0
votes
2answers
59 views
Displaying graphics on top of another full screen application; hardware overlay?
On Windows (Vista32), I want to display some simple graphics on top of a fullscreen flash window (an overlay of useful information while using the flash application). What's the fastest way to …
1
vote
3answers
124 views
How to execute python scripts in windows?
I have a simple script blah.py:
import sys
print sys.argv[1]
If I execute my script by:
python c:/..../blah.py argument
It prints argument but if I execute script by:
blah.py argument
error …
1
vote
4answers
64 views
Installing Fabric On Windows (Error No Module Called Readline)
I'm trying to use the Fabric 0.1.1 deploy tool (http://docs.fabfile.org/) on Windows and we're running into an issue with the readline module. I've been through various threads but can't seem to …
0
votes
1answer
48 views
Get Cygwin installation path in a Python script
I'm writing a cross-platform python script that needs to know if and where Cygwin is installed if the platform is NT. Right now I'm just using a naive check for the existence of the default install …
1
vote
3answers
67 views
Multiprocessing launching too many instances of Python VM
I am writing some multiprocessing code (Python 2.6.4, WinXP) that spawns processes to run background tasks. In playing around with some trivial examples, I am running into an issue where my code just …
1
vote
3answers
56 views
double quote escaping in os.system on windows
Hi, I want to escape '"' and all other wild chars in program name and arguments, so I try to double quote them. and I can do this in cmd.exe
C:\bay\test\go>"test.py" "a" "b" "c"
hello
…
0
votes
1answer
45 views
Unicode filenames on Windows with Python & subprocess.Popen()
Why does the following occur:
>>> u'\u0308'.encode('mbcs') #UMLAUT
'\xa8'
>>> u'\u041A'.encode('mbcs') #CYRILLIC CAPITAL LETTER KA
'?'
>>>
I have a Python application …
0
votes
1answer
14 views
Make a tkinter window appear over all other windows
#!/usr/bin/env python
# Display window with toDisplayText and timeOut of the window.
from Tkinter import *
def showNotification(notificationTimeout, textToDisplay):
## Create main window
…
1
vote
2answers
36 views
Install libxml2 and associated python bindings - Windows
Hello,
I am attempting to install libxml2 so that I can setup the python bindings and eventually use lxml.
However I am unable to work out here on earth I am supposed to be unzipping the files.
I …
4
votes
4answers
206 views
Python Performance on Windows
Is Python generally slower on Windows vs. a *nix machine? Python seems to blaze on my Mac OS X machine whereas it seems to run slower on my Window's Vista machine. The machines are similar in …
2
votes
6answers
120 views
Should I take a Python CS class using Windows or Mac?
Hi,
I'll be taking a Python-based computer science class next semester using my MacBook Pro. It will be centered around a custom-designed package for this class. The problem is that this package is …
3
votes
2answers
64 views
Python 2.6: reading data from a Windows Console application. (os.system?)
I have a Windows console application that returns some text. I want to read that text in a Python script. I have tried reading it by using os.system, but it is not working properly.
import os
foo = …
1
vote
1answer
30 views
Py2exe: Are manifest files and w9xpopen.exe required when compiling a web server without GUI interface?
I'm using Py2exe to compile a CherryPy (3.1) server using Python 2.6 (32-bit) on Windows 7 Pro (64-bit).
This server will run without a GUI.
Questions:
Do I need to be concerned about adding a …
3
votes
3answers
66 views
How to run installed python script?
I used distutils to install my python package, with this setup.py :
import distutils.core
args = {
'name' : 'plugh',
'version' : '1.0',
'scripts' : [ …
