Tagged Questions

143
votes
16answers
48k 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 ...
33
votes
6answers
643 views

Get the Olson TZ name for the local timezone?

How do I get the Olson timezone name (such as Australia/Sydney) corresponding to the value given by C's localtime call? This is the value overridden via TZ, by symlinking /etc/localtime, or setting a ...
27
votes
6answers
2k views

Why is printing to stdout so slow? Can it be sped up?

I've always been amazed/frustrated with how long it takes to simply output to the terminal with a print statement. After some recent painfully slow logging I decided to look into it and was quite ...
23
votes
6answers
26k views

What is the simplest way to SSH using Python?

What is the absolute simplest way to SSH to a remote server from a local Python (3.0) script, supply a login/password, execute a command and print the output to the Python console? I would rather not ...
22
votes
7answers
9k views

How to get console window width in python

Is there a way in python to programmatically determine the width of the console? I mean the number of characters that fits in one line without wrapping, not the pixel width of the window. Edit ...
20
votes
13answers
6k views

cross platform IPC

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 ...
18
votes
3answers
7k 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 ...
18
votes
11answers
5k 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, ...
18
votes
9answers
4k 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 ...
18
votes
5answers
5k 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 ...
17
votes
1answer
2k views

Python multiprocessing: Permission denied

I'm getting an error when trying to execute python program that uses multiprocessing package: File "/usr/local/lib/python2.6/multiprocessing/__init__.py", line 178, in RLock return RLock() ...
16
votes
3answers
744 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, ...
16
votes
5answers
5k views

Python distutils - does anyone know how to use it?

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 only works ...
15
votes
6answers
2k 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 ...
14
votes
2answers
534 views

How do I start and stop a Linux program using the subprocess module in Python?

I’m writing a web app that uses Selenium to screen-scrape another website. This screen-scraping only happens once a day, so I’d rather not leave Selenium and Xvfb running all the time. I’m trying to ...
14
votes
8answers
1k views

A simple Python deployment problem - a whole world of pain

We have several Python 2.6 applications running on Linux. Some of them are Pylons web applications, others are simply long-running processes that we run from the command line using nohup. We're also ...
13
votes
3answers
1k views

Ubuntu System Tray in Python

How do I put a program in the system tray (I don't think it's called like that in Linux) in python TKINTER for UBUNTU 9.04.
13
votes
1answer
788 views

changing the process name of a python script

Is there a way to change the name of a process running a python script on Linux? When I do a ps, all I get are "python" process names.
13
votes
8answers
12k views

Take a screenshot via a python script. [Linux]

I want to take a screenshot via a python script and unobtrusively save it. I'm only interested in the Linux solution, and should support any X based environment.
13
votes
7answers
4k views

Cross-platform space remaining on volume using python

I need a way to determine the space remaining on a disk volume using python on linux, Windows and OS X. I'm currently parsing the output of the various system calls (df, dir) to accomplish this - is ...
12
votes
3answers
331 views

How can I call inlined machine code in Python on Linux?

I'm trying to call inlined machine code from pure Python code on Linux. To this end, I embed the code in a bytes literal code = b"\x55\x89\xe5\x5d\xc3" and then call mprotect() via ctypes to allow ...
12
votes
2answers
560 views

Proving the primality of strong probable primes

Using the probabilistic version of the Miller-Rabin test, I have generated a list of medium-large (200-300 digit) probable primes. But probable ain't good enough! I need to know these numbers are ...
12
votes
4answers
2k views

Python subprocess.Popen “OSError: [Errno 12] Cannot allocate memory”

Note: This question was originally asked here but the bounty time expired even though an acceptable answer was not actually found. I am re-asking this question including all details provided in the ...
12
votes
7answers
6k 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 ...
12
votes
32answers
5k views

Text Editor For Linux (Besides Vi)?

Let me preface this question by saying I use TextMate on Mac OSX for my text needs and I am in love with it. Anything comparable on the Linux platform? I'll mostly use it for coding python/ruby. ...
11
votes
2answers
2k views

Python: when to use pty.fork() versus os.fork()

I'm uncertain whether to use pty.fork() or os.fork() when spawning external background processes from my app. (Such as chess engines) I want the spawned processes to die if the parent is killed, as ...
10
votes
3answers
428 views

How to rewrite python script output in terminal?

I have a python script and I want to make it display a increasing number from 0 to 100% in the terminal, I know how to print the numbers on the terminal but how can I "rewrite" them so 0 turns into 1, ...
10
votes
7answers
9k views

How to make a python script run like a service or daemon in linux

I have written a python script that checks a certain e-mail address and passes new e-mails to an external program. How can I get this script to execute 24/7, such as turning it into daemon or service ...
10
votes
6answers
2k views

Force another program's standard output to be unbuffered using Python

