tab-cli 0.1.1__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.
@@ -0,0 +1,27 @@
1
+ Metadata-Version: 2.4
2
+ Name: tab-cli
3
+ Version: 0.1.1
4
+ Summary: A CLI tool for tabular data
5
+ Author-email: Tongfei Chen <tongfei@pm.me>
6
+ License-File: LICENSE
7
+ Requires-Python: >=3.10
8
+ Requires-Dist: blobfile>=3.0
9
+ Requires-Dist: fsspec>=2025.1.0
10
+ Requires-Dist: loguru>=0.7.3
11
+ Requires-Dist: polars-fastavro>=0.5.1
12
+ Requires-Dist: polars>=1.0
13
+ Requires-Dist: pyarrow>=15.0
14
+ Requires-Dist: rich>=13.0
15
+ Requires-Dist: typer>=0.21.1
16
+ Provides-Extra: azure
17
+ Requires-Dist: adlfs>=2025.1.0; extra == 'azure'
18
+ Requires-Dist: azure-identity>=1.10.0; extra == 'azure'
19
+ Provides-Extra: gcs
20
+ Requires-Dist: gcsfs>=2025.1.0; extra == 'gcs'
21
+ Provides-Extra: s3
22
+ Requires-Dist: s3fs>=2025.1.0; extra == 's3'
23
+ Description-Content-Type: text/markdown
24
+
25
+ # tab
26
+
27
+ A CLI tool for viewing, querying, and converting tabular data files. Supports AWS / Azure / Google Cloud Storage URLs.
@@ -0,0 +1,26 @@
1
+ tab_cli/__init__.py,sha256=kv9r_1llnZcPetQho9_lKn0PPGqKMm99b1BIXQ195Mo,68
2
+ tab_cli/cli.py,sha256=C9yZgrd7EsYaaVPO3d3MEPKnIUeUQj1o7qN8LkzmQ2M,6237
3
+ tab_cli/config.py,sha256=Zt7cqZhrPqPLECogB1EAub29vsTseK1mLGnUl49348Y,247
4
+ tab_cli/style.py,sha256=pDc2p4RxWgEk2n3dgkg9us40hIrqC1nJ5dyuDPHjWCA,117
5
+ tab_cli/url_parser.py,sha256=4-1gLBa-6AHlNJtCXR-MkTzMI446Qase3_lLmE7kUDg,3720
6
+ tab_cli/formats/__init__.py,sha256=3pu_1BqCcut5EMOPLKpiaDa08oFX1v1v8z7dSeVufKQ,401
7
+ tab_cli/formats/avro.py,sha256=OH4-qPi00tYrUOXblt-ZGBJ7DtcvXbKjFN-saSKJgtw,1666
8
+ tab_cli/formats/base.py,sha256=dZIs05RWygpKQmAFPh3BOfhS6UqKVGpWSiWAKLn9D5g,1986
9
+ tab_cli/formats/csv.py,sha256=ONouTH64BzpGpmDHkUn-3EGpDgWHNjA9hipvHC2MTvA,1684
10
+ tab_cli/formats/jsonl.py,sha256=IuDJQJqzFlbjIwruEyEonPYrXFF6gwkrxmJtS1OupDQ,1493
11
+ tab_cli/formats/parquet.py,sha256=MXQrqMx-vUcoR0Hs4WWowNW0uabTk-azLU6OmTEOPSk,1965
12
+ tab_cli/handlers/__init__.py,sha256=9N3OdgJSnMKdm84T1VhXuu_dBgZCtFBJE62HznJ0Qrk,2807
13
+ tab_cli/handlers/base.py,sha256=5MXgiDiUYtK52Yg_JSDhpvxTOceEzmtKozObJR0wxog,9553
14
+ tab_cli/handlers/cli_table.py,sha256=ZRKs8vxmyCJ9NJ7RLvLtRfPLfZ0pgdht9OfJGjwbBsc,1730
15
+ tab_cli/storage/__init__.py,sha256=WLhCe3aGqai9Z_UCFwpa7vAPAjdCCyD5bbXPB_08iB0,2589
16
+ tab_cli/storage/aws.py,sha256=ZQd1_CuMgWnp84rVu8RfTUpxXTnRLpTRzY03bRveQ5Q,8675
17
+ tab_cli/storage/az.py,sha256=QwSFezYst7wId_EyoSTNIgR2l-9lP8565ZsxP1tLVzk,10075
18
+ tab_cli/storage/base.py,sha256=ZzVFRKaoozNV35U9yY7ChxBSw_tS1QpBtqLw1br72RI,732
19
+ tab_cli/storage/fsspec.py,sha256=-mq-5Dp7FXwwONjBF2Y_MoMpv3kDLorDnOldfMyDHxc,2059
20
+ tab_cli/storage/gcloud.py,sha256=yhC1da0NdMmsDK0E0NIf_NlvuaFz3Nt-Yf6hgflkOkE,8435
21
+ tab_cli/storage/local.py,sha256=3wg723CD_ZnTW8IL49pvkk74ky5PkoHCj9bXsyH-tzc,743
22
+ tab_cli-0.1.1.dist-info/METADATA,sha256=74GhQWZzBqN61KcpiKZySRXyC0rNgR7M_MFY7VFQBl0,841
23
+ tab_cli-0.1.1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
24
+ tab_cli-0.1.1.dist-info/entry_points.txt,sha256=AnK493eeJawF0e80LwLfxVFb7XYaqdfzPnbbOkJKqf8,41
25
+ tab_cli-0.1.1.dist-info/licenses/LICENSE,sha256=DpxzhpnuUfj21GZpi0BApNVTwBHcwYLADIuYW7gPL4w,1069
26
+ tab_cli-0.1.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.28.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ tab = tab_cli.cli:main
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Tongfei Chen
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.