6
votes
5answers
107 views
How to open a file with the standard application?
My application prints a PDF to a temporary file. How can I open that file with the default application in Python?
I need a solution for
Windows
Linux (Ubuntu with Xfce if there' …
2
votes
4answers
71 views
Limitations of TEMP directory in Windows?
I have an application written in Python that's writing large amounts of data to the %TEMP% folder. Oddly, every once and awhile, it dies, returning IOError: [Errno 28] No space le …
0
votes
1answer
24 views
Debugging the reading of output of a Windows console app using Python
This question is very similar to this one. I want to read output from a console app of mine. The app does not terminate, nor does it take input from stdin.
When I modify rix0rrr's …
0
votes
3answers
66 views
Editing Windows registry, from Python, Under Linux
Hi All,
I am looking for a Python API (or a C API as I am willing to bind) for editing Windows registries from XP to 7 from within a Linux system.
The Windows target will be a mo …
-1
votes
1answer
56 views
Running Python’s IDLE in windows
I messed up my IDLE shortcut. What is the way to start IDLE from the cmd.exe shell in Windows?
2
votes
1answer
59 views
Find a path in Windows relative to another
This problem should be a no-brainer, but I haven't yet been able to nail it.
I need a function that takes two parameters, each a file path, relative or absolute, and returns a fil …
2
votes
4answers
195 views
How to deploy Python to Windows users?
I'm soon to launch a beta app and this have the option to create custom integration scripts on Python.
The app will target Mac OS X and Windows, and my problem is with Windows whe …
0
votes
1answer
59 views
How to check which XP theme is enabled
I have a wxPython which works perfectly on window xp theme but on switching to 'classic theme' rich text cntrl comes up without border. I can enable border for classic theme but f …
0
votes
4answers
105 views
Python mkdir giving me wrong permissions
Hello all again :D
I'm (trying) to create a folder and create a file within it.
Whenever i create that folder (via Python), it creates a folder that gives me no permissions at al …
0
votes
2answers
39 views
Python, List running processes 64Bit Windows
Hey Guys,
I amm writing a little python script that will grab information from VMs of Windows that I am running.
At the moment I can list the processes on a 32bit XP machine with …
0
votes
2answers
56 views
How to use twistedweb with django on windows.
I'm looking for a super easy way to deploy django application on windows.
Basically my plan is to set up any python web server with my app on it and the boundle everything togethe …
0
votes
0answers
35 views
Watching sockets on Windows puts them in non-blocking mode
The following code does not work correctly on Windows:
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.setblocking(True)
sock.connect(address)
gobjec …
1
vote
1answer
47 views
Are there any problems with this symlink traversal code for Windows?
In my efforts to resolve Python issue 1578269, I've been working on trying to resolve the target of a symlink in a robust way. I started by using GetFinalPathNameByHandle as recomm …
3
votes
2answers
82 views
kill subprocess when python process is killed?
I am writing a python program that lauches a subprocess (using Popen).
I am reading stdout of the subprocess, doing some filtering, and writing to
stdout of main process.
When I k …
1
vote
1answer
59 views
Read a single registry key value on a remote machine using python 3
I am having a very tough time achieving this one seemingly very simple goal...
I have to gather the value of a single registry key on several machines for the sake of auditing whe …