A python script is controlling an external application on Linux, passing in input via a pipe to the external applications stdin, and reading output via a pipe from the external applications stdout. ...
10
votes
3answers
2k views

curses-like library for cross-platform console app in python

i'm looking into developing a console-app in python which should be able to run under windows as well as linux. for this, i'd really like to use a high-level console library like curses. however, as ...
10
votes
3answers
2k views

How do I get monotonic time durations in python?

I want to log how long something takes in real walltime. Currently I'm doing this: startTime = time.time() someSQLOrSomething() print "That took %.3f seconds" % (time.time() - startTime) But that ...
10
votes
6answers
2k 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 ...
10
votes
4answers
4k 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 ...
10
votes
2answers
2k views

How do I find userid by login (Python under *NIX)

I need to set my process to run under 'nobody', I've found os.setuid(), but how do I find uid if I have login? I've found out that uids are in /etc/passwd, but maybe there is a more pythonic way than ...
9
votes
2answers
277 views

Linux blocking signals to Python init

This is a follow up to my other post Installing signal handler with Python. In short, Linux blocks all signals to PID 1 (including SIGKILL) unless Init has installed a signal handler for a particular ...
9
votes
4answers
1k views

What is the correct way to make my PyQt application quit when killed from the console (Ctrl-C)?

What is the correct way to make my PyQt application quit when killed from the console (Ctrl-C)? Currently (I have done nothing special to handle unix signals), my PyQt application ignores SIGINT ...
9
votes
3answers
874 views

pySerial works fine in Python interpreter, but not standalone

Good morning! Recently I bought an Arduino board to make sort of "light control" in my room. Here is the code of the firmware I wrote: int control = 0; int pin = 0; void setup() { ...
9
votes
3answers
1k views

Cross-compiling a Python script on Linux into a Windows executable

I have a Python script that I'd like to compile into a Windows executable. Now, py2exe works fine from Windows, but I'd like to be able to run this from Linux. I do have Windows on my development ...
9
votes
6answers
6k views

Compare two images the python/linux way

Trying to solve a problem of preventing duplicate images to be uploaded. I have two JPGs. Looking at them I can see that they are in fact identical. But for some reason they have different file size ...
9
votes
5answers
3k 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
11k views

How do you check in Linux with Python if a process is still running?

The only nice way I've found is: import sys import os try: os.kill(int(sys.argv[1]), 0) print "Running" except: print "Not running" (Source) But is this reliable? Does it ...
8
votes
3answers
271 views

Why won't LD_PRELOAD work with Python?

Using function interposition for open() with Python doesn't seem to work after the first few calls. I suspect Python is doing some kind of initialization, or something is temporarily bypassing my ...
8
votes
8answers
543 views

Is there an advantage to using Bash over Perl or Python? [closed]

Hey I've been using Linux for a while and thought it was time to finally dive into shell scripting. The problem is I've failed to find any significant advantage of using Bash over something like Perl ...
8
votes
2answers
481 views

Will python SystemRandom / os.urandom always have enough entropy for good crypto

I have a password generator: import random, string def gen_pass(): foo = random.SystemRandom() length = 64 chars = string.letters + string.digits return ''.join(foo.choice(chars) for ...
8
votes
2answers
2k views

USB devices UDev and D-BUS

I am trying to get a list of currently plugged in USB devices in Ubuntu 10.10 and monitor changes that happen, like devices being plugged in or out using UDev and D-BUS. I'm fairly new to programming ...
8
votes
2answers
611 views

How to dynamically interpose C functions from Python on Linux (without LD_PRELOAD)?

How do I, at run-time (no LD_PRELOAD), intercept/hook a C function like fopen() on Linux, a la Detours for Windows? I'd like to do this from Python (hence, I'm assuming that the program is already ...
8
votes
3answers
1k views

Simulate Mouse Clicks on Python

I'm currently in the process of making my Nintendo Wiimote (Kinda sad actually) to work with my computer as a mouse. I've managed to make the nunchuk's stick control actually move the mouse up and ...
8
votes
8answers
1k views

Should I learn Python or Java to develop GUI apps for Ubuntu?

I'm a long-time Mac user making the switch to Ubuntu. I have programming experience in Objective-C and REALbasic. I want to develop native looking applications that will look pretty in the Gnome ...
8
votes
6answers
2k views

How to find the real user home directory using python?

I see that if we change the HOME(linux) or USERPROFILE(windows) environmental variable and run a python script, it returns the new value as the user home when I tried, os.environ['HOME'] os.exp Is ...
8
votes
9answers
2k views

Sandboxing in Linux

I want to create a Web app which would allow the user to upload some C code, and see the results of its execution (the code would be compiled on the server). The users are untrusted, which obviously ...

1 2 3 4 5 26