Python - bucket.files()
Get a list of file references for files that exist on the bucket.
from nitric.resources import bucketfrom nitric.application import Nitricassets = bucket('assets').allow('reading')files = await assets.files()Nitric.run()
Examples
Deleting all files in a bucket
from nitric.resources import bucketfrom nitric.application import Nitricassets = bucket('assets').allow('reading', 'deleting')files = await assets.files()for f in files:await f.delete()Nitric.run()
Notes
This method returns a list of File references that exist on the bucket.
Last updated on May 9, 2025