code2llm 0.3.7__tar.gz → 0.3.9__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.
- {code2llm-0.3.7 → code2llm-0.3.9}/PKG-INFO +9 -9
- {code2llm-0.3.7 → code2llm-0.3.9}/README.md +8 -8
- {code2llm-0.3.7 → code2llm-0.3.9}/code2llm.egg-info/PKG-INFO +9 -9
- {code2llm-0.3.7 → code2llm-0.3.9}/pyproject.toml +2 -2
- {code2llm-0.3.7 → code2llm-0.3.9}/setup.py +3 -3
- {code2llm-0.3.7 → code2llm-0.3.9}/LICENSE +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/__init__.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/__main__.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/analysis/__init__.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/analysis/call_graph.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/analysis/cfg.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/analysis/coupling.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/analysis/data_analysis.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/analysis/dfg.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/analysis/pipeline_detector.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/analysis/side_effects.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/analysis/smells.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/analysis/type_inference.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/cli.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/core/__init__.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/core/analyzer.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/core/config.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/core/models.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/core/streaming_analyzer.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/exporters/__init__.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/exporters/base.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/exporters/context_exporter.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/exporters/flow_exporter.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/exporters/json_exporter.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/exporters/llm_exporter.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/exporters/map_exporter.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/exporters/mermaid_exporter.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/exporters/toon.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/exporters/yaml_exporter.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/llm_flow_generator.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/llm_task_generator.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/mermaid_generator.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/nlp/__init__.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/nlp/config.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/nlp/entity_resolution.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/nlp/intent_matching.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/nlp/normalization.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/nlp/pipeline.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/patterns/__init__.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/patterns/detector.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/refactor/__init__.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/refactor/prompt_engine.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/visualizers/__init__.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2flow/visualizers/graph.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2llm.egg-info/SOURCES.txt +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2llm.egg-info/dependency_links.txt +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2llm.egg-info/entry_points.txt +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2llm.egg-info/requires.txt +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/code2llm.egg-info/top_level.txt +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/setup.cfg +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/tests/test_advanced_analysis.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/tests/test_analyzer.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/tests/test_edge_cases.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/tests/test_format_quality.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/tests/test_nlp_pipeline.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/tests/test_refactoring_engine.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/tests/test_sprint2_flow.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/tests/test_sprint3_pipelines.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/tests/test_sprint4.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/tests/test_sprint5.py +0 -0
- {code2llm-0.3.7 → code2llm-0.3.9}/tests/test_toon_v2.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: code2llm
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.9
|
|
4
4
|
Summary: High-performance Python code flow analysis with optimized TOON format - CFG, DFG, call graphs, and intelligent code queries
|
|
5
5
|
Home-page: https://github.com/wronai/stts
|
|
6
6
|
Author: STTS Project
|
|
@@ -47,9 +47,9 @@ Dynamic: home-page
|
|
|
47
47
|
Dynamic: license-file
|
|
48
48
|
Dynamic: requires-python
|
|
49
49
|
|
|
50
|
-
#
|
|
50
|
+
# code2llm
|
|
51
51
|
|
|
52
|
-
**Python Code Flow Analysis Tool** - Static analysis for control flow graphs (CFG), data flow graphs (DFG), and call graph extraction with optimized TOON format.
|
|
52
|
+
**Python Code Flow Analysis Tool with LLM Integration** - Static analysis for control flow graphs (CFG), data flow graphs (DFG), and call graph extraction with optimized TOON format.
|
|
53
53
|
|
|
54
54
|

