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.
- xython-4.3.7/PKG-INFO +30 -0
- xython-4.3.7/README.md +10 -0
- {xython-4.3.5 → xython-4.3.7}/pyproject.toml +35 -34
- xython-4.3.7/src/xython/xy_auto.py +2276 -0
- {xython-4.3.5 → xython-4.3.7}/src/xython/xy_chrome.py +14 -143
- {xython-4.3.5 → xython-4.3.7}/src/xython/xy_color.py +56 -9
- {xython-4.3.5 → xython-4.3.7}/src/xython/xy_db.py +0 -1
- {xython-4.3.5 → xython-4.3.7}/src/xython/xy_edge.py +16 -151
- {xython-4.3.5 → xython-4.3.7}/src/xython/xy_excel.py +50 -17
- {xython-4.3.5 → xython-4.3.7}/src/xython/xy_excel_event.py +0 -1
- {xython-4.3.5 → xython-4.3.7}/src/xython/xy_hwp.py +0 -122
- {xython-4.3.5 → xython-4.3.7}/src/xython/xy_map.py +6 -4
- {xython-4.3.5 → xython-4.3.7}/src/xython/xy_outlook.py +0 -125
- {xython-4.3.5 → xython-4.3.7}/src/xython/xy_re.py +0 -122
- {xython-4.3.5 → xython-4.3.7}/src/xython/xy_time.py +38 -146
- {xython-4.3.5 → xython-4.3.7}/src/xython/xy_util.py +117 -192
- {xython-4.3.5 → 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.5 → xython-4.3.7}/src/xython.egg-info/requires.txt +5 -4
- xython-4.3.5/PKG-INFO +0 -280
- xython-4.3.5/README.md +0 -261
- xython-4.3.5/src/xython/xy_auto.py +0 -2304
- xython-4.3.5/src/xython.egg-info/PKG-INFO +0 -280
- {xython-4.3.5 → xython-4.3.7}/MANIFEST.in +0 -0
- {xython-4.3.5 → xython-4.3.7}/requirements.txt +0 -0
- {xython-4.3.5 → xython-4.3.7}/setup.cfg +0 -0
- {xython-4.3.5 → xython-4.3.7}/src/xython/__init__.py +0 -0
- {xython-4.3.5 → xython-4.3.7}/src/xython/xy_common.py +0 -0
- {xython-4.3.5 → xython-4.3.7}/src/xython/xy_list.py +0 -0
- {xython-4.3.5 → xython-4.3.7}/src/xython.egg-info/SOURCES.txt +0 -0
- {xython-4.3.5 → xython-4.3.7}/src/xython.egg-info/dependency_links.txt +0 -0
- {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
|
@@ -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.
|
|
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
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
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"
|