cloudcat 0.2.3__tar.gz → 0.2.4__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.
- {cloudcat-0.2.3 → cloudcat-0.2.4}/PKG-INFO +1 -1
- {cloudcat-0.2.3 → cloudcat-0.2.4}/cloudcat/__init__.py +1 -1
- {cloudcat-0.2.3 → cloudcat-0.2.4}/cloudcat/cli.py +4 -0
- {cloudcat-0.2.3 → cloudcat-0.2.4}/cloudcat.egg-info/PKG-INFO +1 -1
- {cloudcat-0.2.3 → cloudcat-0.2.4}/LICENSE +0 -0
- {cloudcat-0.2.3 → cloudcat-0.2.4}/README.md +0 -0
- {cloudcat-0.2.3 → cloudcat-0.2.4}/cloudcat/compression.py +0 -0
- {cloudcat-0.2.3 → cloudcat-0.2.4}/cloudcat/config.py +0 -0
- {cloudcat-0.2.3 → cloudcat-0.2.4}/cloudcat/filtering.py +0 -0
- {cloudcat-0.2.3 → cloudcat-0.2.4}/cloudcat/formatters.py +0 -0
- {cloudcat-0.2.3 → cloudcat-0.2.4}/cloudcat/readers/__init__.py +0 -0
- {cloudcat-0.2.3 → cloudcat-0.2.4}/cloudcat/readers/avro.py +0 -0
- {cloudcat-0.2.3 → cloudcat-0.2.4}/cloudcat/readers/csv.py +0 -0
- {cloudcat-0.2.3 → cloudcat-0.2.4}/cloudcat/readers/json.py +0 -0
- {cloudcat-0.2.3 → cloudcat-0.2.4}/cloudcat/readers/orc.py +0 -0
- {cloudcat-0.2.3 → cloudcat-0.2.4}/cloudcat/readers/parquet.py +0 -0
- {cloudcat-0.2.3 → cloudcat-0.2.4}/cloudcat/readers/text.py +0 -0
- {cloudcat-0.2.3 → cloudcat-0.2.4}/cloudcat/storage/__init__.py +0 -0
- {cloudcat-0.2.3 → cloudcat-0.2.4}/cloudcat/storage/azure.py +0 -0
- {cloudcat-0.2.3 → cloudcat-0.2.4}/cloudcat/storage/base.py +0 -0
- {cloudcat-0.2.3 → cloudcat-0.2.4}/cloudcat/storage/gcs.py +0 -0
- {cloudcat-0.2.3 → cloudcat-0.2.4}/cloudcat/storage/s3.py +0 -0
- {cloudcat-0.2.3 → cloudcat-0.2.4}/cloudcat.egg-info/SOURCES.txt +0 -0
- {cloudcat-0.2.3 → cloudcat-0.2.4}/cloudcat.egg-info/dependency_links.txt +0 -0
- {cloudcat-0.2.3 → cloudcat-0.2.4}/cloudcat.egg-info/entry_points.txt +0 -0
- {cloudcat-0.2.3 → cloudcat-0.2.4}/cloudcat.egg-info/requires.txt +0 -0
- {cloudcat-0.2.3 → cloudcat-0.2.4}/cloudcat.egg-info/top_level.txt +0 -0
- {cloudcat-0.2.3 → cloudcat-0.2.4}/pyproject.toml +0 -0
- {cloudcat-0.2.3 → cloudcat-0.2.4}/setup.cfg +0 -0
- {cloudcat-0.2.3 → cloudcat-0.2.4}/setup.py +0 -0
- {cloudcat-0.2.3 → cloudcat-0.2.4}/tests/__init__.py +0 -0
- {cloudcat-0.2.3 → cloudcat-0.2.4}/tests/conftest.py +0 -0
- {cloudcat-0.2.3 → cloudcat-0.2.4}/tests/test_cli.py +0 -0
- {cloudcat-0.2.3 → cloudcat-0.2.4}/tests/test_compression.py +0 -0
- {cloudcat-0.2.3 → cloudcat-0.2.4}/tests/test_config.py +0 -0
- {cloudcat-0.2.3 → cloudcat-0.2.4}/tests/test_data_reading.py +0 -0
- {cloudcat-0.2.3 → cloudcat-0.2.4}/tests/test_file_filtering.py +0 -0
- {cloudcat-0.2.3 → cloudcat-0.2.4}/tests/test_filtering.py +0 -0
- {cloudcat-0.2.3 → cloudcat-0.2.4}/tests/test_format_detection.py +0 -0
- {cloudcat-0.2.3 → cloudcat-0.2.4}/tests/test_integration.py +0 -0
- {cloudcat-0.2.3 → cloudcat-0.2.4}/tests/test_output_formatting.py +0 -0
- {cloudcat-0.2.3 → cloudcat-0.2.4}/tests/test_path_parsing.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cloudcat
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.4
|
|
4
4
|
Summary: Preview and analyze data files in Google Cloud Storage, AWS S3, and Azure Blob Storage from your terminal
|
|
5
5
|
Home-page: https://github.com/jonathansudhakar1/cloudcat
|
|
6
6
|
Author: Jonathan Sudhakar
|
|
@@ -15,6 +15,9 @@ from colorama import init, Fore, Style
|
|
|
15
15
|
# Initialize colorama
|
|
16
16
|
init()
|
|
17
17
|
|
|
18
|
+
# Import version
|
|
19
|
+
from . import __version__
|
|
20
|
+
|
|
18
21
|
# Import from modular components
|
|
19
22
|
from .config import cloud_config, SKIP_PATTERNS, FORMAT_EXTENSION_MAP
|
|
20
23
|
from .compression import detect_compression, decompress_stream, strip_compression_extension
|
|
@@ -546,6 +549,7 @@ def get_record_count(
|
|
|
546
549
|
|
|
547
550
|
|
|
548
551
|
@click.command()
|
|
552
|
+
@click.version_option(version=__version__, prog_name='cloudcat')
|
|
549
553
|
@click.option('--path', '-p', required=True, help='Path to the file or directory (gcs://, s3://, or az://)')
|
|
550
554
|
@click.option('--output-format', '-o', type=click.Choice(['json', 'jsonp', 'csv', 'table']), default='table',
|
|
551
555
|
help='Output format (default: table)')
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cloudcat
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.4
|
|
4
4
|
Summary: Preview and analyze data files in Google Cloud Storage, AWS S3, and Azure Blob Storage from your terminal
|
|
5
5
|
Home-page: https://github.com/jonathansudhakar1/cloudcat
|
|
6
6
|
Author: Jonathan Sudhakar
|
|
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
|
|
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
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|