Alwin is a wimpy kid. What? Is he lazy? Not at all! He always asks me, 'Where is my Prof?'. He is in search of his project and sick of waiting for hours in front of his Prof's office. Boom! He got an idea. He started to search the Prof's timetable and decided to meet him after his class. He went to ERP. Wow! What a beautiful place it is! He found the Prof's department and checked department time table, found out his slots, compared his slots with time and finally, he met him. But, alas! He was late. The Prof gave his project to another stud. Alwin asked him, 'Bro, how did you find him earlier?'. He replied, 'Use WIMP kid!'.
- Login to the ERP
- Go to Academic -> Timetable -> Subject List with Timetable Slots
- Open the browser console. Switch to the Network tab
- Choose any department and wait for the time table to load
- After the time table is loaded, check the Network tab for the
POST timetable_track.js ...
request. Select this request; switch to the Cookies tab and copy theJSESSIONID
cookie value to your.env
file - You can also add it using the following command for the current terminal session
export JSESSIONID="[JSESSIONID FROM ERP]"
The JSESSIONID is only used to update the data using main.py and not for running the app.py.
git clone https://github.com/metakgp/wimp.git
cd wimp
sudo pip install pipenv
pipenv install && pipenv shell # loads .env file variables, install dependencies
python main.py # To populate data
python app.py # Locate your browser to the local address
git clone https://github.com/themousepotato/wimp.git
cd wimp
docker build -t wimp .
docker run -p 5000:5000 wimp
You can use any JSON utility that is installed on your computer.
jq
is recommended.
$ jq '' data/data.json > data/data2.json
$ mv data/data2.json data/data.json
We've a list of FAQ here. If you've any queries, find the answer from there. If your question is not there, add it by yourself. We would love to answer.
PRs are most welcome!
Navaneeth Suresh (@themousepotato on metakgp Slack.)