xlin 0.1.3__tar.gz → 0.1.4__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.
- {xlin-0.1.3 → xlin-0.1.4}/PKG-INFO +1 -1
- {xlin-0.1.3 → xlin-0.1.4}/pyproject.toml +1 -1
- {xlin-0.1.3 → xlin-0.1.4}/xlin/multiprocess_mapping.py +2 -2
- {xlin-0.1.3 → xlin-0.1.4}/LICENSE +0 -0
- {xlin-0.1.3 → xlin-0.1.4}/README.md +0 -0
- {xlin-0.1.3 → xlin-0.1.4}/xlin/__init__.py +0 -0
- {xlin-0.1.3 → xlin-0.1.4}/xlin/ischinese.py +0 -0
- {xlin-0.1.3 → xlin-0.1.4}/xlin/jsonl.py +0 -0
- {xlin-0.1.3 → xlin-0.1.4}/xlin/read_as_dataframe.py +0 -0
- {xlin-0.1.3 → xlin-0.1.4}/xlin/statistic.py +0 -0
- {xlin-0.1.3 → xlin-0.1.4}/xlin/terminal_color.py +0 -0
- {xlin-0.1.3 → xlin-0.1.4}/xlin/util.py +0 -0
- {xlin-0.1.3 → xlin-0.1.4}/xlin/uuid.py +0 -0
- {xlin-0.1.3 → xlin-0.1.4}/xlin/xls2xlsx.py +0 -0
- {xlin-0.1.3 → xlin-0.1.4}/xlin/yaml.py +0 -0
@@ -130,7 +130,7 @@ def multiprocessing_mapping(
|
|
130
130
|
|
131
131
|
def dataframe_with_row_mapping(
|
132
132
|
df: pd.DataFrame,
|
133
|
-
mapping_func: Callable[[int, dict], Tuple[bool, dict]],
|
133
|
+
mapping_func: Callable[[Tuple[int, dict]], Tuple[bool, dict]],
|
134
134
|
use_multiprocessing=True,
|
135
135
|
thread_pool_size=int(os.getenv("THREAD_POOL_SIZE", 5)),
|
136
136
|
):
|
@@ -153,7 +153,7 @@ def dataframe_with_row_mapping(
|
|
153
153
|
|
154
154
|
def list_with_element_mapping(
|
155
155
|
iterator: List[Any],
|
156
|
-
mapping_func: Callable[[int, Any], Tuple[bool, Any]],
|
156
|
+
mapping_func: Callable[[Tuple[int, Any]], Tuple[bool, Any]],
|
157
157
|
use_multiprocessing=True,
|
158
158
|
thread_pool_size=int(os.getenv("THREAD_POOL_SIZE", 5)),
|
159
159
|
):
|
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
|