Python client for the Vynix bug reporting and website feedback API.
The Vynix Python SDK is part of the Vynix developer toolkit. It helps teams connect Vynix feedback data to Python workflows so visual feedback, captured context, and AI diagnosis can move into development faster.
Vynix is a website annotation and developer-context tool. Add a lightweight widget to a site, click on an issue, and Vynix captures useful debugging context such as the target element, screenshot, console output, network activity, and an AI diagnosis of the likely root cause.
You can then copy a ready-to-build prompt or open a GitHub issue and assign it to a coding agent.
Learn more at vynix.in or read the documentation.
- Click-to-annotate any page. Point at an element, region, or selected text and leave a note pinned to the relevant place.
- Automatic developer context. Each note includes the element selector, page URL, screenshot, and a privacy-safe capture of console errors and network calls.
- AI root-cause diagnosis. Vynix reviews the captured context and suggests the likely cause, a possible fix, and the files most likely involved.
- Hand off to a coding agent. Turn a note into a structured prompt or a GitHub issue, then assign it to Copilot or your own workflow.
pip install vynixNote: the Vynix toolkit is rolling out. If a package or command above does not resolve yet, watch this repo for the release and use the hosted product at vynix.in in the meantime.
Create a client with your project key and list annotations from Python.
from vynix import Vynix
vynix = Vynix(project_key="YOUR_PROJECT_KEY")
for note in vynix.annotations.list():
print(note.title)Full guides and the API reference are available at https://vynix.in/docs.
- Vynix Browser Extension
- Vynix JavaScript SDK
- Vynix PHP SDK
- Vynix MCP Server
- Vynix GitHub Action
- Vynix VS Code Extension
Browse the full toolkit at the Vynix GitHub organisation.
vynix, bug-reporting, visual-feedback, website-annotation, ai-diagnosis, developer-tools, feedback-tool, sdk, api-client, integration, javascript
Vynix is the feedback layer for teams building with AI coding agents. Point at a bug on any live website, and Vynix captures the context, diagnoses the likely cause, and hands it to your coding agent. Start free at vynix.in.
MIT, see LICENSE.