Description: This application is intended for runners, jogger, etc to log their daily milage and keep track of their weekly, monthly, yearly and lifetime milage.
Written in Python using PyQt4 and sqlite.
run create_db.py when using for the first time (this should only be run once):
python create_db.py
This creates an empty sqlite database called runninglog.db.
python running.py to start the application
Requires: PyQt4 Python 2.5Last changelog:
v0.3 - fix hardcoded dbfile name - can now run in any path
Ratings & Comments
2 Comments
If you use Python >= 2.5, you don't need to install pysqlite, it is already built in python2.5 as 'sqlite3' ('pysqlite2' is older).
Thanks for this advice. I'll update the code to sqlite3 ASAP. thanks.