Bundy clock simple Django app for storing and retrieving punch times, to be used with the lock screen saver bundy clock: https://github.com/dahallgren/bundyclock
1. Add "bundyclock" to your INSTALLED_APPS setting like this along with django rest framework:
INSTALLED_APPS = [
...
'bundyclock',
'rest_framework',
]
Include the bundyclock URLconf in your project urls.py like this:
path('bundyclock/', include('bundyclock.urls')),Run python manage.py migrate to create the bundyclock models.