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