Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
def execute_stage_one(path_stage0):
"""Execute the first stage of processing."""
path_stage1 = path_stage0.split('::')[0] + ".stage1.output.dat"
with open(os.path.join(PATH_PREFIX, path_stage1), 'w') as f:
for graf in pytextrank.parse_doc(pytextrank.json_iter(
os.path.join(PATH_PREFIX, path_stage0))):
f.write("%s\n" % pytextrank.pretty_print(graf._asdict()))
return path_stage1