xython 4.3.6__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.
- xython-4.3.7/PKG-INFO +30 -0
- xython-4.3.7/README.md +10 -0
- {xython-4.3.6 → xython-4.3.7}/pyproject.toml +7 -6
- xython-4.3.7/src/xython/xy_auto.py +2276 -0
- {xython-4.3.6 → xython-4.3.7}/src/xython/xy_chrome.py +14 -143
- {xython-4.3.6 → xython-4.3.7}/src/xython/xy_color.py +13 -8
- {xython-4.3.6 → xython-4.3.7}/src/xython/xy_db.py +0 -1
- {xython-4.3.6 → xython-4.3.7}/src/xython/xy_edge.py +16 -151
- {xython-4.3.6 → xython-4.3.7}/src/xython/xy_excel_event.py +0 -1
- {xython-4.3.6 → xython-4.3.7}/src/xython/xy_hwp.py +0 -122
- {xython-4.3.6 → xython-4.3.7}/src/xython/xy_map.py +6 -4
- {xython-4.3.6 → xython-4.3.7}/src/xython/xy_outlook.py +0 -125
- {xython-4.3.6 → xython-4.3.7}/src/xython/xy_re.py +0 -122
- {xython-4.3.6 → xython-4.3.7}/src/xython/xy_time.py +38 -146
- {xython-4.3.6 → xython-4.3.7}/src/xython/xy_util.py +117 -192
- {xython-4.3.6 → xython-4.3.7}/src/xython/xy_word.py +3 -3
- xython-4.3.7/src/xython.egg-info/PKG-INFO +30 -0
- {xython-4.3.6 → xython-4.3.7}/src/xython.egg-info/requires.txt +5 -4
- xython-4.3.6/PKG-INFO +0 -286
- xython-4.3.6/README.md +0 -267
- xython-4.3.6/src/xython/xy_auto.py +0 -2304
- xython-4.3.6/src/xython.egg-info/PKG-INFO +0 -286
- {xython-4.3.6 → xython-4.3.7}/MANIFEST.in +0 -0
- {xython-4.3.6 → xython-4.3.7}/requirements.txt +0 -0
- {xython-4.3.6 → xython-4.3.7}/setup.cfg +0 -0
- {xython-4.3.6 → xython-4.3.7}/src/xython/__init__.py +0 -0
- {xython-4.3.6 → xython-4.3.7}/src/xython/xy_common.py +0 -0
- {xython-4.3.6 → xython-4.3.7}/src/xython/xy_excel.py +0 -0
- {xython-4.3.6 → xython-4.3.7}/src/xython/xy_list.py +0 -0
- {xython-4.3.6 → xython-4.3.7}/src/xython.egg-info/SOURCES.txt +0 -0
- {xython-4.3.6 → xython-4.3.7}/src/xython.egg-info/dependency_links.txt +0 -0
- {xython-4.3.6 → 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
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "xython"
|
|
7
|
-
version = "4.3.
|
|
7
|
+
version = "4.3.7"
|
|
8
8
|
description = "xython package"
|
|
9
9
|
readme = {file = "README.md", content-type = "text/markdown"}
|
|
10
10
|
requires-python = ">=3.8"
|
|
@@ -14,18 +14,19 @@ authors = [
|
|
|
14
14
|
license = {text = "MIT"}
|
|
15
15
|
dependencies = [
|
|
16
16
|
"korean_lunar_calendar",
|
|
17
|
-
"arrow",
|
|
18
17
|
"pywin32",
|
|
19
|
-
"pyautogui",
|
|
20
18
|
"folium",
|
|
21
19
|
"DrissionPage",
|
|
22
|
-
"screeninfo",
|
|
23
|
-
"pywinauto",
|
|
24
20
|
"psutil",
|
|
21
|
+
"dateutil",
|
|
22
|
+
"pygetwindow",
|
|
23
|
+
"pymsgbox",
|
|
24
|
+
"pywintypes",
|
|
25
|
+
"win32ui",
|
|
25
26
|
]
|
|
26
27
|
|
|
27
28
|
[project.urls]
|
|
28
|
-
Homepage = "https://
|
|
29
|
+
Homepage = "https://www.xython.co.kr"
|
|
29
30
|
|
|
30
31
|
[tool.setuptools.packages.find]
|
|
31
32
|
where = ["src"]
|