xython 4.3.5__tar.gz → 4.3.7__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.
Files changed (32) hide show
  1. xython-4.3.7/PKG-INFO +30 -0
  2. xython-4.3.7/README.md +10 -0
  3. {xython-4.3.5 → xython-4.3.7}/pyproject.toml +35 -34
  4. xython-4.3.7/src/xython/xy_auto.py +2276 -0
  5. {xython-4.3.5 → xython-4.3.7}/src/xython/xy_chrome.py +14 -143
  6. {xython-4.3.5 → xython-4.3.7}/src/xython/xy_color.py +56 -9
  7. {xython-4.3.5 → xython-4.3.7}/src/xython/xy_db.py +0 -1
  8. {xython-4.3.5 → xython-4.3.7}/src/xython/xy_edge.py +16 -151
  9. {xython-4.3.5 → xython-4.3.7}/src/xython/xy_excel.py +50 -17
  10. {xython-4.3.5 → xython-4.3.7}/src/xython/xy_excel_event.py +0 -1
  11. {xython-4.3.5 → xython-4.3.7}/src/xython/xy_hwp.py +0 -122
  12. {xython-4.3.5 → xython-4.3.7}/src/xython/xy_map.py +6 -4
  13. {xython-4.3.5 → xython-4.3.7}/src/xython/xy_outlook.py +0 -125
  14. {xython-4.3.5 → xython-4.3.7}/src/xython/xy_re.py +0 -122
  15. {xython-4.3.5 → xython-4.3.7}/src/xython/xy_time.py +38 -146
  16. {xython-4.3.5 → xython-4.3.7}/src/xython/xy_util.py +117 -192
  17. {xython-4.3.5 → xython-4.3.7}/src/xython/xy_word.py +3 -3
  18. xython-4.3.7/src/xython.egg-info/PKG-INFO +30 -0
  19. {xython-4.3.5 → xython-4.3.7}/src/xython.egg-info/requires.txt +5 -4
  20. xython-4.3.5/PKG-INFO +0 -280
  21. xython-4.3.5/README.md +0 -261
  22. xython-4.3.5/src/xython/xy_auto.py +0 -2304
  23. xython-4.3.5/src/xython.egg-info/PKG-INFO +0 -280
  24. {xython-4.3.5 → xython-4.3.7}/MANIFEST.in +0 -0
  25. {xython-4.3.5 → xython-4.3.7}/requirements.txt +0 -0
  26. {xython-4.3.5 → xython-4.3.7}/setup.cfg +0 -0
  27. {xython-4.3.5 → xython-4.3.7}/src/xython/__init__.py +0 -0
  28. {xython-4.3.5 → xython-4.3.7}/src/xython/xy_common.py +0 -0
  29. {xython-4.3.5 → xython-4.3.7}/src/xython/xy_list.py +0 -0
  30. {xython-4.3.5 → xython-4.3.7}/src/xython.egg-info/SOURCES.txt +0 -0
  31. {xython-4.3.5 → xython-4.3.7}/src/xython.egg-info/dependency_links.txt +0 -0
  32. {xython-4.3.5 → xython-4.3.7}/src/xython.egg-info/top_level.txt +0 -0
xython-4.3.7/PKG-INFO ADDED
@@ -0,0 +1,30 @@
1
+ Metadata-Version: 2.4
2
+ Name: xython
3
+ Version: 4.3.7
4
+ Summary: xython package
5
+ Author-email: "SJ.Park" <sjpkorea@naver.com>
6
+ License: MIT
7
+ Project-URL: Homepage, https://www.xython.co.kr
8
+ Requires-Python: >=3.8
9
+ Description-Content-Type: text/markdown
10
+ Requires-Dist: korean_lunar_calendar
11
+ Requires-Dist: pywin32
12
+ Requires-Dist: folium
13
+ Requires-Dist: DrissionPage
14
+ Requires-Dist: psutil
15
+ Requires-Dist: dateutil
16
+ Requires-Dist: pygetwindow
17
+ Requires-Dist: pymsgbox
18
+ Requires-Dist: pywintypes
19
+ Requires-Dist: win32ui
20
+
21
+ # README
22
+
23
+ 작성일: 2026-05-10
24
+
25
+ ## 개요
26
+
27
+ 내용을 작성하세요.
28
+
29
+ ## 상세
30
+
xython-4.3.7/README.md ADDED
@@ -0,0 +1,10 @@
1
+ # README
2
+
3
+ 작성일: 2026-05-10
4
+
5
+ ## 개요
6
+
7
+ 내용을 작성하세요.
8
+
9
+ ## 상세
10
+
@@ -1,34 +1,35 @@
1
- [build-system]
2
- requires = ["setuptools>=61.0", "wheel"]
3
- build-backend = "setuptools.build_meta"
4
-
5
- [project]
6
- name = "xython"
7
- version = "4.3.5"
8
- description = "xython package"
9
- readme = {file = "README.md", content-type = "text/markdown"}
10
- requires-python = ">=3.8"
11
- authors = [
12
- {name = "SJ.Park", email = "sjpkorea@naver.com"}
13
- ]
14
- license = {text = "MIT"}
15
- dependencies = [
16
- "korean_lunar_calendar",
17
- "arrow",
18
- "pywin32",
19
- "pyautogui",
20
- "folium",
21
- "DrissionPage",
22
- "screeninfo",
23
- "pywinauto",
24
- "psutil",
25
- ]
26
-
27
- [project.urls]
28
- Homepage = "https://github.com/yourname/xython"
29
-
30
- [tool.setuptools.packages.find]
31
- where = ["src"]
32
-
33
- [tool.setuptools.package-dir]
34
- "" = "src"
1
+ [build-system]
2
+ requires = ["setuptools>=61.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "xython"
7
+ version = "4.3.7"
8
+ description = "xython package"
9
+ readme = {file = "README.md", content-type = "text/markdown"}
10
+ requires-python = ">=3.8"
11
+ authors = [
12
+ {name = "SJ.Park", email = "sjpkorea@naver.com"}
13
+ ]
14
+ license = {text = "MIT"}
15
+ dependencies = [
16
+ "korean_lunar_calendar",
17
+ "pywin32",
18
+ "folium",
19
+ "DrissionPage",
20
+ "psutil",
21
+ "dateutil",
22
+ "pygetwindow",
23
+ "pymsgbox",
24
+ "pywintypes",
25
+ "win32ui",
26
+ ]
27
+
28
+ [project.urls]
29
+ Homepage = "https://www.xython.co.kr"
30
+
31
+ [tool.setuptools.packages.find]
32
+ where = ["src"]
33
+
34
+ [tool.setuptools.package-dir]
35
+ "" = "src"