python-table-processor 0.3.12__py3-none-any.whl → 0.4.0__py3-none-any.whl

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: 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
 
@@ -1,4 +1,4 @@
1
- table_processor/__init__.py,sha256=C_N1IcjNNCB7P46AT3oYEFKtst2Syoxy6Y823dznVKI,101
1
+ table_processor/__init__.py,sha256=epc-I6wBj0_eoRu0jzlx4QMUD4ab-c0KXk8aJ_EZMJg,681
2
2
  table_processor/cli.py,sha256=uluf_VsBzq3Ldxh3ePGseSrv8--lI7huu-6RjDaHPPg,2170
3
3
  table_processor/commands/convert_tables.py,sha256=w4IZftSlrbt-BMPjldULT_616LSiNE3h7GmrFF7K5OM,2276
4
4
  table_processor/commands/merge_tables.py,sha256=fIk3e-Qbdj3QtOXetC4ItbJs9NfBHVsraRhdfnpy2RQ,2194
@@ -22,8 +22,8 @@ table_processor/core/io/loader.py,sha256=HtHZIY396aGMNpPgvSURLNteMJTTD1uTdMabsAw
22
22
  table_processor/core/io/saver.py,sha256=W9pxgx30E8IAq3WwxOA-t0VP22DgSCw7i5lFWZPoMqg,627
23
23
  table_processor/core/merge.py,sha256=9vk55j7WOP7mbzqXJ5wVxNO7W3c0RM3Vwck8g6TZChM,6019
24
24
  table_processor/core/types.py,sha256=76Fn1PQgO03Swe7E_zFLjusbQ6w9sfxzsL08uHS21hE,2919
25
- python_table_processor-0.3.12.dist-info/LICENSE,sha256=1_Gn0I1neLPxDLfLiHEyxjDg-pbAra1p2iHEqutGS_c,1068
26
- python_table_processor-0.3.12.dist-info/METADATA,sha256=ocXqsLZCnCgPN7uFQ_uu51IE54DYEvTH8UrTii8IJF8,1099
27
- python_table_processor-0.3.12.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
28
- python_table_processor-0.3.12.dist-info/entry_points.txt,sha256=lq97F6m51yZ93qmVIqkUHJfbILZuYLxrMWXSqrP4JpM,118
29
- python_table_processor-0.3.12.dist-info/RECORD,,
25
+ python_table_processor-0.4.0.dist-info/LICENSE,sha256=1_Gn0I1neLPxDLfLiHEyxjDg-pbAra1p2iHEqutGS_c,1068
26
+ python_table_processor-0.4.0.dist-info/METADATA,sha256=25tRQywhMNIlwDYc_8Xyh9vuAndVVnKAwp8YKVGt_uM,1509
27
+ python_table_processor-0.4.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
28
+ python_table_processor-0.4.0.dist-info/entry_points.txt,sha256=lq97F6m51yZ93qmVIqkUHJfbILZuYLxrMWXSqrP4JpM,118
29
+ python_table_processor-0.4.0.dist-info/RECORD,,
@@ -1,5 +1,19 @@
1
- __version__ = "0.3.12"
2
- __version_tuple__ = (0, 3, 12)
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)
3
17
 
4
18
  from . core.io import (
5
19
  load,