uw-course 0.1.3__tar.gz → 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {uw_course-0.1.3/uw_course.egg-info → uw_course-1.0.0}/PKG-INFO +1 -1
- {uw_course-0.1.3 → uw_course-1.0.0}/pyproject.toml +1 -1
- {uw_course-0.1.3 → uw_course-1.0.0}/uw_course/ClassSchedule/SearchInfo.py +1 -1
- {uw_course-0.1.3 → uw_course-1.0.0}/uw_course/ClassSchedule/runner.py +5 -4
- uw_course-1.0.0/uw_course/DB/__init__.py +0 -0
- {uw_course-0.1.3 → uw_course-1.0.0}/uw_course/DB/dbClass.py +1 -1
- uw_course-1.0.0/uw_course/Utiles/__init__.py +0 -0
- uw_course-1.0.0/uw_course/__init__.py +0 -0
- {uw_course-0.1.3 → uw_course-1.0.0}/uw_course/main.py +5 -4
- {uw_course-0.1.3 → uw_course-1.0.0/uw_course.egg-info}/PKG-INFO +1 -1
- {uw_course-0.1.3 → uw_course-1.0.0}/uw_course.egg-info/SOURCES.txt +3 -0
- {uw_course-0.1.3 → uw_course-1.0.0}/LICENSE +0 -0
- {uw_course-0.1.3 → uw_course-1.0.0}/README.md +0 -0
- {uw_course-0.1.3 → uw_course-1.0.0}/setup.cfg +0 -0
- {uw_course-0.1.3/uw_course → uw_course-1.0.0/uw_course/ClassSchedule}/__init__.py +0 -0
- {uw_course-0.1.3 → uw_course-1.0.0}/uw_course/Utiles/colorMessage.py +0 -0
- {uw_course-0.1.3 → uw_course-1.0.0}/uw_course/Utiles/manageDBClass.py +0 -0
- {uw_course-0.1.3 → uw_course-1.0.0}/uw_course/Utiles/randomColor.py +0 -0
- {uw_course-0.1.3 → uw_course-1.0.0}/uw_course/setting.py +0 -0
- {uw_course-0.1.3 → uw_course-1.0.0}/uw_course.egg-info/dependency_links.txt +0 -0
- {uw_course-0.1.3 → uw_course-1.0.0}/uw_course.egg-info/entry_points.txt +0 -0
- {uw_course-0.1.3 → uw_course-1.0.0}/uw_course.egg-info/requires.txt +0 -0
- {uw_course-0.1.3 → uw_course-1.0.0}/uw_course.egg-info/top_level.txt +0 -0
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
from
|
|
1
|
+
from .SearchInfo import Course
|
|
2
|
+
from ..Utiles.randomColor import randomColor, randomGray
|
|
3
|
+
from ..setting import Setting
|
|
4
|
+
from ..Utiles.colorMessage import *
|
|
5
|
+
|
|
2
6
|
from os import remove
|
|
3
|
-
from Utiles.randomColor import randomColor, randomGray
|
|
4
|
-
from setting import Setting
|
|
5
|
-
from Utiles.colorMessage import *
|
|
6
7
|
|
|
7
8
|
setting = Setting()
|
|
8
9
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
from DB.dbClass import dbClass
|
|
2
|
-
from ClassSchedule.runner import SearchCourse, makeSchedule, SearchAvalibleInTerm
|
|
3
|
-
from Utiles.colorMessage import *
|
|
1
|
+
from .DB.dbClass import dbClass
|
|
2
|
+
from .ClassSchedule.runner import SearchCourse, makeSchedule, SearchAvalibleInTerm
|
|
3
|
+
from .Utiles.colorMessage import *
|
|
4
|
+
from .setting import Setting
|
|
5
|
+
|
|
4
6
|
from os import system
|
|
5
|
-
from setting import Setting
|
|
6
7
|
import argparse
|
|
7
8
|
import sys
|
|
8
9
|
|
|
@@ -11,8 +11,11 @@ uw_course.egg-info/entry_points.txt
|
|
|
11
11
|
uw_course.egg-info/requires.txt
|
|
12
12
|
uw_course.egg-info/top_level.txt
|
|
13
13
|
uw_course/ClassSchedule/SearchInfo.py
|
|
14
|
+
uw_course/ClassSchedule/__init__.py
|
|
14
15
|
uw_course/ClassSchedule/runner.py
|
|
16
|
+
uw_course/DB/__init__.py
|
|
15
17
|
uw_course/DB/dbClass.py
|
|
18
|
+
uw_course/Utiles/__init__.py
|
|
16
19
|
uw_course/Utiles/colorMessage.py
|
|
17
20
|
uw_course/Utiles/manageDBClass.py
|
|
18
21
|
uw_course/Utiles/randomColor.py
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|