Metadata-Version: 1.1
Name: mit-moira
Version: 0.0.1
Summary: Library to access MIT's Moira service
Home-page: https://github.com/mitodl/mit-moira
Author: MIT Office of Digital Learning
Author-email: odl@mit.edu
License: BSD
Description: MIT Moira
        =========
        
        Python client for accessing MIT's Moira_ system.
        This client uses the SOAP_ API, which has a few unusual limitations, and
        requires X.509 client certificates for access.
        
        .. _Moira: http://kb.mit.edu/confluence/display/istcontrib/Moira+Overview
        .. _SOAP: https://en.wikipedia.org/wiki/SOAP
        
        Installation
        ------------
        
        .. code-block:: bash
        
            pip install mit-moira
        
        Usage
        -----
        
        .. code-block:: python
        
            from mit_moira import Moira
        
            # Initialize Moira client with X.509 certificate and private key file
            moira = Moira("path/to/x509.cert", "path/to/x509.pem")
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet
