nyx/tests/repro_fixtures/python-3.11/repro/entry/extracted_source.py

10 lines
162 B
Python
Raw Normal View History

import flask
app = flask.Flask(__name__)
@app.route('/run', methods=['POST'])
def run():
cmd = flask.request.json.get('cmd')
return {'out': eval(cmd)}