A tiny Dashing Ruby app to scrape Koodo Mobile's prepaid billing site, record information over time, and display statistics and information about your account. Super rough, lightweight, and brittle. Currently only fetches data about usage - how many minutes and how many megabytes you have left on your mobile "Boosters" - and transactions.
Runs well (and for free) on Heroku:
##Local installation
git clone https://github.com/psobot/koodo-prepaid-dashboard.git
cd koodo-prepaid-dashboard
bundle install
To run the server locally:
dashing start
To fetch a single data point from Koodo:
bundle exec scripts/scrape.rb
##Configuration
Important variables - like the username and password you use to log into Koodo's prepaid billing dashboard - need to be stored somewhere. What better place than in environment variables?
-
KOODO_USERNAME
stores the user name (i.e. email address) used to log into your Koodo prepaid account. -
KOODO_PASSWORD
stores the password you use to log into your Koodo prepaid account. (super secure)
##Heroku Setup The one-click "Deploy to Heroku" button above should do almost everying required to set this app up on Heroku, but there are still a couple steps that need doing.
- Log into the Heroku Scheduler Dashboard and
add a single recurring task that calls
bundle exec scripts/scrape.rb
every hour. (This task shouldn't take longer than 30 seconds to fetch a single data point from Koodo, which means that running the task hourly won't exceed your monthly free dyno allotment.)
##TODO
Tons of cool stuff could be done with this data. Scrape another page to find out things like:
- Is Prepaid still cheaper than Postpaid, given my usage patterns?