xython 4.2.0__tar.gz → 4.3.1__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.
- xython-4.3.1/PKG-INFO +13 -0
- xython-4.3.1/later/xy_util2.py +1105 -0
- {xython-4.2.0/src/xython → xython-4.3.1/later}/xy_web.py +4 -1
- xython-4.3.1/pyproject.toml +30 -0
- xython-4.3.1/setup.cfg +4 -0
- xython-4.3.1/src/pypi_uploader.py +619 -0
- xython-4.3.1/src/setup.py +44 -0
- xython-4.3.1/src/xython/starter.py +226 -0
- {xython-4.2.0 → xython-4.3.1}/src/xython/xy_auto.py +463 -456
- xython-4.3.1/src/xython/xy_chrome.py +1681 -0
- xython-4.3.1/src/xython/xy_color.py +2464 -0
- xython-4.3.1/src/xython/xy_color_old2.py +2588 -0
- xython-4.3.1/src/xython/xy_common.py +1873 -0
- {xython-4.2.0 → xython-4.3.1}/src/xython/xy_db.py +240 -333
- xython-4.3.1/src/xython/xy_edge.py +1459 -0
- xython-4.3.1/src/xython/xy_excel.py +13072 -0
- xython-4.3.1/src/xython/xy_excel_old (2).py +23357 -0
- xython-4.3.1/src/xython/xy_hwp.py +8148 -0
- {xython-4.2.0 → xython-4.3.1}/src/xython/xy_list.py +15 -18
- {xython-4.2.0 → xython-4.3.1}/src/xython/xy_outlook.py +568 -367
- {xython-4.2.0 → xython-4.3.1}/src/xython/xy_re.py +390 -695
- xython-4.3.1/src/xython/xy_time.py +4282 -0
- xython-4.3.1/src/xython/xy_util.py +11566 -0
- {xython-4.2.0 → xython-4.3.1}/src/xython/xy_word.py +563 -578
- xython-4.3.1/xython.egg-info/PKG-INFO +13 -0
- xython-4.3.1/xython.egg-info/SOURCES.txt +57 -0
- xython-4.3.1/xython.egg-info/requires.txt +9 -0
- xython-4.3.1/xython.egg-info/top_level.txt +3 -0
- xython-4.2.0/MANIFEST.in +0 -22
- xython-4.2.0/PKG-INFO +0 -283
- xython-4.2.0/requirements.txt +0 -0
- xython-4.2.0/setup.cfg +0 -15
- xython-4.2.0/setup.py +0 -30
- xython-4.2.0/src/xython/xy_color.py +0 -2510
- xython-4.2.0/src/xython/xy_common.py +0 -4639
- xython-4.2.0/src/xython/xy_common_hwp.py +0 -2043
- xython-4.2.0/src/xython/xy_common_map.py +0 -22478
- xython-4.2.0/src/xython/xy_example.py +0 -782
- xython-4.2.0/src/xython/xy_excel.py +0 -20198
- xython-4.2.0/src/xython/xy_grid.py +0 -1640
- xython-4.2.0/src/xython/xy_hwp.py +0 -3591
- xython-4.2.0/src/xython/xy_time.py +0 -3993
- xython-4.2.0/src/xython/xy_util.py +0 -11182
- xython-4.2.0/src/xython/xy_util2.py +0 -553
- xython-4.2.0/src/xython.egg-info/PKG-INFO +0 -283
- xython-4.2.0/src/xython.egg-info/SOURCES.txt +0 -32
- xython-4.2.0/src/xython.egg-info/not-zip-safe +0 -1
- xython-4.2.0/src/xython.egg-info/top_level.txt +0 -1
- {xython-4.2.0 → xython-4.3.1}/README.md +0 -0
- {xython-4.2.0/src/xython → xython-4.3.1/later}/xy_chart.py +0 -0
- {xython-4.2.0 → xython-4.3.1}/src/xython/__init__.py +0 -0
- {xython-4.2.0 → xython-4.3.1}/src/xython/xy_excel_event.py +0 -0
- {xython-4.2.0 → xython-4.3.1}/src/xython/xy_map.py +0 -0
- {xython-4.2.0/src → xython-4.3.1}/xython.egg-info/dependency_links.txt +0 -0
xython-4.3.1/PKG-INFO
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: xython
|
|
3
|
+
Version: 4.3.1
|
|
4
|
+
Author-email: "SJ.Park" <sjpkorea@naver.com>
|
|
5
|
+
Requires-Dist: korean_lunar_calendar
|
|
6
|
+
Requires-Dist: arrow
|
|
7
|
+
Requires-Dist: pywin32
|
|
8
|
+
Requires-Dist: pyautogui
|
|
9
|
+
Requires-Dist: folium
|
|
10
|
+
Requires-Dist: DrissionPage
|
|
11
|
+
Requires-Dist: screeninfo
|
|
12
|
+
Requires-Dist: pywinauto
|
|
13
|
+
Requires-Dist: psutil
|