A Python API for interacting with the Judge0 REST API
Project description
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