--- id: choreographer version: "1.3.0" license: # MIT License Copyright (c) Plotly, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in… (full text in the JSON record) license_treatment: unclear maintenance: active --- # choreographer — Devtools Protocol implementation for chrome. License: unclear · Maintenance: active · Downloads: 6.4M/mo ## What it is and what it does Choreographer is a Python wrapper around the Chrome DevTools Protocol that lets you control a browser programmatically—navigating pages, executing JavaScript, capturing screenshots, and subscribing to browser events. It was created to replace the custom Chrome build approach used by Kaleido, instead leveraging the Chrome binary already on your machine, similar to how Puppeteer works. The package is designed primarily for async/await workflows and provides both high-level Browser and Tab interfaces and lower-level Target and Session interfaces for advanced use. The package is actively maintained but explicitly in a work-in-progress state: only Chrome-ish browsers are supported at present, and the developers are seeking community help to test on different platforms and use cases. It requires Python 3.8 or later and depends on logistro, platformdirs, and simplejson. Synchronous use is possible but discouraged in favor of asyncio patterns. Use it for: - Generate static images from browser-based charting tools or web applications without maintaining a custom Chrome build - Automate browser interactions for testing or data collection from JavaScript-heavy websites - Control multiple browser tabs programmatically to coordinate navigation and event handling - Subscribe to browser lifecycle events (page load, crashes, navigation) for monitoring or conditional logic - Integrate browser automation into Python async applications without blocking the event loop ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Choreographer provides remote control of Chrome-based browsers from Python via the DevTools Protocol, enabling programmatic browser automation and interaction. Yes, if you need Chrome automation from Python and are comfortable with a work-in-progress library. The low install friction, active maintenance, MIT license, and zero known vulnerabilities make it a reasonable choice for browser control tasks. However, be aware that only Chrome-ish browsers are supported, the package is still evolving, and you must have Chrome installed on your system. For production use, verify stability on your target platform first. ## Install pip install choreographer uv add choreographer poetry add choreographer ## Installing choreographer Before you install: Low install friction with three lightweight runtime dependencies (logistro, platformdirs, simplejson). Active maintenance with a recent release; however, the package is explicitly described as a work in progress with only Chrome-ish browsers currently supported. License in practice: MIT License permits commercial and private use with minimal restrictions; you must include the license notice in distributions. License treatment is marked unclear in the metadata, but the raw text is standard MIT. Quickstart: import asyncio import choreographer as choreo async def example(): browser = await choreo.Browser(headless=False) tab = await browser.create_tab("https://google.com") await tab.send_command("Page.navigate", params={"url": "https://github.com"}) asyncio.run(example()) Requires Chrome or a Chrome-like browser binary installed on the user's machine; async/await is strongly recommended but not absolutely required. Verify before relying: - Whether the package works reliably across Windows, macOS, and Linux platforms (help wanted for testing on different platforms) - Performance characteristics and scalability for concurrent browser instances - Stability guarantees given the work-in-progress status and Chrome-only support ## Package facts - License: # MIT License Copyright (c) Plotly, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in… (full text in the JSON record) (unclear) - Python support: supports_current - Install friction: low - Maintenance: active - Downloads: 6.4M/month (top 5,000 on PyPI) - Known vulnerabilities: none known ## Tags browser automation python, chrome devtools protocol, headless browser control, remote browser scripting, browser testing library, python selenium alternative, devtools protocol client, browser-automation, devtools-protocol, async-first [View on SkillFed](https://skillfed.io/packages/choreographer) · [View on PyPI](https://pypi.org/project/choreographer/)