Metadata-Version: 1.1
Name: uiucapi
Version: 1.0.0
Summary: A simple interface to the UIUC course explorer API
Home-page: https://github.com/rohits2/UIUC-API
Author: Rohit Singh
Author-email: rohits2@illinois.edu
License: MIT
Description: UIUC CourseExplorer API
        =======================
        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 aioquery is used instead of query, all of the methods are async coroutines, allowing for efficient querying.
        
        
Keywords: uiuc setuptools development
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.5
