upplib 3.3.0__tar.gz → 3.3.1__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 (30) hide show
  1. {upplib-3.3.0 → upplib-3.3.1}/PKG-INFO +1 -1
  2. {upplib-3.3.0 → upplib-3.3.1}/upplib/file_text.py +9 -9
  3. {upplib-3.3.0 → upplib-3.3.1}/upplib.egg-info/PKG-INFO +1 -1
  4. {upplib-3.3.0 → upplib-3.3.1}/LICENSE +0 -0
  5. {upplib-3.3.0 → upplib-3.3.1}/README.md +0 -0
  6. {upplib-3.3.0 → upplib-3.3.1}/pyproject.toml +0 -0
  7. {upplib-3.3.0 → upplib-3.3.1}/setup.cfg +0 -0
  8. {upplib-3.3.0 → upplib-3.3.1}/setup.py +0 -0
  9. {upplib-3.3.0 → upplib-3.3.1}/upplib/__init__.py +0 -0
  10. {upplib-3.3.0 → upplib-3.3.1}/upplib/chart.py +0 -0
  11. {upplib-3.3.0 → upplib-3.3.1}/upplib/chart_html.py +0 -0
  12. {upplib-3.3.0 → upplib-3.3.1}/upplib/clean_up_msg.py +0 -0
  13. {upplib-3.3.0 → upplib-3.3.1}/upplib/common_package.py +0 -0
  14. {upplib-3.3.0 → upplib-3.3.1}/upplib/config_data.py +0 -0
  15. {upplib-3.3.0 → upplib-3.3.1}/upplib/db.py +0 -0
  16. {upplib-3.3.0 → upplib-3.3.1}/upplib/file.py +0 -0
  17. {upplib-3.3.0 → upplib-3.3.1}/upplib/format_data.py +0 -0
  18. {upplib-3.3.0 → upplib-3.3.1}/upplib/http_util.py +0 -0
  19. {upplib-3.3.0 → upplib-3.3.1}/upplib/index.py +0 -0
  20. {upplib-3.3.0 → upplib-3.3.1}/upplib/mail.py +0 -0
  21. {upplib-3.3.0 → upplib-3.3.1}/upplib/mail_html.py +0 -0
  22. {upplib-3.3.0 → upplib-3.3.1}/upplib/markdown.py +0 -0
  23. {upplib-3.3.0 → upplib-3.3.1}/upplib/multi_thread.py +0 -0
  24. {upplib-3.3.0 → upplib-3.3.1}/upplib/query_log.py +0 -0
  25. {upplib-3.3.0 → upplib-3.3.1}/upplib/redis_tool.py +0 -0
  26. {upplib-3.3.0 → upplib-3.3.1}/upplib/util.py +0 -0
  27. {upplib-3.3.0 → upplib-3.3.1}/upplib.egg-info/SOURCES.txt +0 -0
  28. {upplib-3.3.0 → upplib-3.3.1}/upplib.egg-info/dependency_links.txt +0 -0
  29. {upplib-3.3.0 → upplib-3.3.1}/upplib.egg-info/requires.txt +0 -0
  30. {upplib-3.3.0 → upplib-3.3.1}/upplib.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: upplib
3
- Version: 3.3.0
3
+ Version: 3.3.1
4
4
  Summary: util
5
5
  Author: Luck
6
6
  Author-email: wantwaterfish@gmail.com
@@ -817,16 +817,16 @@ def to_list_from_txt(file_name: str = 'a.txt',
817
817
  # 读取文件中的数据,返回一个 str
818
818
  def to_str_from_file(file_name: str = 'a.txt',
819
819
  str_join: str = ' ',
820
- ignore_start_with: list | int | str | None = None,
821
- ignore_end_with: list | int | str | None = None,
820
+ line_ignore_start_with: list | int | str | None = None,
821
+ line_ignore_end_with: list | int | str | None = None,
822
822
  start_index: int = None,
823
823
  start_line: str = None,
824
824
  end_index: int = None,
825
825
  end_line: str = None,
826
826
  count: int = None) -> str:
827
827
  return to_data_from_file(file_name=file_name,
828
- ignore_start_with=ignore_start_with,
829
- ignore_end_with=ignore_end_with,
828
+ line_ignore_start_with=line_ignore_start_with,
829
+ line_ignore_end_with=line_ignore_end_with,
830
830
  str_join=str_join,
831
831
  start_index=start_index,
832
832
  start_line=start_line,
@@ -848,7 +848,7 @@ def to_json_from_file(file_name: str = 'a.txt',
848
848
  start_line=start_line,
849
849
  end_index=end_index,
850
850
  end_line=end_line,
851
- ignore_start_with=['//', '/*', '#'],
851
+ line_ignore_start_with=['//', '/*', '#'],
852
852
  count=count,
853
853
  r_json=True)
854
854
 
@@ -857,8 +857,8 @@ def to_data_from_file(file_name: str = 'a.txt',
857
857
  sep: str = None,
858
858
  sep_line: str = None,
859
859
  sep_all: str = None,
860
- ignore_start_with: list | int | str | None = None,
861
- ignore_end_with: list | int | str | None = None,
860
+ line_ignore_start_with: list | int | str | None = None,
861
+ line_ignore_end_with: list | int | str | None = None,
862
862
  start_index: int = None,
863
863
  start_line: str = None,
864
864
  end_index: int = None,
@@ -881,8 +881,8 @@ def to_data_from_file(file_name: str = 'a.txt',
881
881
  sep=sep,
882
882
  sep_line=sep_line,
883
883
  sep_all=sep_all,
884
- ignore_start_with=ignore_start_with,
885
- ignore_end_with=ignore_end_with,
884
+ line_ignore_start_with=line_ignore_start_with,
885
+ line_ignore_end_with=line_ignore_end_with,
886
886
  start_index=start_index,
887
887
  start_line=start_line,
888
888
  end_index=end_index,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: upplib
3
- Version: 3.3.0
3
+ Version: 3.3.1
4
4
  Summary: util
5
5
  Author: Luck
6
6
  Author-email: wantwaterfish@gmail.com
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
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes