Python - bucket.file.read()
Read a file from a bucket.
from nitric.resources import bucket
from nitric.application import Nitric
# Create a reference to an 'assets' bucket with permissions to read
assets = bucket('assets').allow('read')
logo = assets.file('images/logo.png')
logo_data = await logo.read()
Nitric.run()
Earlier versions of the Nitric SDK used 'reading'. The latest version uses 'read'.
Examples
Read a file
from nitric.resources import bucket
from nitric.application import Nitric
assets = bucket('assets').allow('read')
logo = assets.file('images/logo.png')
logo_data = await logo.read()
Nitric.run()