Metadata-Version: 1.1
Name: judge0api
Version: 0.1.19
Summary: A Python API for interacting with the Judge0 REST API
Home-page: https://github.com/vCra/judge0api
Author: Aaron Walker
Author-email: aaron@vcra.io
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://img.shields.io/pypi/dm/judge0api.svg
           :target: https://pypi.python.org/pypi/judge0api/
        
        .. image:: https://img.shields.io/pypi/pyversions/judge0api.svg
           :target: https://pypi.python.org/pypi/judge0api/
        
        .. image:: https://travis-ci.com/vCra/judge0api.svg?branch=master
            :target: https://travis-ci.com/vCra/judge0api
        
        .. image:: https://readthedocs.org/projects/judge0api/badge/?version=latest
           :target: http://judge0api.readthedocs.io/?badge=latest
        
        .. image:: https://api.codeclimate.com/v1/badges/f61d15c277295dbbfa46/maintainability
           :target: https://codeclimate.com/github/vCra/judge0api/maintainability
           :alt: Maintainability
        
        .. image:: https://api.codeclimate.com/v1/badges/f61d15c277295dbbfa46/test_coverage
           :target: https://codeclimate.com/github/vCra/judge0api/test_coverage
           :alt: Test Coverage
        
        .. image:: https://img.shields.io/github/license/vCra/judge0api.svg
           :target: https://github.com/vCra/judge0api/blob/master/LICENSE
        
        
        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")
        >>> client.wait = False  # Not needed on servers which support wait
        >>> submission = api.submission.submit(
        ...     client,
        ...     b"print(f'Hello {input()}')",
        ...     71,
        ...     stdin=b'Judge0',
        ...     expected_output=b"Hello Judge0"
        ... )
        >>> submission.load(client)  # Load the status from the server
        >>> submission.stdout
        'Hello Judge0'
        
        Installation
        ------------
        
        Simply run ``pip install judge0api``
        
        Requirements
        ^^^^^^^^^^^^
        
        `Python requests
        <http://docs.python-requests.org/en/master/>`_ is required.
        
        Compatibility
        -------------
        
        Only Python >= 3.6 is supported.
        
        Help!
        -----
        
        Your first place to get help should be `The Docs
        <https://judge0api.readthedocs.io/en/latest/>`_!
        
        However:
            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
        -------
        
        `judge0api` was written by `Aaron Walker <aaron@vcra.io>`_.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
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
Classifier: Programming Language :: Python :: 3.8
