cloudcat 0.1.1__tar.gz → 0.1.2__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cloudcat
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: A CLI utility to read and display files from cloud storage
5
5
  Home-page: https://github.com/yourusername/cloudcat
6
6
  Author: Your Name
@@ -2,4 +2,4 @@
2
2
  #!/usr/bin/env python
3
3
  """cloudcat - A CLI utility to read and display files from cloud storage."""
4
4
 
5
- __version__ = "0.1.1"
5
+ __version__ = "0.1.2"
@@ -270,16 +270,16 @@ def get_record_count(service, bucket, object_path, input_format):
270
270
 
271
271
 
272
272
  @click.command()
273
- @click.option('--path', required=True, help='Path to the file (gcs://... or s3://...)')
274
- @click.option('--output-format', type=click.Choice(['json', 'csv', 'table']), default='table',
273
+ @click.option('--path', '-p', required=True, help='Path to the file (gcs://... or s3://...)')
274
+ @click.option('--output-format', '-o', type=click.Choice(['json', 'csv', 'table']), default='table',
275
275
  help='Output format (default: table)')
276
- @click.option('--input-format', type=click.Choice(['json', 'csv', 'parquet']),
276
+ @click.option('--input-format', '-i', type=click.Choice(['json', 'csv', 'parquet']),
277
277
  help='Input format (default: inferred from path)')
278
- @click.option('--columns', help='Comma-separated list of columns to display (default: all)')
278
+ @click.option('--columns', '-c', help='Comma-separated list of columns to display (default: all)')
279
279
  @click.option('--num-rows', '-n', default=10, type=int, help='Number of rows to display (default: 10)')
280
- @click.option('--schema', type=click.Choice(['show', 'dont_show', 'schema_only']), default='show',
280
+ @click.option('--schema', '-s', type=click.Choice(['show', 'dont_show', 'schema_only']), default='show',
281
281
  help='Schema display option (default: show)')
282
- @click.option('--count', is_flag=True, help='Show record count at the end')
282
+ @click.option('--count', '-cn', is_flag=True, help='Show record count at the end')
283
283
  def main(path, output_format, input_format, columns, num_rows, schema, count):
284
284
  """Display data from files in Google Cloud Storage or AWS S3.
285
285
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cloudcat
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: A CLI utility to read and display files from cloud storage
5
5
  Home-page: https://github.com/yourusername/cloudcat
6
6
  Author: Your Name
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="cloudcat",
5
- version="0.1.1",
5
+ version="0.1.2",
6
6
  packages=find_packages(),
7
7
  include_package_data=True,
8
8
  install_requires=[
File without changes
File without changes
File without changes
File without changes