xython 3.0.5__tar.gz → 3.1.0__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 (26) hide show
  1. {xython-3.0.5/src/xython.egg-info → xython-3.1.0}/PKG-INFO +2 -2
  2. {xython-3.0.5 → xython-3.1.0}/setup.py +2 -2
  3. {xython-3.0.5 → xython-3.1.0}/src/xython/__init__.py +1 -1
  4. {xython-3.0.5 → xython-3.1.0}/src/xython/anydb.py +690 -345
  5. {xython-3.0.5 → xython-3.1.0}/src/xython/basic_data.py +397 -1
  6. xython-3.1.0/src/xython/ganada.py +5799 -0
  7. {xython-3.0.5 → xython-3.1.0}/src/xython/han.py +337 -114
  8. {xython-3.0.5 → xython-3.1.0}/src/xython/jfinder.py +0 -1
  9. {xython-3.0.5 → xython-3.1.0}/src/xython/mailmail.py +2 -3
  10. {xython-3.0.5 → xython-3.1.0}/src/xython/pcell.py +72 -12
  11. {xython-3.0.5 → xython-3.1.0}/src/xython/pyclick.py +1 -2
  12. {xython-3.0.5 → xython-3.1.0}/src/xython/pynal.py +27 -16
  13. {xython-3.0.5 → xython-3.1.0}/src/xython/scolor.py +2 -3
  14. {xython-3.0.5 → xython-3.1.0}/src/xython/xy_list.py +0 -1
  15. {xython-3.0.5 → xython-3.1.0}/src/xython/youtil.py +1399 -771
  16. {xython-3.0.5 → xython-3.1.0/src/xython.egg-info}/PKG-INFO +2 -2
  17. xython-3.0.5/src/xython/ganada.py +0 -3675
  18. {xython-3.0.5 → xython-3.1.0}/MANIFEST.in +0 -0
  19. {xython-3.0.5 → xython-3.1.0}/README.md +0 -0
  20. {xython-3.0.5 → xython-3.1.0}/requirements.txt +0 -0
  21. {xython-3.0.5 → xython-3.1.0}/setup.cfg +0 -0
  22. {xython-3.0.5 → xython-3.1.0}/src/xython/pcell_event.py +0 -0
  23. {xython-3.0.5 → xython-3.1.0}/src/xython.egg-info/SOURCES.txt +0 -0
  24. {xython-3.0.5 → xython-3.1.0}/src/xython.egg-info/dependency_links.txt +0 -0
  25. {xython-3.0.5 → xython-3.1.0}/src/xython.egg-info/not-zip-safe +0 -0
  26. {xython-3.0.5 → xython-3.1.0}/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.0.5
3
+ Version: 3.1.0
4
4
  Summary: EXCEL, WORD, OUTLOOK, REGEX, COLORING, HWP BY PYTHON
5
5
  Home-page: https://www.xython.co.kr
6
6
  Author: sjpkorea
7
7
  Author-email: sjpkorea@naver.com
8
8
  License: UNKNOWN
9
- Download-URL: https://github.com/sjpark/xython/archive/v3.0.2.tar.gz
9
+ Download-URL: https://github.com/sjpark/xython/archive/v3.1.0.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
  Description: ## About xython module / 개요
@@ -10,10 +10,10 @@ with open("README.md", "rt", encoding='UTF8') as fh:
10
10
  long_description = fh.read()
11
11
  setup(
12
12
  name='xython',
13
- version='3.0.5',
13
+ version='3.1.0',
14
14
  url='https://www.xython.co.kr',
15
15
  install_requires=['' ],
16
- download_url='https://github.com/sjpark/xython/archive/v3.0.2.tar.gz',
16
+ download_url='https://github.com/sjpark/xython/archive/v3.1.0.tar.gz',
17
17
  author='sjpkorea',
18
18
  author_email='sjpkorea@naver.com',
19
19
  description="EXCEL, WORD, OUTLOOK, REGEX, COLORING, HWP BY PYTHON",
@@ -6,7 +6,7 @@ import inspect
6
6
  import os
7
7
  import sys
8
8
 
9
- __version__ = '3.0.5'
9
+ __version__ = '3.1.0'
10
10
  real_path = os.path.dirname(os.path.abspath(__file__)).replace("\\","/")
11
11
  sys.path.append(real_path)
12
12