Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Running Python in background on OS X

Is there any way to keep my Python script (with an endless 'while' loop) running in the background on OS X? Also, for the same purpose, is there any way to have "autorun" python script on a USB drive?

like image 953
tkbx Avatar asked Mar 01 '12 19:03

tkbx


People also ask

How do I run python in the background Mac?

The easiest way of running a python script to run in the background is to use cronjob feature (in macOS and Linux). In windows, we can use Windows Task Scheduler. You can then give the path of your python script file to run at a specific time by giving the time particulars.

How do I run a python function in the background?

We can configure a new daemon thread to execute a custom function that will perform a long-running task, such as monitor a resource or data. For example we might define a new function named background_task(). Then, we can configure a new threading. Thread instance to execute this function via the “target” argument.

Can you run python IDLE on Mac?

Python IDLE comes included in Python installations on Windows and Mac. If you're a Linux user, then you should be able to find and download Python IDLE using your package manager. Once you've installed it, you can then use Python IDLE as an interactive interpreter or as a file editor.


1 Answers

If you want to have the script running as a daemon process which starts automatically, you can use launchctl and a plist file.

For example, Bob has a simple python script which writes the word 'foo' to a file every second in his home directory:

#!/usr/bin/env python
import os
import time

while True:
  os.system('echo " foo" >> /Users/bob/foostore.txt')
  time.sleep(1)

To have it run as a daemon process, create a plist file, ~/Library/LaunchAgents/com.bobbob.osx.test.plist, with the contents:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC -//Apple Computer//DTD PLIST 1.0//EN http://www.apple.com/DTDs/PropertyList-1.0.dtd >
<plist version="1.0">
  <dict>
    <key>Label</key>
    <string>com.bobbob.osx.test</string>
    <key>Program</key>
    <string>/Users/bob/pyfoo.py</string>
    <key>KeepAlive</key>
    <true/>
  </dict>
</plist>

Then use launchctl to load the plist from a terminal:

launchctl load ~/Library/LaunchAgents/com.bobbob.osx.test.plist

This will load that script and immediately run the program in the <string> element beneath <key>Program</key>. You can also specify arguments for the program using a <ProgramArguments> node with an array of <string> elements. For more information see the launchd.plist man page

If you want to remove the script, you can use the unload command of launchctl:

launchctl unload ~/Library/LaunchAgents/com.bobbob.osx.test.plist

The Label used in the script can be anything, but it should be unique on your system, so Apple generally uses a reversed domain name.

As for autorunning a script, I don't think there's any way to do that.

like image 111
mnem Avatar answered Sep 28 '22 02:09

mnem