Go to example tasks
Generate a file from code and save it
Created by
ParseBird
Runs a Python snippet that writes a CSV file (`squares.csv`) during the run and preserves it in the run's key-value store via `saveFiles`. The snippet also prints a small JSON summary. Use this pattern to produce reports, exports or generated assets from code. Adjust `code` and the `saveFiles` list.
AI Code Runner Sandboxparsebird/code-runner-sandbox
Status
Language
Exit code
Signal
+6 fieldsTextNumberBooleanListObject
Input
Language:python
Code(required):import csv, json
rows = [["id", "square"]] + [[i, i*i] for i in range(1, 11)]
with open("squares.csv", "w", newline="") as f:
csv.writer(f).writerows(rows)
print(json.dumps({"file": "squares.csv", "rows": len(rows) - 1}))
Save files:squares.csv
Timeout (seconds):5
Output fields
Status
Language
Exit code
Signal
Duration (ms)
Timed out
Output truncated
Termination reason
Result parse error
Executed at
Sign up on Apify01
Create your Apify account to access the AI Code Runner Sandbox.
Start the run02
The Actor will start running based on the input automatically.
Receive the output03
Monitor the progress in real-time. You will be notified as soon as your dataset is complete and ready for review.
Integrate into your workflow04
The final output is delivered in JSON, CSV, or Excel format, ready to be plugged into your workflow.
