var fDesc=new Array(); fDesc[0] = "A small tool written in Python with the PyQt toolkit that scrapes the HTML usage page and extracts the relevent usage information. This information is presented with a nice progress bar to convey the current quota usage.
One of the most important features of GetUsage is the ability to show a breakdown of internet usage on a per day basis through the use of a graph.

GetUsage also hooks into the Notify-OSD notifications API under Ubuntu Linux to provide regular updates as usage statistics change. If Notify-OSD is not available, the platform independent Qt notifications API is used instead.


Main Features:

- Written in Python using PyQt
- Multiplatform. Functions on Linux and Windows
- Presents usage on a daily basis through the use of a graph
- Notifications through Ubuntu's Notify-OSD if available
- Refreshes usage information according to the user's preferences"; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }