A code execution engine
Project description
It's Monolith, a code execution environment. You can run code in a variety of languages (Python / Golang / Cpp / Java / Javascript), and see the output.
Should you have any questions, please don't hesitate to ask mingzhe@nus.edu.sg.
Quickstart
Installation
pip install monolith-lib
Function Calls
from monolith import monolith
monolith = monolith.Monolith(backend_url='https://monolith.cool')
# 1) Submit code to Monolith (POST)
post_response = monolith.post_code_submit(
lang = 'python',
libs = [],
code = 'print("Hello, World!")',
timeout = 10,
profiling = False
)
# 2) Get async task_id from POST response
task_id = post_response['task_id']
# 3) Get code result from Monolith (GET)
get_response = monolith.get_code_result(task_id)
print(get_response)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
monolith_lib-1.0.1.tar.gz
(2.2 kB
view details)
File details
Details for the file monolith_lib-1.0.1.tar.gz.
File metadata
- Download URL: monolith_lib-1.0.1.tar.gz
- Upload date:
- Size: 2.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
568d8b42199b0ae7e053ec4b5be323e5020bf14996efcac251cc47e8a2a3b4a0
|
|
| MD5 |
64892f0405ca78768be0594f82910618
|
|
| BLAKE2b-256 |
ab864e387eb5a31dce876969ac29b2bf92c575c68b80e1f598af20b6da41bab1
|