cloudcat 0.2.4__tar.gz → 0.2.6__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.
Files changed (42) hide show
  1. {cloudcat-0.2.4 → cloudcat-0.2.6}/PKG-INFO +1 -1
  2. {cloudcat-0.2.4 → cloudcat-0.2.6}/cloudcat/__init__.py +1 -1
  3. {cloudcat-0.2.4 → cloudcat-0.2.6}/cloudcat.egg-info/PKG-INFO +1 -1
  4. {cloudcat-0.2.4 → cloudcat-0.2.6}/LICENSE +0 -0
  5. {cloudcat-0.2.4 → cloudcat-0.2.6}/README.md +0 -0
  6. {cloudcat-0.2.4 → cloudcat-0.2.6}/cloudcat/cli.py +0 -0
  7. {cloudcat-0.2.4 → cloudcat-0.2.6}/cloudcat/compression.py +0 -0
  8. {cloudcat-0.2.4 → cloudcat-0.2.6}/cloudcat/config.py +0 -0
  9. {cloudcat-0.2.4 → cloudcat-0.2.6}/cloudcat/filtering.py +0 -0
  10. {cloudcat-0.2.4 → cloudcat-0.2.6}/cloudcat/formatters.py +0 -0
  11. {cloudcat-0.2.4 → cloudcat-0.2.6}/cloudcat/readers/__init__.py +0 -0
  12. {cloudcat-0.2.4 → cloudcat-0.2.6}/cloudcat/readers/avro.py +0 -0
  13. {cloudcat-0.2.4 → cloudcat-0.2.6}/cloudcat/readers/csv.py +0 -0
  14. {cloudcat-0.2.4 → cloudcat-0.2.6}/cloudcat/readers/json.py +0 -0
  15. {cloudcat-0.2.4 → cloudcat-0.2.6}/cloudcat/readers/orc.py +0 -0
  16. {cloudcat-0.2.4 → cloudcat-0.2.6}/cloudcat/readers/parquet.py +0 -0
  17. {cloudcat-0.2.4 → cloudcat-0.2.6}/cloudcat/readers/text.py +0 -0
  18. {cloudcat-0.2.4 → cloudcat-0.2.6}/cloudcat/storage/__init__.py +0 -0
  19. {cloudcat-0.2.4 → cloudcat-0.2.6}/cloudcat/storage/azure.py +0 -0
  20. {cloudcat-0.2.4 → cloudcat-0.2.6}/cloudcat/storage/base.py +0 -0
  21. {cloudcat-0.2.4 → cloudcat-0.2.6}/cloudcat/storage/gcs.py +0 -0
  22. {cloudcat-0.2.4 → cloudcat-0.2.6}/cloudcat/storage/s3.py +0 -0
  23. {cloudcat-0.2.4 → cloudcat-0.2.6}/cloudcat.egg-info/SOURCES.txt +0 -0
  24. {cloudcat-0.2.4 → cloudcat-0.2.6}/cloudcat.egg-info/dependency_links.txt +0 -0
  25. {cloudcat-0.2.4 → cloudcat-0.2.6}/cloudcat.egg-info/entry_points.txt +0 -0
  26. {cloudcat-0.2.4 → cloudcat-0.2.6}/cloudcat.egg-info/requires.txt +0 -0
  27. {cloudcat-0.2.4 → cloudcat-0.2.6}/cloudcat.egg-info/top_level.txt +0 -0
  28. {cloudcat-0.2.4 → cloudcat-0.2.6}/pyproject.toml +0 -0
  29. {cloudcat-0.2.4 → cloudcat-0.2.6}/setup.cfg +0 -0
  30. {cloudcat-0.2.4 → cloudcat-0.2.6}/setup.py +0 -0
  31. {cloudcat-0.2.4 → cloudcat-0.2.6}/tests/__init__.py +0 -0
  32. {cloudcat-0.2.4 → cloudcat-0.2.6}/tests/conftest.py +0 -0
  33. {cloudcat-0.2.4 → cloudcat-0.2.6}/tests/test_cli.py +0 -0
  34. {cloudcat-0.2.4 → cloudcat-0.2.6}/tests/test_compression.py +0 -0
  35. {cloudcat-0.2.4 → cloudcat-0.2.6}/tests/test_config.py +0 -0
  36. {cloudcat-0.2.4 → cloudcat-0.2.6}/tests/test_data_reading.py +0 -0
  37. {cloudcat-0.2.4 → cloudcat-0.2.6}/tests/test_file_filtering.py +0 -0
  38. {cloudcat-0.2.4 → cloudcat-0.2.6}/tests/test_filtering.py +0 -0
  39. {cloudcat-0.2.4 → cloudcat-0.2.6}/tests/test_format_detection.py +0 -0
  40. {cloudcat-0.2.4 → cloudcat-0.2.6}/tests/test_integration.py +0 -0
  41. {cloudcat-0.2.4 → cloudcat-0.2.6}/tests/test_output_formatting.py +0 -0
  42. {cloudcat-0.2.4 → cloudcat-0.2.6}/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.4
3
+ Version: 0.2.6
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
@@ -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.2.4"
5
+ __version__ = "0.2.6"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cloudcat
3
- Version: 0.2.4
3
+ Version: 0.2.6
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