foreverVM provides an API for running arbitrary, stateful Python code securely.
The core concepts in foreverVM are machines and instructions.
Machines represent a stateful Python process. You interact with a machine by running instructions (Python statements and expressions) on it, and receiving the results. A machine processes one instruction at a time.
아직 리뷰가 없습니다. 첫 번째 리뷰를 작성해 보세요!
대화에 참여하려면 로그인하세요
Create a Python REPL. Returns: ID of the new REPL.
Execute code in a Python REPL. Required Inputs: code (string): code that the Python REPL will run, replId (string): ID of the REPL to run the code on. Returns: Result of the code executed.