Skip to main content

No project description provided

Project description

This document explains the usage of the Python function files_in_bucket, which can be used to list files within a specific folder in a Google Cloud Storage bucket.

Parameters:

  1. bucket_name (str): The name of the Google Cloud Storage bucket.

  2. folder_name (str): The name of the folder within the bucket to list files from.

  3. filename_needed (bool, optional): Defaults to True. If True, returns a list of filenames.

  4. file_object_needed (bool, optional): Defaults to False. If True, returns a list of file objects.

  5. list_sub_folders (bool, optional): Defaults to False. If True, includes files from subfolders within the specified folder.

Return Value:

  1. A list of filenames (strings) if filename_needed is True.
  2. A list of file objects, which can further be used to extract different aspects of the contained file, if file_object_needed is True.
  3. None if both filename_needed and file_object_needed are False.
  4. Raises an exception if an error occurs.

Example Usage:

Python:

from google.cloud import storage

bucket_name = "my-bucket" folder_name = "data/"

Get filenames only

filenames = files_in_bucket(bucket_name, folder_name) print(filenames)

Get file objects only

file_objects = files_in_bucket(bucket_name, folder_name, file_object_needed=True) for blob in file_objects: print(blob.name)

Include files from subfolders

all_files = files_in_bucket(bucket_name, folder_name, list_sub_folders=True) print(all_files)

Additional Notes:

  1. This function requires the google-cloud-storage library to be installed.
  2. Ensure you have proper authentication set up to access the specified bucket.
  3. The function includes basic error handling, but you may want to implement more specific handling based on your needs.
  4. I hope this README provides a clear explanation of the files_in_bucket function and its usage. Feel free to ask if you have any further questions. Email - preyaa.atri91@gmail.com

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

GCS_bucket_files_or_filenames-0.6.tar.gz (2.6 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file GCS_bucket_files_or_filenames-0.6.tar.gz.

File metadata

File hashes

Hashes for GCS_bucket_files_or_filenames-0.6.tar.gz
Algorithm Hash digest
SHA256 8f58780bdfe4181177f9c2c2b6484fc94029702a70bd73e1aa8f141a7a0fe26f
MD5 6657c9635e6155b3078b3d1e6c0601bb
BLAKE2b-256 40d8f74a6def74f12f58503f3aed1ce0f99a7e9a84b6fc1276af36b7bd69b558

See more details on using hashes here.

File details

Details for the file GCS_bucket_files_or_filenames-0.6-py3-none-any.whl.

File metadata

File hashes

Hashes for GCS_bucket_files_or_filenames-0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 d807a17dd1e1406f8d132207eb6acf305ce683050db05fe67021a0fc7564b578
MD5 467eb9faddb185cadf03e3158c002858
BLAKE2b-256 2398b0ba464e998c2a8c9f39c013af6886614c09fec2e3eb0abd2e15ae3b631d

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page