aboutsummaryrefslogtreecommitdiffstats
path: root/pyblackbird_cc/resources/s3.py (unfollow)
Commit message (Collapse)AuthorFilesLines
2024-09-11Some formatting changes and calming down ruff slightlyMatthew Lemon1-14/+6
2024-08-03Add return type hint to upload_snapshotted_pages_to_s3Matthew Lemon1-1/+1
This change explicitly specifies that the function upload_snapshotted_pages_to_s3 returns a boolean. Adding type hints helps improve code readability and maintainability by providing clear expectations on the function's return value.
2024-08-03Remove Client created log line that is unnecessary.Matthew Lemon1-1/+0
2024-08-03Add S3 utility module and refactor S3 functions into itMatthew Lemon1-0/+103
Created a new `s3.py` utility module for handling S3 interactions including file uploads and generating presigned URLs. Refactored views to utilize these new utility functions and moved the PDF collection type function to a new `utils.py` module to improve code organization and readability.