gitextract_h93r42wc/ ├── CHANGELOG.md ├── CODEOWNERS ├── Dockerfile ├── LICENSE ├── README.md ├── default_python_home/ │ ├── README.md │ └── matplotlibrc ├── example-clients/ │ └── python/ │ ├── requirements.txt │ └── terrarium_client.py ├── nodemon.json ├── package.json ├── src/ │ ├── index.ts │ ├── services/ │ │ └── python-interpreter/ │ │ ├── service.ts │ │ └── types.ts │ └── utils/ │ └── async-utils.ts ├── tests/ │ ├── file_io/ │ │ ├── _outputs/ │ │ │ └── test_file_output.json │ │ ├── replay_inputs.py │ │ ├── simple_matplotlib.py │ │ ├── simple_matplotlib_barchart.py │ │ └── test_file_input.json │ ├── functionality/ │ │ ├── error_missing_import.py │ │ ├── error_syntax_error.py │ │ ├── error_wrong_param.py │ │ ├── numpy_simple.py │ │ ├── super_long_python_file.py │ │ └── sympy_simple.py │ └── security/ │ ├── create_dir.py │ ├── cve_2026_5752_proto_escape.py │ ├── list_dirs.py │ └── subprocess.py └── tsconfig.json