A simple interface to the UIUC course explorer API
Project description
UIUC CourseExplorer API
=======================
.. image:: https://circleci.com/gh/rohits2/UIUC-API/tree/master.svg?style=shield
What is this?
-------------
This is an interface to the UIUC Course Explorer API. It allows for the easy querying of class statuses from inside Python.
This library supports both async and standard queries to the API, as well as querying for specific CRNs.
Basic usage
-----------
The API is very simple to use:
::
from uiucapi.query import get_course
course = get_course("CS 374 FA17")
for section in course.sections:
print(section.registration_status)
Advanced features
-----------------
If :code:`uiucapi.aioquery` is used instead of query, the :code:`get_course` and :code:`get_section` methods provided will be non-blocking coroutines instead of
blocking methods.
=======================
.. image:: https://circleci.com/gh/rohits2/UIUC-API/tree/master.svg?style=shield
What is this?
-------------
This is an interface to the UIUC Course Explorer API. It allows for the easy querying of class statuses from inside Python.
This library supports both async and standard queries to the API, as well as querying for specific CRNs.
Basic usage
-----------
The API is very simple to use:
::
from uiucapi.query import get_course
course = get_course("CS 374 FA17")
for section in course.sections:
print(section.registration_status)
Advanced features
-----------------
If :code:`uiucapi.aioquery` is used instead of query, the :code:`get_course` and :code:`get_section` methods provided will be non-blocking coroutines instead of
blocking methods.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
uiucapi-1.0.2.tar.gz
(4.0 kB
view hashes)