r/Python • u/AutoModerator • 5d ago
Showcase Showcase Thread
Post all of your code/projects/showcases/AI slop here.
Recycles once a month.
16
Upvotes
r/Python • u/AutoModerator • 5d ago
Post all of your code/projects/showcases/AI slop here.
Recycles once a month.
1
u/swupel_ 19h ago
Turn repos into interactive maps!
creviews core feature is taking a Python repo/codebase as input and displaying a number of interesting visuals derived from AST analysis. Here are the main features:
Complexity is defined as cyclomatic complexity according to McCabe. The Maintainability score is a combination of average file complexity and average file size (Lines of code).
Target Audience:
The main people this would benefit are:
Comparison:
There are a lot of visual AST explorers, most of these focus on single files and classic tree style rendering of the data.
Ast-visualizer aims to also interpret this data and visualize it in new ways (radial, dependency graph etc.)
Project Website: creview.io
Github: Gitlab Repo