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.
Files changed (31) hide show
  1. {xython-4.0.3/src/xython.egg-info → xython-4.0.5}/PKG-INFO +2 -2
  2. {xython-4.0.3 → xython-4.0.5}/setup.py +2 -2
  3. {xython-4.0.3 → xython-4.0.5}/src/xython/__init__.py +1 -1
  4. {xython-4.0.3 → xython-4.0.5}/src/xython/xy_common_hwp.py +1 -1
  5. {xython-4.0.3 → xython-4.0.5}/src/xython/xy_common_map.py +1 -1
  6. {xython-4.0.3 → xython-4.0.5}/src/xython/xy_hwp.py +1 -1
  7. {xython-4.0.3 → xython-4.0.5}/src/xython/xy_web.py +5 -5
  8. {xython-4.0.3 → xython-4.0.5}/src/xython/xy_word.py +1 -1
  9. {xython-4.0.3 → xython-4.0.5/src/xython.egg-info}/PKG-INFO +2 -2
  10. {xython-4.0.3 → xython-4.0.5}/MANIFEST.in +0 -0
  11. {xython-4.0.3 → xython-4.0.5}/README.md +0 -0
  12. {xython-4.0.3 → xython-4.0.5}/requirements.txt +0 -0
  13. {xython-4.0.3 → xython-4.0.5}/setup.cfg +0 -0
  14. {xython-4.0.3 → xython-4.0.5}/src/xython/xy_auto.py +0 -0
  15. {xython-4.0.3 → xython-4.0.5}/src/xython/xy_color.py +0 -0
  16. {xython-4.0.3 → xython-4.0.5}/src/xython/xy_common.py +0 -0
  17. {xython-4.0.3 → xython-4.0.5}/src/xython/xy_db.py +0 -0
  18. {xython-4.0.3 → xython-4.0.5}/src/xython/xy_excel.py +0 -0
  19. {xython-4.0.3 → xython-4.0.5}/src/xython/xy_excel_event.py +0 -0
  20. {xython-4.0.3 → xython-4.0.5}/src/xython/xy_grid.py +0 -0
  21. {xython-4.0.3 → xython-4.0.5}/src/xython/xy_list.py +0 -0
  22. {xython-4.0.3 → xython-4.0.5}/src/xython/xy_map.py +0 -0
  23. {xython-4.0.3 → xython-4.0.5}/src/xython/xy_outlook.py +0 -0
  24. {xython-4.0.3 → xython-4.0.5}/src/xython/xy_re.py +0 -0
  25. {xython-4.0.3 → xython-4.0.5}/src/xython/xy_time.py +0 -0
  26. {xython-4.0.3 → xython-4.0.5}/src/xython/xy_util.py +0 -0
  27. {xython-4.0.3 → xython-4.0.5}/src/xython.egg-info/SOURCES.txt +0 -0
  28. {xython-4.0.3 → xython-4.0.5}/src/xython.egg-info/dependency_links.txt +0 -0
  29. {xython-4.0.3 → xython-4.0.5}/src/xython.egg-info/not-zip-safe +0 -0
  30. {xython-4.0.3 → xython-4.0.5}/src/xython.egg-info/requires.txt +0 -0
  31. {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
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.3.tar.gz
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.3',
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.3.tar.gz',
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)",
@@ -6,7 +6,7 @@ import inspect
6
6
  import os
7
7
  import sys
8
8
 
9
- __version__ = '4.0.3' #1
9
+ __version__ = '4.0.5' #1
10
10
  real_path = os.path.dirname(os.path.abspath(__file__)).replace("\\","/") #2
11
11
  sys.path.append(real_path)
12
12
 
@@ -1,6 +1,6 @@
1
1
  # -*- coding: utf-8 -*-
2
2
 
3
- class basic_data:
3
+ class xy_common_hwp:
4
4
 
5
5
  def __init__(self):
6
6
  """
@@ -1,5 +1,5 @@
1
1
  # -*- coding: utf-8 -*-
2
- class basic_data:
2
+ class xy_common_map:
3
3
  def __init__(self):
4
4
  self.xvar = [
5
5
  [0, '강원도', '강릉시', '', '주문진읍', '교항리', 37.883872, 128.823886, '강원도 강릉시 주문진읍 교항리'],
@@ -4,7 +4,7 @@ import pythoncom
4
4
 
5
5
  import xy_color, xy_time, xy_common
6
6
 
7
- class han:
7
+ class xy_hwp:
8
8
  def ___terms___(self):
9
9
  """
10
10
  현재의 용어는 가능하면 cursor로 사용한다 (커서가 있는곳을 의미)
@@ -24,8 +24,8 @@ class xy_web:
24
24
  :param time_sleep:
25
25
  """
26
26
  #공통 변수들을 설정한다
27
- self.util = xy_util.xy_util()
28
- self.xyre = xy_re.xy_re()
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.xyre.is_number_only(input_text)
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.xyre.search_all_by_jf_sql("[숫자:1~][단어(px):0~1]", one)
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.util.change_list_1d_to_text_with_chain_word(temp, " ")
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):
@@ -5,7 +5,7 @@ import xy_re, xy_color, xy_common # xython 모듈
5
5
  import win32com.client # pywin32의 모듈
6
6
  from PIL import Image
7
7
 
8
- class ganada:
8
+ class xy_word:
9
9
 
10
10
  def __init__(self, file_name=""):
11
11
  """
@@ -1,12 +1,12 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: xython
3
- Version: 4.0.3
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.3.tar.gz
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