Skip to main content

Stratum Run allows you to run scripts in various languages on the cloud

Project description

Stratum Run Library for Python3

Overview

Stratum Run is a tool that allows users to quickly execute scripts using in common languages such as Python, Javscript, etc.

Check out https://stratumcloud.io for more information on Stratum.

Python Library

This Python module for Stratum Run allows you to run scripts in an isolated environment, so hackers can't mess with your environment, secrets, or system.

Usage

from stratumrun import StratumRun

# Create a Stratum run instance with your API key
s = StratumRun(key="API KEY")

# Run your command and wait for a response
response = s.run("print(\"hello world\")", language="python3", timeout=30)
print(response.stdout)

# To start a command where you don't need to wait for the response, you can call the start function. Returns a job ID string
job = s.start("time.sleep(10)", language="python3", timeout=11)
print(job)

# To get the response, call the get function with the job ID
import time
time.sleep(15)

response = s.get(job)
print(response.stdout)

The Response Object

The run call returns a Response object with the following fields:

  • stdout
  • stderr
  • duration
  • metrics
  • status

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

stratumrun-0.1.1.tar.gz (2.7 kB view hashes)

Uploaded Source

Built Distribution

stratumrun-0.1.1-py3-none-any.whl (4.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page