uw-ssec / MAWpy

Mobility Analysis Workflow in Python
https://mawpy.readthedocs.io/
BSD 3-Clause "New" or "Revised" License
1 stars 3 forks source link

refactor: use python tempfile to handle temporary output files across workflows #34

Open anujsinha3 opened 5 days ago

anujsinha3 commented 5 days ago

In the existing workflows, several temporary files are getting created during the workflow. The task is to use python tempfile API to handle the lifecycle of these temporary files.

This will avoid conflicts with left over files in case of failed runs and will also allow for mutliple concurrent runs not conflicting with each other.