|
|
55
55
|
|
|
@@ -67,13 +67,13 @@ Dynamic: requires-python
|
|
|
67
67
|
|
|
68
68
|
```bash
|
|
69
69
|
# Default: TOON format only
|
|
70
|
-
|
|
70
|
+
code2llm /path/to/project
|
|
71
71
|
|
|
72
72
|
# Generate all formats
|
|
73
|
-
|
|
73
|
+
code2llm /path/to/project -f all
|
|
74
74
|
|
|
75
75
|
# TOON + YAML (for comparison)
|
|
76
|
-
|
|
76
|
+
code2llm /path/to/project -f toon,yaml
|
|
77
77
|
```
|
|
78
78
|
|
|
79
79
|
## Performance Optimization
|
|
@@ -82,10 +82,10 @@ For large projects (>1000 functions), use **Fast Mode**:
|
|
|
82
82
|
|
|
83
83
|
```bash
|
|
84
84
|
# Ultra-fast analysis (5-10x faster)
|
|
85
|
-
|
|
85
|
+
code2llm /path/to/project --fast
|
|
86
86
|
|
|
87
87
|
# Custom performance settings
|
|
88
|
-
|
|
88
|
+
code2llm /path/to/project \
|
|
89
89
|
--parallel-workers 8 \
|
|
90
90
|
--max-depth 3 \
|
|
91
91
|
--skip-data-flow \
|
|
@@ -209,7 +209,7 @@ code2flow /path/to/project -o my_analysis
|
|
|
209
209
|
The TOON v2 format is designed for rapid scanning and actionable insights:
|
|
210
210
|
|
|
211
211
|
```
|
|
212
|
-
#
|
|
212
|
+
# code2llm | 43f 10693L | py:43 | 2026-02-28
|
|
213
213
|
# CC̄=4.6 | critical:39/406 | dups:0 | cycles:0
|
|
214
214
|
|
|
215
215
|
HEALTH[20]:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
#
|
|
1
|
+
# code2llm
|
|
2
2
|
|
|
3
|
-
**Python Code Flow Analysis Tool** - Static analysis for control flow graphs (CFG), data flow graphs (DFG), and call graph extraction with optimized TOON format.
|
|
3
|
+
**Python Code Flow Analysis Tool with LLM Integration** - Static analysis for control flow graphs (CFG), data flow graphs (DFG), and call graph extraction with optimized TOON format.
|
|
4
4
|
|
|
5
5
|

|
|
6
6
|
|
|
@@ -18,13 +18,13 @@
|
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
20
|
# Default: TOON format only
|
|
21
|
-
|
|
21
|
+
code2llm /path/to/project
|
|
22
22
|
|
|
23
23
|
# Generate all formats
|
|
24
|
-
|
|
24
|
+
code2llm /path/to/project -f all
|
|
25
25
|
|
|
26
26
|
# TOON + YAML (for comparison)
|
|
27
|
-
|
|
27
|
+
code2llm /path/to/project -f toon,yaml
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
## Performance Optimization
|
|
@@ -33,10 +33,10 @@ For large projects (>1000 functions), use **Fast Mode**:
|
|
|
33
33
|
|
|
34
34
|
```bash
|
|
35
35
|
# Ultra-fast analysis (5-10x faster)
|
|
36
|
-
|
|
36
|
+
code2llm /path/to/project --fast
|
|
37
37
|
|
|
38
38
|
# Custom performance settings
|
|
39
|
-
|
|
39
|
+
code2llm /path/to/project \
|
|
40
40
|
--parallel-workers 8 \
|
|
41
41
|
--max-depth 3 \
|
|
42
42
|
--skip-data-flow \
|
|
@@ -160,7 +160,7 @@ code2flow /path/to/project -o my_analysis
|
|
|
160
160
|
The TOON v2 format is designed for rapid scanning and actionable insights:
|
|
161
161
|
|
|
162
162
|
```
|
|
163
|
-
#
|
|
163
|
+
# code2llm | 43f 10693L | py:43 | 2026-02-28
|
|
164
164
|
# CC̄=4.6 | critical:39/406 | dups:0 | cycles:0
|
|
165
165
|
|
|
166
166
|
HEALTH[20]:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: code2llm
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.9
|
|
4
4
|
Summary: High-performance Python code flow analysis with optimized TOON format - CFG, DFG, call graphs, and intelligent code queries
|
|
5
5
|
Home-page: https://github.com/wronai/stts
|
|
6
6
|
Author: STTS Project
|
|
@@ -47,9 +47,9 @@ Dynamic: home-page
|
|
|
47
47
|
Dynamic: license-file
|
|
48
48
|
Dynamic: requires-python
|
|
49
49
|
|
|
50
|
-
#
|
|
50
|
+
# code2llm
|
|
51
51
|
|
|
52
|
-
**Python Code Flow Analysis Tool** - Static analysis for control flow graphs (CFG), data flow graphs (DFG), and call graph extraction with optimized TOON format.
|
|
52
|
+
**Python Code Flow Analysis Tool with LLM Integration** - Static analysis for control flow graphs (CFG), data flow graphs (DFG), and call graph extraction with optimized TOON format.
|
|
53
53
|
|
|
54
54
|

