python-table-processor 0.3.12__tar.gz → 0.4.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.
- {python_table_processor-0.3.12 → python_table_processor-0.4.0}/PKG-INFO +15 -3
- python_table_processor-0.4.0/README.md +15 -0
- {python_table_processor-0.3.12 → python_table_processor-0.4.0}/pyproject.toml +2 -2
- python_table_processor-0.4.0/table_processor/__init__.py +21 -0
- python_table_processor-0.3.12/README.md +0 -3
- python_table_processor-0.3.12/table_processor/__init__.py +0 -7
- {python_table_processor-0.3.12 → python_table_processor-0.4.0}/LICENSE +0 -0
- {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/cli.py +0 -0
- {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/commands/convert_tables.py +0 -0
- {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/commands/merge_tables.py +0 -0
- {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/actions.py +0 -0
- {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/config.py +0 -0
- {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/constants.py +0 -0
- {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/convert.py +0 -0
- {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/functions/assign_id.py +0 -0
- {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/functions/flatten_row.py +0 -0
- {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/functions/get_nested_field_value.py +0 -0
- {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/functions/nest_row.py +0 -0
- {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/functions/search_column_value.py +0 -0
- {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/functions/set_flat_field_value.py +0 -0
- {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/functions/set_nested_field_value.py +0 -0
- {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/functions/set_row_value.py +0 -0
- {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/io/__init__.py +0 -0
- {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/io/io_csv.py +0 -0
- {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/io/io_excel.py +0 -0
- {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/io/io_json.py +0 -0
- {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/io/loader.py +0 -0
- {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/io/saver.py +0 -0
- {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/merge.py +0 -0
- {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/types.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: python-table-processor
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4.0
|
|
4
4
|
Summary: A table data processor
|
|
5
5
|
Home-page: https://github.com/akivajp/python-table-processor
|
|
6
6
|
License: MIT
|
|
@@ -22,7 +22,19 @@ Requires-Dist: xlsxwriter (>=3.2.0,<4.0.0)
|
|
|
22
22
|
Project-URL: Repository, https://github.com/akivajp/python-table-processor
|
|
23
23
|
Description-Content-Type: text/markdown
|
|
24
24
|
|
|
25
|
-
# Table Data
|
|
25
|
+
# Table Data Processor
|
|
26
26
|
|
|
27
|
-
This is
|
|
27
|
+
⚠️ **This repository is deprecated** ⚠️
|
|
28
|
+
|
|
29
|
+
This project has been renamed and migrated to [TabPro](https://github.com/akivajp/tabpro).
|
|
30
|
+
The Python package is now distributed as `tabpro` on PyPI.
|
|
31
|
+
|
|
32
|
+
```sh
|
|
33
|
+
pip install tabpro
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
## Migration Repository
|
|
37
|
+
- Repository: [TabPro](https://github.com/akivajp/tabpro)
|
|
38
|
+
- PyPI package: [tabpro](https://pypi.org/project/tabpro/)
|
|
39
|
+
- Description: A table data processor that supports bidirectional conversion between CSV, TSV, Excel, JSON, and JSON Lines formats, along with table merging, aggregation, sorting, and comparison operations.
|
|
28
40
|
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Table Data Processor
|
|
2
|
+
|
|
3
|
+
⚠️ **This repository is deprecated** ⚠️
|
|
4
|
+
|
|
5
|
+
This project has been renamed and migrated to [TabPro](https://github.com/akivajp/tabpro).
|
|
6
|
+
The Python package is now distributed as `tabpro` on PyPI.
|
|
7
|
+
|
|
8
|
+
```sh
|
|
9
|
+
pip install tabpro
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
## Migration Repository
|
|
13
|
+
- Repository: [TabPro](https://github.com/akivajp/tabpro)
|
|
14
|
+
- PyPI package: [tabpro](https://pypi.org/project/tabpro/)
|
|
15
|
+
- Description: A table data processor that supports bidirectional conversion between CSV, TSV, Excel, JSON, and JSON Lines formats, along with table merging, aggregation, sorting, and comparison operations.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "python-table-processor"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.4.0"
|
|
4
4
|
description = "A table data processor"
|
|
5
5
|
authors = ["Akiva Miura <akiva.miura@gmail.com>"]
|
|
6
6
|
license = "MIT"
|
|
@@ -11,7 +11,7 @@ packages = [
|
|
|
11
11
|
]
|
|
12
12
|
|
|
13
13
|
[tool.poetry-dynamic-versioning]
|
|
14
|
-
enable =
|
|
14
|
+
enable = true
|
|
15
15
|
style = "pep440"
|
|
16
16
|
|
|
17
17
|
[tool.poetry.scripts]
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# 旧パッケージは TabPro (https://github.com/akivajp/tabpro) に移行済み。
|
|
2
|
+
# import・CLI 実行時に移行を促す警告を表示する。
|
|
3
|
+
# ※ DeprecationWarning は Python のデフォルトフィルタで非表示になるため、
|
|
4
|
+
# デフォルトで表示される FutureWarning を使用している。
|
|
5
|
+
import warnings
|
|
6
|
+
|
|
7
|
+
warnings.warn(
|
|
8
|
+
"The 'python-table-processor' package has been renamed to 'tabpro'. "
|
|
9
|
+
"Please install the new package instead: pip install tabpro "
|
|
10
|
+
"(https://github.com/akivajp/tabpro)",
|
|
11
|
+
FutureWarning,
|
|
12
|
+
stacklevel=2,
|
|
13
|
+
)
|
|
14
|
+
|
|
15
|
+
__version__ = "0.4.0"
|
|
16
|
+
__version_tuple__ = (0, 4, 0)
|
|
17
|
+
|
|
18
|
+
from . core.io import (
|
|
19
|
+
load,
|
|
20
|
+
save,
|
|
21
|
+
)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/actions.py
RENAMED
|
File without changes
|
{python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/config.py
RENAMED
|
File without changes
|
{python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/constants.py
RENAMED
|
File without changes
|
{python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/convert.py
RENAMED
|
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
|
{python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/io/__init__.py
RENAMED
|
File without changes
|
{python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/io/io_csv.py
RENAMED
|
File without changes
|
{python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/io/io_excel.py
RENAMED
|
File without changes
|
{python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/io/io_json.py
RENAMED
|
File without changes
|
{python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/io/loader.py
RENAMED
|
File without changes
|
{python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/io/saver.py
RENAMED
|
File without changes
|
{python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/merge.py
RENAMED
|
File without changes
|
{python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/types.py
RENAMED
|
File without changes
|