https://github.com/m4tx/usos-id-mapper
Simple webapplication that can map given list of student IDs to a list of their names using USOS API.
https://github.com/m4tx/usos-id-mapper
Last synced: 9 days ago
JSON representation
Simple webapplication that can map given list of student IDs to a list of their names using USOS API.
- Host: GitHub
- URL: https://github.com/m4tx/usos-id-mapper
- Owner: m4tx
- License: mit
- Created: 2017-02-02T15:39:38.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-08-10T15:28:31.000Z (almost 8 years ago)
- Last Synced: 2025-11-20T08:03:32.723Z (7 months ago)
- Language: Python
- Homepage:
- Size: 111 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# usos-id-mapper
Simple webapplication that can map given list of student IDs to a list of their
names using USOS (Polish: Uniwersytecki System Obsługi Studiów) API.
## Installation
For local installation:
Make sure you have git, Python 3.5+ and Java (JRE) installed. Then execute the
following commands:
```sh
git clone https://github.com/m4tx/usos-id-mapper.git
cd usos-id-mapper/usosidmapper/settings
cp local_settings.py.example local_settings.py
# Fill out USOS_CONSUMER_KEY and USOS_CONSUMER_SECRET
$EDITOR local_settings.py
cd ../..
pip install -r requirements.txt
python manage.py runserver
```