I need to lock a file for writing in Python. It will be accessed from multiple Python processes at once. I have found some solutions online, but most fail for my purposes as they are often only Unix based or Windows based.
Advertisement
Answer
Alright, so I ended up going with the code I wrote here, on my website link is dead, view on archive.org (also available on GitHub). I can use it in the following fashion:
JavaScript
x
6
1
from filelock import FileLock
2
3
with FileLock("myfile.txt"):
4
# work with the file as it is now locked
5
print("Lock acquired.")
6