|
|
55
55
|
|
|
@@ -67,13 +67,13 @@ Dynamic: requires-python
|
|
|
67
67
|
|
|
68
68
|
```bash
|
|
69
69
|
# Default: TOON format only
|
|
70
|
-
|
|
70
|
+
code2llm /path/to/project
|
|
71
71
|
|
|
72
72
|
# Generate all formats
|
|
73
|
-
|
|
73
|
+
code2llm /path/to/project -f all
|
|
74
74
|
|
|
75
75
|
# TOON + YAML (for comparison)
|
|
76
|
-
|
|
76
|
+
code2llm /path/to/project -f toon,yaml
|
|
77
77
|
```
|
|
78
78
|
|
|
79
79
|
## Performance Optimization
|
|
@@ -82,10 +82,10 @@ For large projects (>1000 functions), use **Fast Mode**:
|
|
|
82
82
|
|
|
83
83
|
```bash
|
|
84
84
|
# Ultra-fast analysis (5-10x faster)
|
|
85
|
-
|
|
85
|
+
code2llm /path/to/project --fast
|
|
86
86
|
|
|
87
87
|
# Custom performance settings
|
|
88
|
-
|
|
88
|
+
code2llm /path/to/project \
|
|
89
89
|
--parallel-workers 8 \
|
|
90
90
|
--max-depth 3 \
|
|
91
91
|
--skip-data-flow \
|
|
@@ -209,7 +209,7 @@ code2flow /path/to/project -o my_analysis
|
|
|
209
209
|
The TOON v2 format is designed for rapid scanning and actionable insights:
|
|
210
210
|
|
|
211
211
|
```
|
|
212
|
-
#
|
|
212
|
+
# code2llm | 43f 10693L | py:43 | 2026-02-28
|
|
213
213
|
# CC̄=4.6 | critical:39/406 | dups:0 | cycles:0
|
|
214
214
|
|
|
215
215
|
HEALTH[20]:
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "code2llm"
|
|
7
|
-
version = "0.3.
|
|
7
|
+
version = "0.3.9"
|
|
8
8
|
description = "High-performance Python code flow analysis with optimized TOON format - CFG, DFG, call graphs, and intelligent code queries"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.8"
|
|
@@ -74,7 +74,7 @@ line-length = 100
|
|
|
74
74
|
target-version = ['py38']
|
|
75
75
|
|
|
76
76
|
[tool.mypy]
|
|
77
|
-
python_version = "0.3.
|
|
77
|
+
python_version = "0.3.9"
|
|
78
78
|
ignore_missing_imports = true
|
|
79
79
|
|
|
80
80
|
[tool.pytest.ini_options]
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
"""Setup configuration for
|
|
1
|
+
"""Setup configuration for code2llm."""
|
|
2
2
|
|
|
3
3
|
from setuptools import setup, find_packages
|
|
4
4
|
import os
|
|
@@ -15,7 +15,7 @@ def read_readme():
|
|
|
15
15
|
return "Python code flow analysis tool"
|
|
16
16
|
|
|
17
17
|
setup(
|
|
18
|
-
name='
|
|
18
|
+
name='code2llm',
|
|
19
19
|
version=version,
|
|
20
20
|
description='Python code flow analysis tool - CFG, DFG, and call graph extraction',
|
|
21
21
|
long_description=read_readme(),
|
|
@@ -26,7 +26,7 @@ setup(
|
|
|
26
26
|
packages=find_packages(),
|
|
27
27
|
entry_points={
|
|
28
28
|
'console_scripts': [
|
|
29
|
-
'
|
|
29
|
+
'code2llm=code2flow.cli:main',
|
|
30
30
|
],
|
|
31
31
|
},
|
|
32
32
|
install_requires=[
|
|
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
|
|
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
|
|
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
|