From 5295777f496a64d3ab566cc8ee55ea100e7b5bbd Mon Sep 17 00:00:00 2001 From: vitiko98 Date: Mon, 2 Nov 2020 19:15:07 -0400 Subject: [PATCH] Move qopy to qo_utils --- main.py | 2 +- {qopy => qo_utils}/__init__.py | 0 qo_utils/__init__py | 0 {qopy => qo_utils}/exceptions.py | 0 {qopy => qo_utils}/qopy.py | 2 +- 5 files changed, 2 insertions(+), 2 deletions(-) rename {qopy => qo_utils}/__init__.py (100%) delete mode 100644 qo_utils/__init__py rename {qopy => qo_utils}/exceptions.py (100%) rename {qopy => qo_utils}/qopy.py (96%) diff --git a/main.py b/main.py index ad43a1b..f62ca70 100644 --- a/main.py +++ b/main.py @@ -7,7 +7,7 @@ import sys from pick import pick -import qopy +from qo_utils import qopy from qo_utils import downloader from qo_utils.search import Search diff --git a/qopy/__init__.py b/qo_utils/__init__.py similarity index 100% rename from qopy/__init__.py rename to qo_utils/__init__.py diff --git a/qo_utils/__init__py b/qo_utils/__init__py deleted file mode 100644 index e69de29..0000000 diff --git a/qopy/exceptions.py b/qo_utils/exceptions.py similarity index 100% rename from qopy/exceptions.py rename to qo_utils/exceptions.py diff --git a/qopy/qopy.py b/qo_utils/qopy.py similarity index 96% rename from qopy/qopy.py rename to qo_utils/qopy.py index 63120c1..09dd090 100644 --- a/qopy/qopy.py +++ b/qo_utils/qopy.py @@ -8,7 +8,7 @@ import time import requests from qo_utils import spoofbuz -from qopy.exceptions import ( +from qo_utils.exceptions import ( AuthenticationError, IneligibleError, InvalidAppIdError,