Metadata-Version: 1.1
Name: judge0api
Version: 0.1.1
Summary: A Python API for interacting with the Judge0 REST API
Home-page: https://github.com/vCra/judge0api
Author: Aaron Walker
Author-email: aaw13@aber.ac.uk
License: MIT
Description: judge0api
        ===========
        
        .. image:: https://img.shields.io/pypi/v/judge0api.svg
           :target: https://pypi.python.org/pypi/judge0api
           :alt: Latest PyPI version
        
        .. image:: https://travis-ci.com/vCra/judge0api.svg?branch=master
            :target: https://travis-ci.com/vCra/judge0api
        
        
        judge0api is a Python API for interacting with the Judge0 REST API.
        
        Usage
        -----
        Using this tool is super easy!
        
        >>> import judge0api as api
        >>> client = api.Client("https://api.judge0.com")
        >>> submission = api.submission.submit(
        ...     client,
        ...     open(file.c),
        ...     4,
        ...     stdin=b'Judge0'
        ... )
        >>> submission.stdout
        'hello, Judge0'
        
        Installation
        ------------
        
        Simply run ``pip install mooshak2api``
        
        Requirements
        ^^^^^^^^^^^^
        
        `Python requests
        <http://docs.python-requests.org/en/master/>`_ is required.
        
        Compatibility
        -------------
        
        Only Python >= 3.6 is supported.
        It is recommended you use the latest version of Mooshak 2, as some older versions do not work completely
        
        Help!
        -----
        
        Is something not working properly? Are the docs awful? Want to help make this better?
        If the answer is yes then great! All you have to do is open an issue. 
        
        Licence
        -------
        
        This software is released under the MIT License
        
        Authors
        -------
        
        `mooshak2api` was written by `Aaron Walker <aaw13@aber.ac.uk>`_.
        
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
