xlin 0.1.0__tar.gz → 0.1.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: xlin
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: toolbox for LinXueyuan
5
5
  License: MIT
6
6
  Author: XiChen
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "xlin"
3
- version = "0.1.0"
3
+ version = "0.1.1"
4
4
  description = "toolbox for LinXueyuan"
5
5
  authors = ["XiChen <23211526+LinXueyuanStdio@users.noreply.github.com>"]
6
6
  license = "MIT"
File without changes
@@ -9,7 +9,7 @@ from pathlib import Path
9
9
  from tqdm import tqdm
10
10
  from loguru import logger
11
11
 
12
- from jsonl import dataframe_to_json_list, load_json_list, save_json_list, load_json, save_json
12
+ from xlin.jsonl import dataframe_to_json_list, load_json_list, save_json_list, load_json, save_json
13
13
 
14
14
 
15
15
  cpu_count = multiprocessing.cpu_count()
@@ -7,9 +7,9 @@ from loguru import logger
7
7
  import pandas as pd
8
8
  import pyexcel
9
9
 
10
- from util import ls
11
- from jsonl import dataframe_to_json_list, load_json, load_json_list, save_json_list
12
- from xls2xlsx import is_xslx
10
+ from xlin.util import ls
11
+ from xlin.jsonl import dataframe_to_json_list, load_json, load_json_list, save_json_list
12
+ from xlin.xls2xlsx import is_xslx
13
13
 
14
14
 
15
15
  def valid_to_read_as_dataframe(filename: str) -> bool:
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