How to Solve NameError: name 'FileLock' is not defined -- filelock
Solution: Import the 'FileLock' module
To Solve the error, add the following line to the top of your code.
from filelock import FileLock
For more information:
Python filelock FileLock