API

Jutge API Clients

Python

The Python client offers a simple way to interact with the API of Jutge.org using the Python programming language.

The Python client is very easy to use. It is synchronous and blocking, so that you can write command line applications that are easy to write,understand and debug.

Thanks to the use of type hints and docstrings, the code you write is type safe and you get code completion and help everywhere in any modern IDE. Less time debugging and less time reading docs.

Download

The Python client is currently distributed as a single Python file you can import:

In order to use it, you have to install some dependencies:

python3 -m pip install requests requests-toolbelt pyyaml rich pydantic

If pip complains, either add the --break-system-packages flag or use a virtual environment.

TypeScript

The TypeScript client offers a simple way to interact with the API of Jutge.org using the TypeScript programming language.

The TypeScript client is very easy to use. It is asynchronous and non blocking, making use of the modern async/await syntax. This allows you to write code that can run in any dynamic environment, like an app or a server.

Thanks to the use of types, the code you write is type safe and you get code completion and help everywhere in any modern IDE. Less time debugging and less time reading docs.

In order to use the TypeScript client in an easy and efficient way, we recommend you to use Bun.

You can also try the TypeScript script in the browser in the Playground section.

Download

The Typescript client is currently distributed as a single TypeScript file you can import:

JavaScript

Warning: This client is under development

The JavaScript client offers a simple way to interact with the API of Jutge.org using the JavaScript programming language.

The JavaScript client is very easy to use. It is asynchronous and non blocking, making use of the modern async/await syntax. The JavaScript client is specially designed to be used in a browser. For apps and servers, please consider using the TypeScript client.

Download

The JavaScript client is currently distributed as a single JavaScript file:

This client has no dependencies.

Java

Warning: This client is under development

The Java client offers a way to interact with the API of Jutge.org using the Java programming language.

Download

The Java client is currently distributed as a single .jar file:

C++

Warning: This client is under development

The C++ client offers a way to interact with the API of Jutge.org using the C++ programming language.

Download

The C++ client is currently distributed as a single C++ file you must include:

In order to use it you need to download some header only libraries: yhirose/cpp-httplib, and nlohmann/json.

Compilation, then, would go like this:

g++ -std=c++20 -lssl -lcrypto -o program *.cc 

PHP

Warning: This client is under development

The PHP client offers a crude way to interact with the API of Jutge.org using the PHP programming language.

We only develop it to support the transition of the old PHP code to the new API.

Download

The PHP client is currently distributed as a single PHP file you can import:

This client has no dependencies (except for a deep tolerance of PHP 😉).