This is the official Python SDK for UnderstandLabs
pip install understand-sdk # or # poetry add understand-sdkfrom understand_sdk.client import UnderstandPublicClient # contact us at it@understandlabs.com for getting API key client = UnderstandPublicClient(api_key="api key") from understand_sdk.story import StoryWithChannels # create new story object story = StoryWithChannels( title="A new awesome story", channels=[ "general" ], slides=[ # add your slides ] ) # push a new story to Understand platform client.create_story(story)If you need help reach out to us at it@understandlabs.com.
Licensed under the MIT license, see LICENSE