xython 3.3.2__tar.gz → 3.3.3__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-3.3.2/src/xython.egg-info → xython-3.3.3}/PKG-INFO +2 -2
  2. {xython-3.3.2 → xython-3.3.3}/setup.py +2 -2
  3. {xython-3.3.2 → xython-3.3.3}/src/xython/__init__.py +1 -1
  4. {xython-3.3.2 → xython-3.3.3}/src/xython/anydb.py +559 -237
  5. {xython-3.3.2 → xython-3.3.3}/src/xython/basic_data.py +1288 -718
  6. {xython-3.3.2 → xython-3.3.3}/src/xython/ganada.py +460 -191
  7. {xython-3.3.2 → xython-3.3.3}/src/xython/han.py +1444 -597
  8. {xython-3.3.2 → xython-3.3.3}/src/xython/jfinder.py +453 -401
  9. {xython-3.3.2 → xython-3.3.3}/src/xython/mailmail.py +864 -648
  10. xython-3.3.3/src/xython/mygrid.py +3814 -0
  11. {xython-3.3.2 → xython-3.3.3}/src/xython/pcell.py +4811 -4902
  12. {xython-3.3.2 → xython-3.3.3}/src/xython/pcell_event.py +266 -40
  13. {xython-3.3.2 → xython-3.3.3}/src/xython/pyclick.py +12 -12
  14. {xython-3.3.2 → xython-3.3.3}/src/xython/pynal.py +563 -361
  15. xython-3.3.3/src/xython/scolor.py +3106 -0
  16. {xython-3.3.2 → xython-3.3.3}/src/xython/xy_list.py +179 -50
  17. {xython-3.3.2 → xython-3.3.3}/src/xython/xy_map.py +222 -46
  18. {xython-3.3.2 → xython-3.3.3}/src/xython/xy_web.py +277 -0
  19. {xython-3.3.2 → xython-3.3.3}/src/xython/youtil.py +3114 -3594
  20. {xython-3.3.2 → xython-3.3.3/src/xython.egg-info}/PKG-INFO +2 -2
  21. {xython-3.3.2 → xython-3.3.3}/src/xython.egg-info/SOURCES.txt +1 -0
  22. xython-3.3.2/src/xython/scolor.py +0 -1833
  23. {xython-3.3.2 → xython-3.3.3}/MANIFEST.in +0 -0
  24. {xython-3.3.2 → xython-3.3.3}/README.md +0 -0
  25. {xython-3.3.2 → xython-3.3.3}/requirements.txt +0 -0
  26. {xython-3.3.2 → xython-3.3.3}/setup.cfg +0 -0
  27. {xython-3.3.2 → xython-3.3.3}/src/xython/basic_data_for_han.py +0 -0
  28. {xython-3.3.2 → xython-3.3.3}/src/xython/basic_data_for_xymap.py +0 -0
  29. {xython-3.3.2 → xython-3.3.3}/src/xython.egg-info/dependency_links.txt +0 -0
  30. {xython-3.3.2 → xython-3.3.3}/src/xython.egg-info/not-zip-safe +0 -0
  31. {xython-3.3.2 → xython-3.3.3}/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: 3.3.2
3
+ Version: 3.3.3
4
4
  Summary: 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/v3.3.2.tar.gz
9
+ Download-URL: https://github.com/sjpark/xython/archive/v3.3.3.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,10 +5,10 @@ from setuptools import setup, find_packages
5
5
  # long_description = fh.read()
6
6
  setup(
7
7
  name='xython',
8
- version='3.3.2',
8
+ version='3.3.3',
9
9
  url='https://www.xython.co.kr',
10
10
  install_requires=['' ],
11
- download_url='https://github.com/sjpark/xython/archive/v3.3.2.tar.gz',
11
+ download_url='https://github.com/sjpark/xython/archive/v3.3.3.tar.gz',
12
12
  author='s.j.park',
13
13
  author_email='sjpkorea@naver.com',
14
14
  description="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__ = '3.3.2.'
9
+ __version__ = '3.3.3.'
10
10
  real_path = os.path.dirname(os.path.abspath(__file__)).replace("\\","/")
11
11
  sys.path.append(real_path)
12
12