From e4170367beabae3687589fde200241b890fe243f Mon Sep 17 00:00:00 2001 From: trevorhobenshield Date: Tue, 6 Jun 2023 13:52:31 -0700 Subject: [PATCH] add info gathering scripts --- scripts/clean.py | 1 + {info => scripts}/update.py | 0 2 files changed, 1 insertion(+) create mode 100644 scripts/clean.py rename {info => scripts}/update.py (100%) diff --git a/scripts/clean.py b/scripts/clean.py new file mode 100644 index 0000000..f5a1818 --- /dev/null +++ b/scripts/clean.py @@ -0,0 +1 @@ +import shutil;import pathlib;[shutil.rmtree(p) for p in pathlib.Path().iterdir() if p.name in {'env', 'dist', 'twitter_api_client.egg-info'}] \ No newline at end of file diff --git a/info/update.py b/scripts/update.py similarity index 100% rename from info/update.py rename to scripts/update.py