vCra / judge0api

A Python API for Judge0

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

judge0api

Latest PyPI version https://travis-ci.com/vCra/judge0api.svg?branch=master https://readthedocs.org/projects/judge0api/badge/?version=latest Maintainability Test Coverage

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 is required.

Compatibility

Only Python >= 3.6 is supported.

Help!

Your first place to get help should be The Docs!

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.

About

A Python API for Judge0

License:MIT License


Languages

Language:Python 100.0%