codebread 1.0.0__tar.gz → 1.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {codebread-1.0.0 → codebread-1.0.1}/PKG-INFO +13 -10
- {codebread-1.0.0 → codebread-1.0.1}/README.md +12 -9
- {codebread-1.0.0 → codebread-1.0.1}/codebread/__init__.py +1 -1
- {codebread-1.0.0 → codebread-1.0.1}/codebread.egg-info/PKG-INFO +13 -10
- {codebread-1.0.0 → codebread-1.0.1}/pyproject.toml +1 -1
- {codebread-1.0.0 → codebread-1.0.1}/LICENSE +0 -0
- {codebread-1.0.0 → codebread-1.0.1}/codebread/analyzer.py +0 -0
- {codebread-1.0.0 → codebread-1.0.1}/codebread/classifier.py +0 -0
- {codebread-1.0.0 → codebread-1.0.1}/codebread/cli.py +0 -0
- {codebread-1.0.0 → codebread-1.0.1}/codebread/connections.py +0 -0
- {codebread-1.0.0 → codebread-1.0.1}/codebread/diff.py +0 -0
- {codebread-1.0.0 → codebread-1.0.1}/codebread/export.py +0 -0
- {codebread-1.0.0 → codebread-1.0.1}/codebread/languages.py +0 -0
- {codebread-1.0.0 → codebread-1.0.1}/codebread/models.py +0 -0
- {codebread-1.0.0 → codebread-1.0.1}/codebread/parsers/__init__.py +0 -0
- {codebread-1.0.0 → codebread-1.0.1}/codebread/parsers/generic_parser.py +0 -0
- {codebread-1.0.0 → codebread-1.0.1}/codebread/parsers/javascript_parser.py +0 -0
- {codebread-1.0.0 → codebread-1.0.1}/codebread/parsers/python_parser.py +0 -0
- {codebread-1.0.0 → codebread-1.0.1}/codebread/scanner.py +0 -0
- {codebread-1.0.0 → codebread-1.0.1}/codebread/server.py +0 -0
- {codebread-1.0.0 → codebread-1.0.1}/codebread/web/app.js +0 -0
- {codebread-1.0.0 → codebread-1.0.1}/codebread/web/index.html +0 -0
- {codebread-1.0.0 → codebread-1.0.1}/codebread/web/style.css +0 -0
- {codebread-1.0.0 → codebread-1.0.1}/codebread.egg-info/SOURCES.txt +0 -0
- {codebread-1.0.0 → codebread-1.0.1}/codebread.egg-info/dependency_links.txt +0 -0
- {codebread-1.0.0 → codebread-1.0.1}/codebread.egg-info/entry_points.txt +0 -0
- {codebread-1.0.0 → codebread-1.0.1}/codebread.egg-info/requires.txt +0 -0
- {codebread-1.0.0 → codebread-1.0.1}/codebread.egg-info/top_level.txt +0 -0
- {codebread-1.0.0 → codebread-1.0.1}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: codebread
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.1
|
|
4
4
|
Summary: Interactive codebase analyzer & visualizer — slice open a project and see how it's wired together.
|
|
5
5
|
Author: Danial Irsyad
|
|
6
6
|
License: MIT
|
|
@@ -13,7 +13,7 @@ Requires-Dist: pathspec>=0.11; extra == "full"
|
|
|
13
13
|
Dynamic: license-file
|
|
14
14
|
|
|
15
15
|
<p align="center">
|
|
16
|
-
<img src="assets/logo-wordmark.png" alt="CodeBread" width="360">
|
|
16
|
+
<img src="https://cdn.jsdelivr.net/gh/honow48-tech/CodeBread@main/assets/logo-wordmark.png" alt="CodeBread" width="360">
|
|
17
17
|
</p>
|
|
18
18
|
|
|
19
19
|
<p align="center">
|
|
@@ -22,7 +22,7 @@ Dynamic: license-file
|
|
|
22
22
|
</p>
|
|
23
23
|
|
|
24
24
|
<p align="center">
|
|
25
|
-
<img alt="version" src="https://img.shields.io/badge/version-1.0.
|
|
25
|
+
<img alt="version" src="https://img.shields.io/badge/version-1.0.1-2dd4bf">
|
|
26
26
|
<img alt="python" src="https://img.shields.io/badge/python-3.9%2B-0284c7">
|
|
27
27
|
<img alt="deps" src="https://img.shields.io/badge/required%20dependencies-none-2dd4bf">
|
|
28
28
|
<img alt="license" src="https://img.shields.io/badge/license-MIT-8b5cf6">
|
|
@@ -74,27 +74,30 @@ That's it. Clone it, run it, nothing to compile.
|
|
|
74
74
|
## Install
|
|
75
75
|
|
|
76
76
|
```bash
|
|
77
|
-
|
|
78
|
-
pip install .
|
|
79
|
-
|
|
80
|
-
# option B: don't install anything, just run it
|
|
81
|
-
python codebread.py --path /path/to/project
|
|
77
|
+
pip install codebread
|
|
82
78
|
```
|
|
83
79
|
|
|
84
80
|
Optional extra (better `.gitignore` matching while scanning):
|
|
85
81
|
|
|
86
82
|
```bash
|
|
87
|
-
pip install
|
|
83
|
+
pip install codebread[full] # adds pathspec
|
|
88
84
|
```
|
|
89
85
|
|
|
90
86
|
Requires **Python 3.9+**. Nothing else.
|
|
91
87
|
|
|
88
|
+
Prefer running from source instead (e.g. to contribute)?
|
|
89
|
+
|
|
90
|
+
```bash
|
|
91
|
+
git clone https://github.com/honow48-tech/CodeBread.git
|
|
92
|
+
cd CodeBread
|
|
93
|
+
pip install . # or: python codebread.py --path /path/to/project
|
|
94
|
+
```
|
|
95
|
+
|
|
92
96
|
## Use
|
|
93
97
|
|
|
94
98
|
```bash
|
|
95
99
|
codebread --path /path/to/project # scan + open the UI in your browser
|
|
96
100
|
codebread # prompts for the path
|
|
97
|
-
python codebread.py --path . # uninstalled, same thing
|
|
98
101
|
```
|
|
99
102
|
|
|
100
103
|
That's the whole quick start: point it at a folder, a browser tab opens with
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<img src="assets/logo-wordmark.png" alt="CodeBread" width="360">
|
|
2
|
+
<img src="https://cdn.jsdelivr.net/gh/honow48-tech/CodeBread@main/assets/logo-wordmark.png" alt="CodeBread" width="360">
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
5
|
<p align="center">
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
</p>
|
|
9
9
|
|
|
10
10
|
<p align="center">
|
|
11
|
-
<img alt="version" src="https://img.shields.io/badge/version-1.0.
|
|
11
|
+
<img alt="version" src="https://img.shields.io/badge/version-1.0.1-2dd4bf">
|
|
12
12
|
<img alt="python" src="https://img.shields.io/badge/python-3.9%2B-0284c7">
|
|
13
13
|
<img alt="deps" src="https://img.shields.io/badge/required%20dependencies-none-2dd4bf">
|
|
14
14
|
<img alt="license" src="https://img.shields.io/badge/license-MIT-8b5cf6">
|
|
@@ -60,27 +60,30 @@ That's it. Clone it, run it, nothing to compile.
|
|
|
60
60
|
## Install
|
|
61
61
|
|
|
62
62
|
```bash
|
|
63
|
-
|
|
64
|
-
pip install .
|
|
65
|
-
|
|
66
|
-
# option B: don't install anything, just run it
|
|
67
|
-
python codebread.py --path /path/to/project
|
|
63
|
+
pip install codebread
|
|
68
64
|
```
|
|
69
65
|
|
|
70
66
|
Optional extra (better `.gitignore` matching while scanning):
|
|
71
67
|
|
|
72
68
|
```bash
|
|
73
|
-
pip install
|
|
69
|
+
pip install codebread[full] # adds pathspec
|
|
74
70
|
```
|
|
75
71
|
|
|
76
72
|
Requires **Python 3.9+**. Nothing else.
|
|
77
73
|
|
|
74
|
+
Prefer running from source instead (e.g. to contribute)?
|
|
75
|
+
|
|
76
|
+
```bash
|
|
77
|
+
git clone https://github.com/honow48-tech/CodeBread.git
|
|
78
|
+
cd CodeBread
|
|
79
|
+
pip install . # or: python codebread.py --path /path/to/project
|
|
80
|
+
```
|
|
81
|
+
|
|
78
82
|
## Use
|
|
79
83
|
|
|
80
84
|
```bash
|
|
81
85
|
codebread --path /path/to/project # scan + open the UI in your browser
|
|
82
86
|
codebread # prompts for the path
|
|
83
|
-
python codebread.py --path . # uninstalled, same thing
|
|
84
87
|
```
|
|
85
88
|
|
|
86
89
|
That's the whole quick start: point it at a folder, a browser tab opens with
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: codebread
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.1
|
|
4
4
|
Summary: Interactive codebase analyzer & visualizer — slice open a project and see how it's wired together.
|
|
5
5
|
Author: Danial Irsyad
|
|
6
6
|
License: MIT
|
|
@@ -13,7 +13,7 @@ Requires-Dist: pathspec>=0.11; extra == "full"
|
|
|
13
13
|
Dynamic: license-file
|
|
14
14
|
|
|
15
15
|
<p align="center">
|
|
16
|
-
<img src="assets/logo-wordmark.png" alt="CodeBread" width="360">
|
|
16
|
+
<img src="https://cdn.jsdelivr.net/gh/honow48-tech/CodeBread@main/assets/logo-wordmark.png" alt="CodeBread" width="360">
|
|
17
17
|
</p>
|
|
18
18
|
|
|
19
19
|
<p align="center">
|
|
@@ -22,7 +22,7 @@ Dynamic: license-file
|
|
|
22
22
|
</p>
|
|
23
23
|
|
|
24
24
|
<p align="center">
|
|
25
|
-
<img alt="version" src="https://img.shields.io/badge/version-1.0.
|
|
25
|
+
<img alt="version" src="https://img.shields.io/badge/version-1.0.1-2dd4bf">
|
|
26
26
|
<img alt="python" src="https://img.shields.io/badge/python-3.9%2B-0284c7">
|
|
27
27
|
<img alt="deps" src="https://img.shields.io/badge/required%20dependencies-none-2dd4bf">
|
|
28
28
|
<img alt="license" src="https://img.shields.io/badge/license-MIT-8b5cf6">
|
|
@@ -74,27 +74,30 @@ That's it. Clone it, run it, nothing to compile.
|
|
|
74
74
|
## Install
|
|
75
75
|
|
|
76
76
|
```bash
|
|
77
|
-
|
|
78
|
-
pip install .
|
|
79
|
-
|
|
80
|
-
# option B: don't install anything, just run it
|
|
81
|
-
python codebread.py --path /path/to/project
|
|
77
|
+
pip install codebread
|
|
82
78
|
```
|
|
83
79
|
|
|
84
80
|
Optional extra (better `.gitignore` matching while scanning):
|
|
85
81
|
|
|
86
82
|
```bash
|
|
87
|
-
pip install
|
|
83
|
+
pip install codebread[full] # adds pathspec
|
|
88
84
|
```
|
|
89
85
|
|
|
90
86
|
Requires **Python 3.9+**. Nothing else.
|
|
91
87
|
|
|
88
|
+
Prefer running from source instead (e.g. to contribute)?
|
|
89
|
+
|
|
90
|
+
```bash
|
|
91
|
+
git clone https://github.com/honow48-tech/CodeBread.git
|
|
92
|
+
cd CodeBread
|
|
93
|
+
pip install . # or: python codebread.py --path /path/to/project
|
|
94
|
+
```
|
|
95
|
+
|
|
92
96
|
## Use
|
|
93
97
|
|
|
94
98
|
```bash
|
|
95
99
|
codebread --path /path/to/project # scan + open the UI in your browser
|
|
96
100
|
codebread # prompts for the path
|
|
97
|
-
python codebread.py --path . # uninstalled, same thing
|
|
98
101
|
```
|
|
99
102
|
|
|
100
103
|
That's the whole quick start: point it at a folder, a browser tab opens with
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "codebread"
|
|
7
|
-
version = "1.0.
|
|
7
|
+
version = "1.0.1"
|
|
8
8
|
description = "Interactive codebase analyzer & visualizer — slice open a project and see how it's wired together."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.9"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|