Awesome
Cyberbrain: Python debugging, redefined.
Cyberbrain<sup>1</sup>(电子脑) aims to free programmers from debugging. It lets you:
-
Backtrace variable changes.
-
See every state of program execution, including variables' values
-
Debug loops with confidence.
Never spend hours stepping through a program, let Cyberbrain tell you what happened.
Read more about existing features, and roadmaps for features to come.
I gave a talk at PyCascades 2021 about Cyberbrain, watch it here.
Install
Cyberbrain consists of a Python library and various editor/IDE integrations. Currently it supports VS Code and Gitpod. See our plan on expanding the support.
To install Cyberbrain:
pip install cyberbrain
code --install-extension laike9m.cyberbrain
You can also install from PyPI , VS Code marketplace or Open VSX .
Or, you can try Cyberbrain online:
How to Use
Suppose you want to trace a function foo
, just decorate it with @trace
:
from cyberbrain import trace
# As of now, you can only have one @trace decorator in the whole program.
# We may change this in version 2.0, see https://github.com/laike9m/Cyberbrain/discussions/73
@trace # Disable tracing with `@trace(disabled=True)`
def foo():
...
Cyberbrain keeps your workflow unchanged. You run a program (from vscode or command line, both work), and a new panel will be opened to visualize how your program executed.
The following gif demonstrates the workflow (click to view the full size image):
Read our documentation to learn more about Cyberbrain's features and limitations.
❗Note on use❗
- Cyberbrain may conflict with other debuggers. If you set breakpoints and use VSC's debugger, Cyberbrain may not function normally. Generally speaking, prefer "Run Without Debugging" (like shown in the gif).
- If you have multiple VS Code window opened, the trace graph will always be created in the first one. #72 is tracking this issue.
- When having multiple decorators, you should put
@trace
as the innermost one.@app.route("/") @trace def hello_world(): x = [1, 2, 3] return "Hello, World!"
Roadmaps
Updated 2020.11
Cyberbrain is new and under active development, bugs are expected. If you met any, please create an issue. At this point, you should NOT use Cyberbrain in production. We'll release 1.0 when it's ready for production.
Major features planned for future versions are listed below. It may change over time.
Version | Features |
---|---|
1.0 | Code & trace interaction (#7), API specification |
2.0 | Multi-frame tracing (👉 I need your feedback for this feature) |
3.0 | async support, remote debugging |
4.0 | Fine-grained symbol tracing |
5.0 | Multi-threading support |
Visit the project's kanban to learn more about the current development schedule.
How does it compare to other tools?
<details> <summary>PySnooper</summary> <a href="https://github.com/cool-RR/PySnooper">PySnooper</a> and Cyberbrain share the same goal of reducing programmers' work while debugging, with a fundamental difference: Cyberbrain traces and shows the sources of each variable change, while PySnooper only logs them. The differences should be pretty obvious after you tried both. </details> <details> <summary>Debug Visualizer</summary> <a href="https://marketplace.visualstudio.com/items?itemName=hediet.debug-visualizer">Debug visualizer</a> and Cyberbrain have different goals. Debug visualizer visualizes data structures, while Cyberbrain visualizes program execution (but also lets you inspect values). </details> <details> <summary>Python Tutor</summary> <a href="http://pythontutor.com/">Python Tutor</a> is for education purposes, you can't use it to debug your own programs. It's a brilliant tool for its purpose and I do it like it very much. </details> <details> <summary>Static analysis</summary> Cyberbrain is *NOT* static analyis. It's runtime tracing. Static analysis can't provide enough information for debugging. </details>Community
- 💬 GitHub Discussions (for general discussions)
- 🤖 Discord (for more instant discussions. I'm happy to chat any time!)
- 🐦 Twitter @PyCyberbrain (for announcements)
Interested in Contributing?
See the development guide. This project follows the all-contributors specification. Contributions of ANY kind welcome!
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section --> <!-- ALL-CONTRIBUTORS-BADGE:END -->Thanks goes to these wonderful contributors ✨
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section --> <!-- prettier-ignore-start --> <!-- markdownlint-disable --> <table> <tr> <td align="center"><a href="https://www.linkedin.com/in/alex-hall-8532079a/"><img src="https://avatars0.githubusercontent.com/u/3627481?v=4?s=30" width="30px;" alt=""/><br /><sub><b>Alex Hall</b></sub></a><br /><a href="#ideas-alexmojaki" title="Ideas, Planning, & Feedback">🤔</a></td> <td align="center"><a href="https://frostming.com"><img src="https://avatars3.githubusercontent.com/u/16336606?v=4?s=30" width="30px;" alt=""/><br /><sub><b>Frost Ming</b></sub></a><br /><a href="https://github.com/laike9m/Cyberbrain/issues?q=author%3Afrostming" title="Bug reports">🐛</a> <a href="https://github.com/laike9m/Cyberbrain/commits?author=frostming" title="Documentation">📖</a></td> <td align="center"><a href="https://cocacolf.now.sh/"><img src="https://avatars.githubusercontent.com/u/25732253?v=4?s=30" width="30px;" alt=""/><br /><sub><b>Funloading</b></sub></a><br /><a href="https://github.com/laike9m/Cyberbrain/commits?author=CocaColf" title="Code">💻</a></td> <td align="center"><a href="https://bandism.net/"><img src="https://avatars.githubusercontent.com/u/22633385?v=4?s=30" width="30px;" alt=""/><br /><sub><b>Ikko Ashimine</b></sub></a><br /><a href="https://github.com/laike9m/Cyberbrain/commits?author=eltociear" title="Code">💻</a></td> <td align="center"><a href="https://www.kaustubhgupta.xyz/"><img src="https://avatars.githubusercontent.com/u/43691873?v=4?s=30" width="30px;" alt=""/><br /><sub><b>Kaustubh Gupta</b></sub></a><br /><a href="#blog-kaustubhgupta" title="Blogposts">📝</a></td> <td align="center"><a href="https://ram.rachum.com"><img src="https://avatars1.githubusercontent.com/u/56778?v=4?s=30" width="30px;" alt=""/><br /><sub><b>Ram Rachum</b></sub></a><br /><a href="#ideas-cool-RR" title="Ideas, Planning, & Feedback">🤔</a></td> <td align="center"><a href="https://github.com/no1xsyzy"><img src="https://avatars0.githubusercontent.com/u/7346170?v=4?s=30" width="30px;" alt=""/><br /><sub><b>Siyuan Xu</b></sub></a><br /><a href="https://github.com/laike9m/Cyberbrain/issues?q=author%3Ano1xsyzy" title="Bug reports">🐛</a></td> <td align="center"><a href="https://victorjzsun.github.io/"><img src="https://avatars.githubusercontent.com/u/17478849?v=4?s=30" width="30px;" alt=""/><br /><sub><b>Victor Sun</b></sub></a><br /><a href="https://github.com/laike9m/Cyberbrain/commits?author=victorjzsun" title="Code">💻</a> <a href="#ideas-victorjzsun" title="Ideas, Planning, & Feedback">🤔</a></td> <td align="center"><a href="https://github.com/dingge2016"><img src="https://avatars1.githubusercontent.com/u/20748513?v=4?s=30" width="30px;" alt=""/><br /><sub><b>dingge2016</b></sub></a><br /><a href="#financial-dingge2016" title="Financial">💵</a> <a href="https://github.com/laike9m/Cyberbrain/commits?author=dingge2016" title="Code">💻</a></td> <td align="center"><a href="https://github.com/poltronSuperstar"><img src="https://avatars1.githubusercontent.com/u/22001372?v=4?s=30" width="30px;" alt=""/><br /><sub><b>foo bar</b></sub></a><br /><a href="#financial-poltronSuperstar" title="Financial">💵</a></td> </tr> <tr> <td align="center"><a href="https://github.com/inkuang"><img src="https://avatars1.githubusercontent.com/u/38498747?v=4?s=30" width="30px;" alt=""/><br /><sub><b>inkuang</b></sub></a><br /><a href="https://github.com/laike9m/Cyberbrain/issues?q=author%3Ainkuang" title="Bug reports">🐛</a></td> <td align="center"><a href="https://www.kawabangga.com"><img src="https://avatars0.githubusercontent.com/u/9675939?v=4?s=30" width="30px;" alt=""/><br /><sub><b>laixintao</b></sub></a><br /><a href="https://github.com/laike9m/Cyberbrain/commits?author=laixintao" title="Documentation">📖</a></td> <td align="center"><a href="http://yihong.run"><img src="https://avatars1.githubusercontent.com/u/15976103?v=4?s=30" width="30px;" alt=""/><br /><sub><b>yihong</b></sub></a><br /><a href="#financial-yihong0618" title="Financial">💵</a> <a href="#ideas-yihong0618" title="Ideas, Planning, & Feedback">🤔</a></td> <td align="center"><a href="https://linw1995.com/"><img src="https://avatars0.githubusercontent.com/u/13523027?v=4?s=30" width="30px;" alt=""/><br /><sub><b>林玮 (Jade Lin)</b></sub></a><br /><a href="https://github.com/laike9m/Cyberbrain/issues?q=author%3Alinw1995" title="Bug reports">🐛</a> <a href="#ideas-linw1995" title="Ideas, Planning, & Feedback">🤔</a></td> </tr> </table> <!-- markdownlint-restore --> <!-- prettier-ignore-end --> <!-- ALL-CONTRIBUTORS-LIST:END -->Support
Cyberbrain is a huge and complicated project that will last for years, but once finished, it will reshape how people think and do debugging. Your support can help sustain it. Let's make it the best Python debugging tool 🤟!
<a name="footnote1"><sup>1</sup></a>: The name of this project originates from Ghost in the Shell, quote:
Cyberization is the process whereby a normal brain is physically integrated with electronic components to produce an augmented organ referred to as a cyberbrain.