xython 4.0.6__tar.gz → 4.0.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 (38) hide show
  1. {xython-4.0.6/src/xython.egg-info → xython-4.0.7}/PKG-INFO +2 -2
  2. {xython-4.0.6 → xython-4.0.7}/setup.py +2 -2
  3. {xython-4.0.6 → xython-4.0.7}/src/xython/__init__.py +1 -1
  4. {xython-4.0.6 → xython-4.0.7}/src/xython/xy_auto.py +1088 -612
  5. {xython-4.0.6 → xython-4.0.7}/src/xython/xy_color.py +48 -5
  6. {xython-4.0.6 → xython-4.0.7}/src/xython/xy_common.py +107 -864
  7. {xython-4.0.6 → xython-4.0.7}/src/xython/xy_excel.py +4957 -5140
  8. {xython-4.0.6 → xython-4.0.7}/src/xython/xy_hwp.py +18 -19
  9. {xython-4.0.6 → xython-4.0.7}/src/xython/xy_list.py +44 -44
  10. {xython-4.0.6 → xython-4.0.7}/src/xython/xy_re.py +121 -42
  11. {xython-4.0.6 → xython-4.0.7}/src/xython/xy_time.py +665 -596
  12. {xython-4.0.6 → xython-4.0.7}/src/xython/xy_util.py +2786 -2180
  13. {xython-4.0.6 → xython-4.0.7}/src/xython/xy_word.py +225 -210
  14. {xython-4.0.6 → xython-4.0.7/src/xython.egg-info}/PKG-INFO +2 -2
  15. {xython-4.0.6 → xython-4.0.7}/MANIFEST.in +0 -0
  16. {xython-4.0.6 → xython-4.0.7}/README.md +0 -0
  17. {xython-4.0.6 → xython-4.0.7}/requirements.txt +0 -0
  18. {xython-4.0.6 → xython-4.0.7}/setup.cfg +0 -0
  19. {xython-4.0.6 → xython-4.0.7}/src/xython/xy_common_hwp.py +0 -0
  20. {xython-4.0.6 → xython-4.0.7}/src/xython/xy_common_map.py +0 -0
  21. {xython-4.0.6 → xython-4.0.7}/src/xython/xy_db.py +0 -0
  22. {xython-4.0.6 → xython-4.0.7}/src/xython/xy_example.py +0 -0
  23. {xython-4.0.6 → xython-4.0.7}/src/xython/xy_excel_event.py +0 -0
  24. {xython-4.0.6 → xython-4.0.7}/src/xython/xy_grid.py +0 -0
  25. {xython-4.0.6 → xython-4.0.7}/src/xython/xy_grid_model.py +0 -0
  26. {xython-4.0.6 → xython-4.0.7}/src/xython/xy_grid_original.py +0 -0
  27. {xython-4.0.6 → xython-4.0.7}/src/xython/xy_grid_widget.py +0 -0
  28. {xython-4.0.6 → xython-4.0.7}/src/xython/xy_hwp_common.py +0 -0
  29. {xython-4.0.6 → xython-4.0.7}/src/xython/xy_map.py +0 -0
  30. {xython-4.0.6 → xython-4.0.7}/src/xython/xy_map_common.py +0 -0
  31. {xython-4.0.6 → xython-4.0.7}/src/xython/xy_outlook.py +0 -0
  32. {xython-4.0.6 → xython-4.0.7}/src/xython/xy_util2.py +0 -0
  33. {xython-4.0.6 → xython-4.0.7}/src/xython/xy_web.py +0 -0
  34. {xython-4.0.6 → xython-4.0.7}/src/xython.egg-info/SOURCES.txt +0 -0
  35. {xython-4.0.6 → xython-4.0.7}/src/xython.egg-info/dependency_links.txt +0 -0
  36. {xython-4.0.6 → xython-4.0.7}/src/xython.egg-info/not-zip-safe +0 -0
  37. {xython-4.0.6 → xython-4.0.7}/src/xython.egg-info/requires.txt +0 -0
  38. {xython-4.0.6 → xython-4.0.7}/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.6
3
+ Version: 4.0.7
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.6.tar.gz
9
+ Download-URL: https://github.com/sjpark/xython/archive/v4.0.7.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.6',
8
+ version='4.0.7',
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.6.tar.gz',
27
+ download_url='https://github.com/sjpark/xython/archive/v4.0.7.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.6' #1
9
+ __version__ = '4.0.7' #1
10
10
  real_path = os.path.dirname(os.path.abspath(__file__)).replace("\\","/") #2
11
11
  sys.path.append(real_path)
12
12