xython 4.0.9__tar.gz → 4.3.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.
- xython-4.3.0/PKG-INFO +13 -0
- xython-4.3.0/later/xy_util2.py +1105 -0
- {xython-4.0.9/src/xython → xython-4.3.0/later}/xy_web.py +4 -1
- xython-4.3.0/pyproject.toml +30 -0
- xython-4.3.0/setup.cfg +4 -0
- xython-4.3.0/src/pypi_uploader.py +619 -0
- xython-4.3.0/src/setup.py +44 -0
- xython-4.3.0/src/xython/starter.py +226 -0
- {xython-4.0.9 → xython-4.3.0}/src/xython/xy_auto.py +463 -442
- xython-4.3.0/src/xython/xy_chrome.py +1681 -0
- xython-4.3.0/src/xython/xy_color.py +2464 -0
- xython-4.3.0/src/xython/xy_color_old2.py +2588 -0
- xython-4.3.0/src/xython/xy_common.py +1873 -0
- {xython-4.0.9 → xython-4.3.0}/src/xython/xy_db.py +240 -333
- xython-4.3.0/src/xython/xy_edge.py +1459 -0
- xython-4.3.0/src/xython/xy_excel.py +13072 -0
- xython-4.3.0/src/xython/xy_excel_old (2).py +23357 -0
- xython-4.3.0/src/xython/xy_hwp.py +8148 -0
- {xython-4.0.9 → xython-4.3.0}/src/xython/xy_list.py +15 -18
- {xython-4.0.9 → xython-4.3.0}/src/xython/xy_outlook.py +568 -367
- {xython-4.0.9 → xython-4.3.0}/src/xython/xy_re.py +413 -717
- xython-4.3.0/src/xython/xy_time.py +4282 -0
- xython-4.3.0/src/xython/xy_util.py +11566 -0
- {xython-4.0.9 → xython-4.3.0}/src/xython/xy_word.py +563 -578
- xython-4.3.0/xython.egg-info/PKG-INFO +13 -0
- xython-4.3.0/xython.egg-info/SOURCES.txt +56 -0
- xython-4.3.0/xython.egg-info/requires.txt +9 -0
- xython-4.3.0/xython.egg-info/top_level.txt +3 -0
- xython-4.0.9/MANIFEST.in +0 -22
- xython-4.0.9/PKG-INFO +0 -283
- xython-4.0.9/README.md +0 -261
- xython-4.0.9/requirements.txt +0 -0
- xython-4.0.9/setup.cfg +0 -15
- xython-4.0.9/setup.py +0 -30
- xython-4.0.9/src/xython/xy_color.py +0 -2510
- xython-4.0.9/src/xython/xy_common.py +0 -4604
- xython-4.0.9/src/xython/xy_common_hwp.py +0 -2043
- xython-4.0.9/src/xython/xy_common_map.py +0 -22478
- xython-4.0.9/src/xython/xy_example.py +0 -782
- xython-4.0.9/src/xython/xy_excel.py +0 -26910
- xython-4.0.9/src/xython/xy_grid.py +0 -1640
- xython-4.0.9/src/xython/xy_grid_model.py +0 -1256
- xython-4.0.9/src/xython/xy_grid_original.py +0 -3815
- xython-4.0.9/src/xython/xy_grid_widget.py +0 -1641
- xython-4.0.9/src/xython/xy_hwp.py +0 -3591
- xython-4.0.9/src/xython/xy_hwp_common.py +0 -2043
- xython-4.0.9/src/xython/xy_map_common.py +0 -22478
- xython-4.0.9/src/xython/xy_time.py +0 -3973
- xython-4.0.9/src/xython/xy_util.py +0 -11130
- xython-4.0.9/src/xython/xy_util2.py +0 -553
- xython-4.0.9/src/xython.egg-info/PKG-INFO +0 -283
- xython-4.0.9/src/xython.egg-info/SOURCES.txt +0 -37
- xython-4.0.9/src/xython.egg-info/not-zip-safe +0 -1
- xython-4.0.9/src/xython.egg-info/top_level.txt +0 -1
- {xython-4.0.9/src/xython → xython-4.3.0/later}/xy_chart.py +0 -0
- {xython-4.0.9 → xython-4.3.0}/src/xython/__init__.py +0 -0
- {xython-4.0.9 → xython-4.3.0}/src/xython/xy_excel_event.py +0 -0
- {xython-4.0.9 → xython-4.3.0}/src/xython/xy_map.py +0 -0
- {xython-4.0.9/src → xython-4.3.0}/xython.egg-info/dependency_links.txt +0 -0
xython-4.3.0/PKG-INFO
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: xython
|
|
3
|
+
Version: 4.3.0
|
|
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
|