0
votes
1answer
23 views
No output from QProcess
Why does the following print a blank line instead of 'Hello QProcess'?
import sys
from PyQt4 import QtGui, QtCore
proc = QtCore.QProcess()
proc.start("echo 'Hello QProcess'")
proc.waitForFinished()
…
4
votes
4answers
168 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 …
0
votes
2answers
84 views
Hook into and log “everything” in the windows message queue
Has anyone got a working code example of how to connect to the windows message queue(post/sendMessage) and log all messages there? Preferably in Python.
I'm interrested in this to easier be able to …
1
vote
3answers
48 views
python app to exe not working on WinSRV2003
Hi,
I created little app for sending out emails when something is wrong with server. Used py2exe to create exe file. While it is works absolutely fine on Win7 i have problems with running it on …
1
vote
1answer
43 views
Using the Python shell in Vi mode on WIndows
I know that you can use the Python shell in Vi mode on Unix-like operating systems. For example, I have this line in my ~/.inputrc:
set editing-mode vi
This lets me use Vi-style editing inside the …
1
vote
2answers
22 views
Compile IP2Location Python extension for Windows 7
I want to compile / install the IP2Location Python extension found here:
www.ip2location.com/python.aspx
I tried following the instructions at these sites:
…
0
votes
2answers
29 views
Python check windows server version
I need to log the current windows version in my python application for reporting purposes, but the built in functions I've found so far cant tell the difference between Windows client and server …
0
votes
1answer
51 views
how to create windows 7 jump lists via python/pyqt?
i have a pyqt project which i'm interested in using to play around with the new windows 7 jump list feature. after a bunch of searching, i have not found any specific examples of anyone creating …
0
votes
2answers
31 views
Library getting information from any active windows into screen
Hi all,
I am looking for a library to get some information from the active windows. By "information" I mean the absolute/relative position of the window, the size, the list of all the windows.
There …
1
vote
2answers
48 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' : [ …
0
votes
0answers
40 views
writing the command window to the windows while running an exe in python
I have an executable where I am running from python using subprocess.popen
When I am running the executable from the command window, the program writes some info and dates on the window as the program …
3
votes
8answers
162 views
How to safely write to a file?
Imagine you have a library for working with some sort of XML file or configuration file. The library reads the whole file into memory and provides methods for editing the content. When you are done …
0
votes
4answers
56 views
How can I use SQLITE with DJANGO on WIndows 7
I am following the tutorial on the DJango site, which I previsouly did using Windows XP and everything went fine, but on Windows 7 I get the following error:
sqlite3.OperationalError: unable to open …
0
votes
2answers
29 views
communicate with a process in utf-8 on a cp1252 consoless
I need to control a program by sending commands in utf-8 encoding to its standard input. For this I run the program using subprocess.Popen():
proc = Popen("myexecutable.exe", shell=True, stdin=PIPE, …
0
votes
2answers
44 views
How to print out encoded Asian characters(gb2312) on command prompt?
Hi all:
I am working for a company that uses the Python programming language version 3.1 as a causal work now.
And I've encountered this problem: how to print out some encoded Asian …
