0
votes
0answers
29 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 …
0
votes
3answers
110 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 …
0
votes
1answer
38 views
Check for Cygwin installation in 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
62 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 …
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
4answers
52 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 …
1
vote
3answers
51 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
40 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 …
1
vote
2answers
29 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 …
1
vote
1answer
23 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 …
1
vote
1answer
51 views
Pausing a process in Windows…
I'm making a nice little Python GUI frontend for ffmpeg on Windows (one that is specifically designed to convert videos to an iPhone-friendly format and automatically import it to iTunes and tag it), …
3
votes
2answers
63 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 = …
2
votes
6answers
118 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 …
0
votes
1answer
15 views
How to get the REMOTE_PORT (the client port) in Python running at IIS 7.5? REMOTE_PORT server variable cannot be found!
Hey. I'm coding a cgi in Python, running on an IIS 7.5 web server, on Windows. I would like to get the tcp port (usually was the server environment variable REMOTE_PORT) from which the client is …
0
votes
1answer
33 views
Python unable to acquire Oracle environment handle in Apache
I can run my django application using the developer server, but it does not run under apache. The error is:
Unable to acquire Oracle environment handle
Adding an ORACLE_HOME environment variable …
