An open API service indexing awesome lists of open source software.

https://github.com/axu2/pounce-remake

An example of using Django and the course offerings API. Potentially the beginning of a remake of Princeton Pounce (2013), an app that notifies when enrollment spots open up in classes you want.
https://github.com/axu2/pounce-remake

Last synced: 3 months ago
JSON representation

An example of using Django and the course offerings API. Potentially the beginning of a remake of Princeton Pounce (2013), an app that notifies when enrollment spots open up in classes you want.

Awesome Lists containing this project

README

        

# pounce
Princeton Pounce Remake

Looking for developers! Basically only scraping the course offerings API is implemented and basic forms and database.

Don't know Django? Just do the tutorial: https://www.djangoproject.com/

![](screenshots/1.png)
![](screenshots/2.png)
![](screenshots/3.png)
![](screenshots/4.png)

Requires Python 3.7.1+

```
python -m venv venv
pip install -r requirements.txt

python manage.py makemigrations
python manage.py migrate
python manage.py update
python manage.py runserver
```