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.
Files changed (30) hide show
  1. {python_table_processor-0.3.12 → python_table_processor-0.4.0}/PKG-INFO +15 -3
  2. python_table_processor-0.4.0/README.md +15 -0
  3. {python_table_processor-0.3.12 → python_table_processor-0.4.0}/pyproject.toml +2 -2
  4. python_table_processor-0.4.0/table_processor/__init__.py +21 -0
  5. python_table_processor-0.3.12/README.md +0 -3
  6. python_table_processor-0.3.12/table_processor/__init__.py +0 -7
  7. {python_table_processor-0.3.12 → python_table_processor-0.4.0}/LICENSE +0 -0
  8. {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/cli.py +0 -0
  9. {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/commands/convert_tables.py +0 -0
  10. {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/commands/merge_tables.py +0 -0
  11. {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/actions.py +0 -0
  12. {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/config.py +0 -0
  13. {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/constants.py +0 -0
  14. {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/convert.py +0 -0
  15. {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/functions/assign_id.py +0 -0
  16. {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/functions/flatten_row.py +0 -0
  17. {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/functions/get_nested_field_value.py +0 -0
  18. {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/functions/nest_row.py +0 -0
  19. {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/functions/search_column_value.py +0 -0
  20. {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/functions/set_flat_field_value.py +0 -0
  21. {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/functions/set_nested_field_value.py +0 -0
  22. {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/functions/set_row_value.py +0 -0
  23. {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/io/__init__.py +0 -0
  24. {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/io/io_csv.py +0 -0
  25. {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/io/io_excel.py +0 -0
  26. {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/io/io_json.py +0 -0
  27. {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/io/loader.py +0 -0
  28. {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/io/saver.py +0 -0
  29. {python_table_processor-0.3.12 → python_table_processor-0.4.0}/table_processor/core/merge.py +0 -0
  30. {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.12
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 Converter
25
+ # Table Data Processor
26
26
 
27
- This is a python-based tool that converts tables from one format to another. It can convert tables from CSV, TSV, Excel, JSON, and JSON Lines to any of these formats.
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.12"
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 = false
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
+ )
@@ -1,3 +0,0 @@
1
- # Table Data Converter
2
-
3
- This is a python-based tool that converts tables from one format to another. It can convert tables from CSV, TSV, Excel, JSON, and JSON Lines to any of these formats.
@@ -1,7 +0,0 @@
1
- __version__ = "0.3.12"
2
- __version_tuple__ = (0, 3, 12)
3
-
4
- from . core.io import (
5
- load,
6
- save,
7
- )