16
votes
11answers
5k views
Print in terminal with colors using python ?
I want to print in the terminal with colors ? how can I do that in python ?
Another questions what is the best character that when it is printed it look like a box [brick] ?
I want to print colored …
12
votes
11answers
1k views
Ensuring a single instance of an application in Linux
I'm working on a GUI application in WxPython, and I am not sure how I can ensure that only one copy of my application is running at any given time on the machine. Due to the nature of the application, …
12
votes
5answers
1k views
How to make a python, command-line program autocomplete arbitrary things NOT interpreter
I am aware of how to setup autocompletion of python objects in the python interpreter (on unix).
Google shows many hits for explanations on how to do this.
Unfortunately, there are so many …
10
votes
5answers
560 views
Unit Testing File Modifications
A common task in programs I've been working on lately is modifying a text file in some way. (Hey, I'm on Linux. Everything's a file. And I do large-scale system admin.)
But the file the code modifies …
9
votes
4answers
1k views
Run a linux system command as a superuser, using a python script
I have got postfix installed on my machine and I am updating virtual_alias on the fly programmatically(using python)(on some action). Once I update the entry in the /etc/postfix/virtual_alias, I am …
9
votes
4answers
912 views
How to add file extensions based on file type on Linux/Unix?
This is a question regarding Unix shell scripting (any shell), but any other "standard" scripting language solution would also be appreciated:
I have a directory full of files where the filenames are …
9
votes
7answers
1k views
Standalone Python applications in Linux
How can I distribute a standalone Python application in Linux?
I think I can take for granted the presence of a recent Python interpreter in any modern distribution. The problem is dealing with those …
9
votes
11answers
1k views
cross platform IPC
Hi,
I'm looking for suggestions on possible IPC mechanisms that are:
cross platform (WIN32 and Linux at least)
Simple to implement in C++ as well as the most common scripting languages (perl, ruby …
7
votes
3answers
214 views
python readline license horror. How to really be free ?
I love the GPL as much as the next guy, but it should help to share code, not prevent to do it.
I am currently in a situation where I have to provide a python free from GNU readline, which is GPL, …
6
votes
5answers
118 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's nothing more …
6
votes
5answers
537 views
Access to errno from Python?
I am stuck with a fairly complex Python module that does not return useful error codes (it actually fails disturbingly silently). However, the underlying C library it calls sets errno.
Normally errno …
6
votes
3answers
2k views
How can I listen for ‘usb device inserted’ events in Linux, in Python?
I'd like to write a Python script for Amarok in Linux to automatically copy the stackoverflow podcast to my player. When I plug in the player, it would mount the drive, copy any pending podcasts, and …
6
votes
3answers
244 views
How can I ask for root password but perform the action at a later time?
I have a python script that I would like to add a "Shutdown when done" feature to.
I know I can use gksudo (when the user clicks on "shutdown when done") to ask the user for root privileges but how …
6
votes
6answers
1k views
Getting MAC Address
I need a cross platform method of determining the MAC address of a computer at run time. For windows the 'wmi' module can be used and the only method under Linux I could find was to run ifconfig and …
6
votes
8answers
1k views
Python distutils - does anyone know how to use it?
Hello,
I wrote a quick program in python to add a gtk GUI to a cli program. I was wondering how I can create an installer using distutils. Since it's just a GUI frontend for a command line app it …
