Python is an interpreted, general-purpose high-level programming language whose design philosophy emphasizes code readability.
1
vote
2answers
565 views
using cron to run script
Hey guys, im trying to run a script using cron, im using a crontab created by the user ashtanga, in the crontab i have
*/5 * * * * /home/custom-django-projects/SiteMonitor/sender.py
in top of the ...
8
votes
2answers
634 views
View Script Over SSH?
A friend, using a remote machine, SSHed to my machine and ran the following python script:
while (1):
....print "hello world"
(this script simply prints 'hello world' continuously).
I am now ...
1
vote
0answers
569 views
Which scripting language is most widespread in system administration tasks? [closed]
I am migrating to Linux and have some experience with the Mac OS X command line/bash. I'd like to automate system admin tasks via scripting, but I am unsure as which language is the most used in the ...
0
votes
0answers
80 views
Python MySQLdb compatible with which versions of Python? [closed]
I was reading on MySQLdb Python page and cannot seem to find any version information.
Currently I am developing with this MySQLdb module using python 2.5, 2.6 but was wondering if it is compatible ...