You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This Python API enables you to compile and execute Python code remotely.
It's designed for use in integration scenarios, allowing other applications to submit Python code and receive the execution results.
Key Features
RESTful API: Accepts HTTP POST requests with Python code in the request body.
CORS Support: Integrates flask-cors to enable cross-origin requests from different domains.
Vercel Deployment: Deployed on VERCEL for easy access and scalability.
Endpoint
URL /post
API Calling
Send a POST request to the /post endpoint with the Python code you want to execute in the request body (e.g., using tools like Postman, cURL, or code in another language).
The API accepts request in text or string format and responds in the same.
About
A Python-based service that enables remote execution of Python code. Perfect for integration scenarios, this API allows applications to submit Python scripts and receive results in real time. Ideal for testing, serverless execution, and educational use.