Official Python driver for the Swimlane SOAR API. Provides programmatic access to Swimlane instances for managing records, applications, alerts, and other entities. Current version 10.19.1, supports Python >=3.6, released irregularly with security and feature updates.
pip install swimlaneVerified import paths — ran on the pinned version, not inferred.
Create a Swimlane instance and list available applications.
Ensure hostname is 'https://your-instance.swimlane.com' (including https://, no trailing slash).
Replace `api_key='xyz'` with `username='user', password='pass'`.
Use `app = sw.apps.get(id='...')` or list with `sw.apps.list()`.
Always use dictionary-style access: `value = my_record['Field Name']`.