Python - bucket.file()

Create a reference to a file within a bucket.

from nitric.resources import bucket
from nitric.application import Nitric
assets = bucket('assets').allow('read')
logo = assets.file('images/logo.png')
Nitric.run()

Earlier versions of the Nitric SDK used 'reading'. The latest version uses 'read'.

Parameters

  • Name
    name
    Required
    Required
    Type
    string
    Description

    The unique name/reference to the file.

Notes

The file does not need to exist, only a reference to that file is being created.

Available Operations

Last updated on Oct 17, 2024