How To Use Playbook’s Python SDK
1
Install our SDK
Pip install is here!. You can install Playbook3d via
2
Import the sdk
Import the sdk into your code with:
3
Initialize the client
Create an Initialize function and set your api key:
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Install our SDK
pip install playbook3d
Import the sdk
from playbook3d.playbookNetworkClient import PlaybookClient
Initialize the client
def setup_playbook_client(self):
self.playbookClient = PlaybookClient()
self.playbookClient.set_api_key({"insert your api key here"})
self.playbookClient.run_workflow(PlaybookRun: run)
self.playbookClient.get_run_result({PlaybookRun: run})