From bc22a4ee128a3eb33a155101f503a6824e0788f3 Mon Sep 17 00:00:00 2001 From: Noe <101264710+Vxrtrauter@users.noreply.github.com> Date: Sat, 21 Dec 2024 22:29:49 +0100 Subject: [PATCH] update file structure --- download.py => core/download.py | 2 +- core/gui.py | 1 + scraper.py => core/scraper.py | 0 gui.py | 0 main.py | 6 +++--- 5 files changed, 5 insertions(+), 4 deletions(-) rename download.py => core/download.py (99%) create mode 100644 core/gui.py rename scraper.py => core/scraper.py (100%) delete mode 100644 gui.py diff --git a/download.py b/core/download.py similarity index 99% rename from download.py rename to core/download.py index f5e439a..512ada6 100644 --- a/download.py +++ b/core/download.py @@ -2,7 +2,7 @@ import aria2p import subprocess import keyboard import os -from scraper import uri +from core.scraper import uri aria2 = aria2p.API( aria2p.Client( diff --git a/core/gui.py b/core/gui.py new file mode 100644 index 0000000..b8dad5d --- /dev/null +++ b/core/gui.py @@ -0,0 +1 @@ +# shit is emptyyyy \ No newline at end of file diff --git a/scraper.py b/core/scraper.py similarity index 100% rename from scraper.py rename to core/scraper.py diff --git a/gui.py b/gui.py deleted file mode 100644 index e69de29..0000000 diff --git a/main.py b/main.py index 52437f2..4093e9a 100644 --- a/main.py +++ b/main.py @@ -1,3 +1,3 @@ -import download -import gui -import scraper \ No newline at end of file +import core.download as download +import core.gui as gui +import core.scraper as scraper \ No newline at end of file