xython 4.0.3__tar.gz → 4.0.5__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.0.3/src/xython.egg-info → xython-4.0.5}/PKG-INFO +2 -2
- {xython-4.0.3 → xython-4.0.5}/setup.py +2 -2
- {xython-4.0.3 → xython-4.0.5}/src/xython/__init__.py +1 -1
- {xython-4.0.3 → xython-4.0.5}/src/xython/xy_common_hwp.py +1 -1
- {xython-4.0.3 → xython-4.0.5}/src/xython/xy_common_map.py +1 -1
- {xython-4.0.3 → xython-4.0.5}/src/xython/xy_hwp.py +1 -1
- {xython-4.0.3 → xython-4.0.5}/src/xython/xy_web.py +5 -5
- {xython-4.0.3 → xython-4.0.5}/src/xython/xy_word.py +1 -1
- {xython-4.0.3 → xython-4.0.5/src/xython.egg-info}/PKG-INFO +2 -2
- {xython-4.0.3 → xython-4.0.5}/MANIFEST.in +0 -0
- {xython-4.0.3 → xython-4.0.5}/README.md +0 -0
- {xython-4.0.3 → xython-4.0.5}/requirements.txt +0 -0
- {xython-4.0.3 → xython-4.0.5}/setup.cfg +0 -0
- {xython-4.0.3 → xython-4.0.5}/src/xython/xy_auto.py +0 -0
- {xython-4.0.3 → xython-4.0.5}/src/xython/xy_color.py +0 -0
- {xython-4.0.3 → xython-4.0.5}/src/xython/xy_common.py +0 -0
- {xython-4.0.3 → xython-4.0.5}/src/xython/xy_db.py +0 -0
- {xython-4.0.3 → xython-4.0.5}/src/xython/xy_excel.py +0 -0
- {xython-4.0.3 → xython-4.0.5}/src/xython/xy_excel_event.py +0 -0
- {xython-4.0.3 → xython-4.0.5}/src/xython/xy_grid.py +0 -0
- {xython-4.0.3 → xython-4.0.5}/src/xython/xy_list.py +0 -0
- {xython-4.0.3 → xython-4.0.5}/src/xython/xy_map.py +0 -0
- {xython-4.0.3 → xython-4.0.5}/src/xython/xy_outlook.py +0 -0
- {xython-4.0.3 → xython-4.0.5}/src/xython/xy_re.py +0 -0
- {xython-4.0.3 → xython-4.0.5}/src/xython/xy_time.py +0 -0
- {xython-4.0.3 → xython-4.0.5}/src/xython/xy_util.py +0 -0
- {xython-4.0.3 → xython-4.0.5}/src/xython.egg-info/SOURCES.txt +0 -0
- {xython-4.0.3 → xython-4.0.5}/src/xython.egg-info/dependency_links.txt +0 -0
- {xython-4.0.3 → xython-4.0.5}/src/xython.egg-info/not-zip-safe +0 -0
- {xython-4.0.3 → xython-4.0.5}/src/xython.egg-info/requires.txt +0 -0
- {xython-4.0.3 → xython-4.0.5}/src/xython.egg-info/top_level.txt +0 -0
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: xython
|
|
3
|
-
Version: 4.0.
|
|
3
|
+
Version: 4.0.5
|
|
4
4
|
Summary: win32com + python + Office Automation = xython, (for easy automation for excel, word, outlook, regex, color, hwp, etc BY python & win32com)
|
|
5
5
|
Home-page: https://www.xython.co.kr
|
|
6
6
|
Author: s.j.park
|
|
7
7
|
Author-email: sjpkorea@naver.com
|
|
8
8
|
License: UNKNOWN
|
|
9
|
-
Download-URL: https://github.com/sjpark/xython/archive/v4.0.
|
|
9
|
+
Download-URL: https://github.com/sjpark/xython/archive/v4.0.5.tar.gz
|
|
10
10
|
Project-URL: Documentation, https://sjpkorea.github.io/xython.github.io/
|
|
11
11
|
Project-URL: Link 1, https://www.xython.co.kr
|
|
12
12
|
Platform: UNKNOWN
|
|
@@ -5,7 +5,7 @@ from setuptools import setup, find_packages
|
|
|
5
5
|
# long_description = fh.read()
|
|
6
6
|
setup(
|
|
7
7
|
name='xython',
|
|
8
|
-
version='4.0.
|
|
8
|
+
version='4.0.5',
|
|
9
9
|
url='https://www.xython.co.kr',
|
|
10
10
|
install_requires=['pandas',
|
|
11
11
|
'Pillow',
|
|
@@ -24,7 +24,7 @@ setup(
|
|
|
24
24
|
'selenium',
|
|
25
25
|
'pytest-shutil',
|
|
26
26
|
],
|
|
27
|
-
download_url='https://github.com/sjpark/xython/archive/v4.0.
|
|
27
|
+
download_url='https://github.com/sjpark/xython/archive/v4.0.5.tar.gz',
|
|
28
28
|
author='s.j.park',
|
|
29
29
|
author_email='sjpkorea@naver.com',
|
|
30
30
|
description="win32com + python + Office Automation = xython, (for easy automation for excel, word, outlook, regex, color, hwp, etc BY python & win32com)",
|
|
@@ -24,8 +24,8 @@ class xy_web:
|
|
|
24
24
|
:param time_sleep:
|
|
25
25
|
"""
|
|
26
26
|
#공통 변수들을 설정한다
|
|
27
|
-
self.
|
|
28
|
-
self.
|
|
27
|
+
self.xutil = xy_util.xy_util()
|
|
28
|
+
self.xre = xy_re.xy_re()
|
|
29
29
|
self.xvar_all_tag_name = ["checkbox", "div", "footer", "form", "head", "header", "i","iframe",
|
|
30
30
|
"img","input","li", "link", "meta", "nav", "ul", "ol", "a", "body",
|
|
31
31
|
"br", "button", "p", "span", "strong", "style", "table",
|
|
@@ -166,7 +166,7 @@ class xy_web:
|
|
|
166
166
|
:param input_text:
|
|
167
167
|
:return:
|
|
168
168
|
"""
|
|
169
|
-
is_num = self.
|
|
169
|
+
is_num = self.xre.is_number_only(input_text)
|
|
170
170
|
|
|
171
171
|
if is_num:
|
|
172
172
|
result = input_text
|
|
@@ -240,7 +240,7 @@ class xy_web:
|
|
|
240
240
|
input_list = input_text.split()
|
|
241
241
|
input_list_1 = list(input_list)
|
|
242
242
|
for one in input_list:
|
|
243
|
-
aaa = self.
|
|
243
|
+
aaa = self.xre.search_all_by_jf_sql("[숫자:1~][단어(px):0~1]", one)
|
|
244
244
|
if aaa:
|
|
245
245
|
temp[0] = aaa[0][0]
|
|
246
246
|
input_list_1.remove(one)
|
|
@@ -252,7 +252,7 @@ class xy_web:
|
|
|
252
252
|
if input_list_1:
|
|
253
253
|
temp[2] = input_list_1[0] + "; "
|
|
254
254
|
|
|
255
|
-
result = self.
|
|
255
|
+
result = self.xutil.change_list_1d_to_text_with_chain_word(temp, " ")
|
|
256
256
|
return result
|
|
257
257
|
|
|
258
258
|
def click_input_obj(self, input_obj):
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: xython
|
|
3
|
-
Version: 4.0.
|
|
3
|
+
Version: 4.0.5
|
|
4
4
|
Summary: win32com + python + Office Automation = xython, (for easy automation for excel, word, outlook, regex, color, hwp, etc BY python & win32com)
|
|
5
5
|
Home-page: https://www.xython.co.kr
|
|
6
6
|
Author: s.j.park
|
|
7
7
|
Author-email: sjpkorea@naver.com
|
|
8
8
|
License: UNKNOWN
|
|
9
|
-
Download-URL: https://github.com/sjpark/xython/archive/v4.0.
|
|
9
|
+
Download-URL: https://github.com/sjpark/xython/archive/v4.0.5.tar.gz
|
|
10
10
|
Project-URL: Documentation, https://sjpkorea.github.io/xython.github.io/
|
|
11
11
|
Project-URL: Link 1, https://www.xython.co.kr
|
|
12
12
|
Platform: UNKNOWN
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|