xython 4.5.8__tar.gz → 4.5.9__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 (28) hide show
  1. {xython-4.5.8/src/xython.egg-info → xython-4.5.9}/PKG-INFO +1 -1
  2. {xython-4.5.8 → xython-4.5.9}/pyproject.toml +1 -1
  3. {xython-4.5.8 → xython-4.5.9}/src/xython/xy_color.py +0 -3
  4. {xython-4.5.8 → xython-4.5.9}/src/xython/xy_excel.py +2042 -3934
  5. {xython-4.5.8 → xython-4.5.9}/src/xython/xy_outlook.py +17 -16
  6. {xython-4.5.8 → xython-4.5.9}/src/xython/xy_time.py +1 -12
  7. {xython-4.5.8 → xython-4.5.9}/src/xython/xy_util.py +87 -10
  8. {xython-4.5.8 → xython-4.5.9}/src/xython/xy_word.py +7 -18
  9. {xython-4.5.8 → xython-4.5.9/src/xython.egg-info}/PKG-INFO +1 -1
  10. {xython-4.5.8 → xython-4.5.9}/MANIFEST.in +0 -0
  11. {xython-4.5.8 → xython-4.5.9}/README.md +0 -0
  12. {xython-4.5.8 → xython-4.5.9}/requirements.txt +0 -0
  13. {xython-4.5.8 → xython-4.5.9}/setup.cfg +0 -0
  14. {xython-4.5.8 → xython-4.5.9}/src/xython/__init__.py +0 -0
  15. {xython-4.5.8 → xython-4.5.9}/src/xython/xy_auto.py +0 -0
  16. {xython-4.5.8 → xython-4.5.9}/src/xython/xy_chrome.py +0 -0
  17. {xython-4.5.8 → xython-4.5.9}/src/xython/xy_common.py +0 -0
  18. {xython-4.5.8 → xython-4.5.9}/src/xython/xy_db.py +0 -0
  19. {xython-4.5.8 → xython-4.5.9}/src/xython/xy_edge.py +0 -0
  20. {xython-4.5.8 → xython-4.5.9}/src/xython/xy_excel_event.py +0 -0
  21. {xython-4.5.8 → xython-4.5.9}/src/xython/xy_hwp.py +0 -0
  22. {xython-4.5.8 → xython-4.5.9}/src/xython/xy_list.py +0 -0
  23. {xython-4.5.8 → xython-4.5.9}/src/xython/xy_map.py +0 -0
  24. {xython-4.5.8 → xython-4.5.9}/src/xython/xy_re.py +0 -0
  25. {xython-4.5.8 → xython-4.5.9}/src/xython.egg-info/SOURCES.txt +0 -0
  26. {xython-4.5.8 → xython-4.5.9}/src/xython.egg-info/dependency_links.txt +0 -0
  27. {xython-4.5.8 → xython-4.5.9}/src/xython.egg-info/requires.txt +0 -0
  28. {xython-4.5.8 → xython-4.5.9}/src/xython.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: xython
3
- Version: 4.5.8
3
+ Version: 4.5.9
4
4
  Summary: xython package
5
5
  Author-email: "SJ.Park" <sjpkorea@naver.com>
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "xython"
7
- version = "4.5.8"
7
+ version = "4.5.9"
8
8
  description = "xython package"
9
9
  readme = {file = "README.md", content-type = "text/markdown"}
10
10
  requires-python = ">=3.8"
@@ -2620,9 +2620,6 @@ class xy_color:
2620
2620
  """
2621
2621
  xcolor값을 "rgb(255, 0, 0)"의 형식으로 바꾸는 것
2622
2622
  folium의 rgb값의 형식은 이런식으로 넣어주어야 한다
2623
-
2624
- :param input_xcolor:
2625
- :return:
2626
2623
  """
2627
2624
 
2628
2625
  rgb_list = self.to_rgb(input_xcolor)