fit-classification

Access Classification portal API from your Python programs


Keywords
CTU, FIT, Classification, coursework
License
MIT
Install
pip install fit-classification==0.1.2

Documentation

Python library for Classification portal

This Python library lets you call API of the Classification portal (at FIT, CTU [1]) and work with it from your Python programs. It is a coursework for MI-PYT subject.

Key features

  • Access token management: login with your credentials once, and the token will be stored locally. If it expires, the library will automatically get a new one using refresh token retrieved earlier together with access token.
  • Save certain URL parameters — no need to supply them with every API call.
  • Use Python objects to generate request bodies — your IDE will show, what parameters they accept.
  • Deal with retrieving and saving students' classifications with the help of simplified data format (these operations are considered to be used most frequently).

Installation notes

You need to have Python installed of the version at least 3.6.

To log in, you will need not only your username and password, but also a Client ID and Secret codes. Get them by registering a new web application in the AppsManager. As a callback URL, use your host and a free port so that the library can instantiate a web server and catch a callback with authorization code (for example, type in http://localhost:8080).

Documentation

The documentation can be found in the docs folder.

If you would like to build it, you should firstly install the required dependencies. They can be found in the docs folder in the requirements.txt file.

To automatically install the requirements, you can use this command: pip install -r docs/requirements.txt

To build it, use: cd docs && make html

Please note, that you will likely need to have all dependencies of the library itself (not only of documentation) installed too. Just make sure that the library was installed (and brought all required projects with it).

Tests

This package also has tests inside. To run them, use: python setup.py test

Authors

The library is created by Boris Laskov (GitHub profile). For the flow of initial logging in, the author used the code authored by Petr Pulc (under MIT license).

License

This project is licensed under the MIT License — see the LICENSE file for details.

Footnotes

[1] Faculty of Information Technology, Czech Technical University in Prague.