From 64522a267dccb2f0dc71d186b084c8c462a28f65 Mon Sep 17 00:00:00 2001 From: michael Date: Sat, 28 Feb 2009 06:12:18 +0000 Subject: added some contrib files from Nicu Pavel git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@986 3ae390bd-cb1e-0410-b409-cd5a39f66f1f --- contrib/picoLCD/mrtg.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 contrib/picoLCD/mrtg.py (limited to 'contrib/picoLCD/mrtg.py') diff --git a/contrib/picoLCD/mrtg.py b/contrib/picoLCD/mrtg.py new file mode 100644 index 0000000..e501ca9 --- /dev/null +++ b/contrib/picoLCD/mrtg.py @@ -0,0 +1,21 @@ +import urllib +import shutil + +download_path = "/tmp/" + +def saveimage(imageurl): + filename = imageurl.split('/')[-1] + tmpname = filename + ".tmp" + try: + urllib.urlretrieve(imageurl, download_path + tmpname) + except IOError: + return "Error downloading file" + else: + shutil.move(download_path + tmpname, download_path + filename) + return download_path + filename + + +#saveimage("http://www.switch.ch/network/operation/statistics/geant2-day.png") +#saveimage("http://192.168.12.113/mrtg/127.0.0.1_2-day.png") + + -- cgit v1.2.3