Last active
February 22, 2023 09:37
-
-
Save michaeldorner/d00845353a5083d2de346787f020813e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import shutil | |
from pathlib import Path | |
data_dir = './data' # please speficy the data dir | |
for path in Path(data_dir).rglob('timeline'): | |
print(path) | |
shutil.rmtree(path) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment