diff --git a/core/__pycache__/__init__.cpython-312.pyc b/core/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 9e31eae..0000000 Binary files a/core/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/core/__pycache__/browsers.cpython-310.pyc b/core/__pycache__/browsers.cpython-310.pyc deleted file mode 100644 index e3e0a4a..0000000 Binary files a/core/__pycache__/browsers.cpython-310.pyc and /dev/null differ diff --git a/core/__pycache__/browsers.cpython-312.pyc b/core/__pycache__/browsers.cpython-312.pyc deleted file mode 100644 index e4f43e8..0000000 Binary files a/core/__pycache__/browsers.cpython-312.pyc and /dev/null differ diff --git a/core/__pycache__/excels.cpython-312.pyc b/core/__pycache__/excels.cpython-312.pyc deleted file mode 100644 index d478792..0000000 Binary files a/core/__pycache__/excels.cpython-312.pyc and /dev/null differ diff --git a/core/__pycache__/messages.cpython-312.pyc b/core/__pycache__/messages.cpython-312.pyc deleted file mode 100644 index 45c11fd..0000000 Binary files a/core/__pycache__/messages.cpython-312.pyc and /dev/null differ diff --git a/core/__pycache__/spiders.cpython-312.pyc b/core/__pycache__/spiders.cpython-312.pyc deleted file mode 100644 index d4f1d32..0000000 Binary files a/core/__pycache__/spiders.cpython-312.pyc and /dev/null differ diff --git a/core/__pycache__/types.cpython-312.pyc b/core/__pycache__/types.cpython-312.pyc deleted file mode 100644 index 706b980..0000000 Binary files a/core/__pycache__/types.cpython-312.pyc and /dev/null differ diff --git a/core/spiders.py b/core/spiders.py index cdf4df1..5893a48 100644 --- a/core/spiders.py +++ b/core/spiders.py @@ -1,5 +1,5 @@ import os -from core import browsers +from utils import browsers class Spiders: def __init__(self, project_name: str, bitch: int = 5, worker_num: int = 1, switch_clash: bool = False, reflush_browser: bool = False): diff --git a/lib/__init__.py b/lib/__init__.py index 8297ea0..52ab1aa 100644 --- a/lib/__init__.py +++ b/lib/__init__.py @@ -1,4 +1,3 @@ -from core import browsers from lib.module import example Server: example.SpiderModule diff --git a/lib/__pycache__/__init__.cpython-312.pyc b/lib/__pycache__/__init__.cpython-312.pyc deleted file mode 100644 index 278bf31..0000000 Binary files a/lib/__pycache__/__init__.cpython-312.pyc and /dev/null differ diff --git a/lib/__pycache__/get_goods.cpython-312.pyc b/lib/__pycache__/get_goods.cpython-312.pyc deleted file mode 100644 index 11404c7..0000000 Binary files a/lib/__pycache__/get_goods.cpython-312.pyc and /dev/null differ diff --git a/lib/__pycache__/gether.cpython-312.pyc b/lib/__pycache__/gether.cpython-312.pyc deleted file mode 100644 index f8283ed..0000000 Binary files a/lib/__pycache__/gether.cpython-312.pyc and /dev/null differ diff --git a/lib/__pycache__/shopyy.cpython-312.pyc b/lib/__pycache__/shopyy.cpython-312.pyc deleted file mode 100644 index 74181bd..0000000 Binary files a/lib/__pycache__/shopyy.cpython-312.pyc and /dev/null differ diff --git a/lib/__pycache__/shopyy_verify.cpython-312.pyc b/lib/__pycache__/shopyy_verify.cpython-312.pyc deleted file mode 100644 index 87a6301..0000000 Binary files a/lib/__pycache__/shopyy_verify.cpython-312.pyc and /dev/null differ diff --git a/lib/shopyy.py b/lib/shopyy.py index a44c802..5d11a13 100644 --- a/lib/shopyy.py +++ b/lib/shopyy.py @@ -1,7 +1,6 @@ import requests -import lib -from core import excels, browsers -from utils import files, formats +from core import excels +from utils import browsers, files, formats class Shopyy: def __init__(self, save_folder): diff --git a/core/browsers.py b/utils/browsers.py similarity index 100% rename from core/browsers.py rename to utils/browsers.py