Metadata-Version: 2.4
Name: cloudcat
Version: 0.1.4
Summary: A CLI utility to read and display files from cloud storage
Home-page: https://github.com/yourusername/cloudcat
Author: Your Name
Author-email: your.email@example.com
Keywords: cloud,gcs,s3,cli,storage,data
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Utilities
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click>=8.0.0
Requires-Dist: pandas>=1.3.0
Requires-Dist: tabulate>=0.8.9
Requires-Dist: colorama>=0.4.4
Provides-Extra: gcs
Requires-Dist: google-cloud-storage>=2.0.0; extra == "gcs"
Provides-Extra: s3
Requires-Dist: boto3>=1.18.0; extra == "s3"
Provides-Extra: parquet
Requires-Dist: pyarrow>=5.0.0; extra == "parquet"
Provides-Extra: all
Requires-Dist: google-cloud-storage>=2.0.0; extra == "all"
Requires-Dist: boto3>=1.18.0; extra == "all"
Requires-Dist: pyarrow>=5.0.0; extra == "all"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license-file
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary


    # CloudCat

    A command-line utility to read and display files from Google Cloud Storage and AWS S3 buckets.
    
    ## Features
    
    - Read files from GCS (gcs://) or S3 (s3://)
    - Stream data (avoid downloading entire files when possible)
    - Support for CSV, JSON, and Parquet formats
    - Column selection and row limiting
    - Schema display
    - Record counting
    
