0
votes
9answers
119 views
python or bash - adding “ at beginning of line and “, at end of line
I have text file with something like
first line
line nr 2
line three
etc
And i want to generate
"first line",
"line nr 2",
"line three",
I wonder how to do this in python or …
6
votes
5answers
108 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' …
0
votes
1answer
27 views
Zip File with PPMD Compression, Programmatically Unzip
I have a Linux Python script that needs to unzip some zip files. I was using the zipfile module. On a few of these files I'm getting:
BadZipfile: Unsupported compression method …
3
votes
3answers
39 views
GTK+ Startup Notification Icon
In Gnome, whenever an application is started, the mouse cursor changes from normal to an activity indicator (a spinning wheel type thing on Ubuntu). Is there any way to inform Gnom …
0
votes
3answers
67 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 …
-5
votes
1answer
122 views
4
votes
1answer
60 views
siginterrupt() only works for the first signal? (Python)
For some reason, siginterrupt() only seems to set the behaviour for the first signal received.
In this example program, the first SIGQUIT appears to do nothing, but the second sig …
0
votes
0answers
61 views
In CentOS, how do I update Pyhon 2.4.3 to 2.5? [closed]
I want python 2.5, not 3.0.
How to do yum update for this?
0
votes
1answer
43 views
PYTHONPATH environment variable…how do I make every subdirectory afterwards?
I currently do this:
PYTHONPATH=/home/$USER:/home/$USER/respository:/home/$USER/repository/python-stuff
How can I make it so that the PYTHONPATH can include everything subdirect …
1
vote
0answers
112 views
How to copy /etc/hosts to all my machines? [closed]
import os, sys, time
servers = ['dev','admin','db1']
for s in servers:
cmd = 'scp /etc/hosts regular_user@%s:/etc/hosts' % s
print cmd
os.system(cmd)
I have written …
3
votes
2answers
84 views
How can I grab the color of a pixel on my desktop? (Linux)
I want to grab the color of a pixel with known coordinates on my Linux desktop.
Until now, I've used "import -window SomeWindow -crop 1x1+X+Y /tmp/grab.jpg"
then extracting the pi …
0
votes
1answer
38 views
I want to create this environment variable for everyone, but it does not load during startup? (linux)
I put this at the top, using "sudo vi /etc/profile":
PYTHONPATH=/home/myuser:/home/myotheruser
When I use putty and log in under my username, the python path does not work!
I ty …
1
vote
2answers
46 views
Python pysqlite2 dbapi2 problem
I'm having an issue with the line:
from pysqlite2 import dbapi2 as sqlite
The error i'm getting is:
ImportError: /usr/lib/python2.4/site-packages/pysqlite2/_sqlite.so: undefine …
1
vote
5answers
122 views
Restrict access to images on my website except through my own htmls
Hi,
On my website I store user pictures in a simple manner such as:
"image/user_1.jpg".
I don't want visitors to be able to view images on my server just by trying user_ids. (Ex: …
0
votes
2answers
88 views
Twisted: source IP address for outbound connections
I'm in the process of implementing a service -- written in Python with the Twisted framework, running on Debian GNU/Linux -- that checks the availability of SIP servers. For this …
