Skip to content
Snippets Groups Projects
Commit fd9a42f2 authored by Sebastian Brommer's avatar Sebastian Brommer :hand_splayed_tone4:
Browse files

update prepare script

parent 600395c3
Branches
No related tags found
No related merge requests found
......@@ -6,6 +6,11 @@ import json
def get_job_ad():
instream = sys.stdin
# dump the input stream to a file for debugging
with open("/scratch/job_ad.txt", "w") as f:
for line in instream:
f.write(line)
job_ad = {}
# format of the job ad is key = value
for line in instream:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment