
Stumbled across the first bit of Python I ever wrote
Matt Molyneaux at 2016-03-10T21:30:41Z
I wrote this script after our ISP complained we were using more than their "fair use policy" allowed. They sent me to their website where they had a bandwidth counter, but it didn't work because of the way we were connected (the ISP piggy-backed on another to serve our area)
So I wrote my own script to log into the router and work out how much we were really using.
From my "scripts" bzr (yes, remember that?) repo:
------------------------------------------------------------
revno: 32
committer: Matt Molyneaux <[email protected]>
branch nick: scripts
timestamp: Fri 2010-10-01 01:20:35 +0100
message:
added bandwidth.py
------------------------------------------------------------
It was also the first time I'd used BeautifulSoup and CSV. Still works too!
It takes a snapshot of bandwidth up and down. It then works out how it should add those numbers together (if the connection resets, the counters on the router get reset) and plots them on a nice bar chart.
The earliest month of data I have is from July 2011 (don't know what happened to the original data), in which the house used 22GB in total. Last month we used ~3 times as much :P
bthall , Christopher Allan Webber , Jonas (kabniel) like this.

Stephen Michael Kellat at 2016-03-11T00:04:45Z
Jason Self , [email protected] like this.

For a second there, I read the title as "the first of Python 1 ever..." xD
I guess Python 1 existed at some point!
JanKusanagi at 2016-03-11T00:20:17Z
Matt Molyneaux likes this.