Python - kv.set()
This is reference documentation for the Nitric Python SDK. To learn about Key/Value Stores in Nitric start with the Key/Value Store docs.
Store a key value pair in a key value store.
from nitric.resources import kvfrom nitric.application import Nitricprofiles = kv('profiles').allow('set')await profiles.set('profile-1a2b3c', { 'name': 'John Smith' })Nitric.run()
Parameters
- Name
key
- Required
- Required
- Type
- string
- Description
The key that references value.
- Name
value
- Required
- Required
- Type
- object
- Description
A json serializable object that is stored as the value.
Examples
Set a key value pair
from nitric.resources import kvfrom nitric.application import Nitricprofiles = kv('profiles').allow('set')await profiles.set('profile-1a2b3c', { 'name': 'John Smith' })Nitric.run()
Last updated on Apr 3, 2025