We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc2c693 commit 319a2a8Copy full SHA for 319a2a8
README.md
@@ -331,6 +331,10 @@ print(f'FINAL RESPONSE BY THE MODEL:\n{final_response["message"]["content"]}')
331
332
### Filesystem
333
334
+This example shows how to use Judge0 Python SDK to:
335
+1. Create a submission with additional files in the filesystem which will be available during the execution.
336
+2. Read the files after the execution which were created during the execution.
337
+
338
```python
339
import judge0
340
from judge0 import Filesystem, File, Submission
@@ -355,6 +359,7 @@ submission = Submission(
355
359
)
356
360
357
361
result = judge0.run(submissions=submission)
362
358
363
print(result.stdout)
364
print(result.post_execution_filesystem.find("./my_dir2/my_file2.txt"))
365
```
0 commit comments