{"library":"pipedream","title":"Pipedream SDK","description":"Python SDK for the Pipedream platform, enabling integration with over 2,000 apps and APIs for building workflows, managing accounts, and executing actions. Current version 1.1.11, released with progressive scopes support. Active development with frequent minor releases.","language":"python","status":"active","last_verified":"Fri May 01","install":{"commands":["pip install pipedream"],"cli":null},"imports":["from pipedream import Pipedream","from pipedream import Account","from pipedream import ConfigurePropResponse"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"from pipedream import Pipedream\nimport os\n\n# Initialize client with environment variable for security\npd = Pipedream(api_key=os.environ.get('PIPEDREAM_API_KEY', ''), environment='development')\n\n# List accounts\naccounts = pd.accounts.list()\nprint(accounts)\n\n# Execute an action (example: send email)\nresponse = pd.actions.run(\n    action_name='email.send',\n    inputs={'to': 'test@example.com', 'subject': 'Hello', 'body': 'World'}\n)\nprint(response)","lang":"python","description":"Initialize Pipedream client, list accounts, and run an action.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}