Skip to content

Latest commit

 

History

History
84 lines (60 loc) · 2.02 KB

index.rst

File metadata and controls

84 lines (60 loc) · 2.02 KB

Judge0 Python SDK

Getting Started

You can run minimal Hello World example in three easy steps:

  1. Install Judge0 Python SDK:
pip install judge0
  1. Create a minimal script:
import judge0

submission = judge.run(source_code="print('Hello Judge0!')")
print(submission.stdout)
  1. Run the script.

Want to learn more

To learn what is happening behind the scenes and how to best use Judge0 Python SDK to facilitate the development of your own product see In Depth guide and examples.

Getting Involved

Getting involved in any open-source project is simple and rewarding, with multiple ways to contribute to its growth and success. You can help by:

  1. reporting bugs by creating a detailed issue describing the problem, along with any relevant code or steps to reproduce it, so it can be addressed effectively,
  2. creating a pull request for an existing issue; we welcome improvements, fixes, and new features that align with the project's goals, and
  3. you can show support by starring the repository, letting us know that we’re doing a good job and helping us gain visibility within the open-source community.

Every contribution, big or small, is valuable!

.. toctree::
      :caption: API
      :glob:
      :titlesonly:
      :hidden:

      api/api
      api/clients
      api/errors
      api/filesystem
      api/retry
      api/submission
      api/types


.. toctree::
      :caption: In Depth
      :glob:
      :titlesonly:
      :hidden:

      in_depth/overview
      in_depth/client_resolution


.. toctree::
      :caption: Getting Involved
      :glob:
      :titlesonly:
      :hidden:

      contributors_guide/contributing
      contributors_guide/release_notes