bug-be-gone 1.0.1__py3-none-any.whl

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.
@@ -0,0 +1,216 @@
1
+ Metadata-Version: 2.4
2
+ Name: bug-be-gone
3
+ Version: 1.0.1
4
+ Summary: Automatically detect and fix Python errors - never debug again
5
+ Home-page: https://github.com/yourusername/bug-be-gone
6
+ Author: Keeg
7
+ Author-email: Keeghan@dishesandmore.com
8
+ License: Proprietary - Trial License
9
+ Project-URL: Bug Reports, https://github.com/yourusername/bug-be-gone/issues
10
+ Project-URL: Source, https://github.com/yourusername/bug-be-gone
11
+ Project-URL: Documentation, https://github.com/yourusername/bug-be-gone#readme
12
+ Keywords: debugger,error-fixing,automatic-debugging,python-errors,development-tools
13
+ Classifier: Development Status :: 4 - Beta
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: Topic :: Software Development :: Debuggers
16
+ Classifier: Topic :: Software Development :: Quality Assurance
17
+ Classifier: License :: Other/Proprietary License
18
+ Classifier: Programming Language :: Python :: 3
19
+ Classifier: Programming Language :: Python :: 3.6
20
+ Classifier: Programming Language :: Python :: 3.7
21
+ Classifier: Programming Language :: Python :: 3.8
22
+ Classifier: Programming Language :: Python :: 3.9
23
+ Classifier: Programming Language :: Python :: 3.10
24
+ Classifier: Programming Language :: Python :: 3.11
25
+ Classifier: Programming Language :: Python :: 3.12
26
+ Classifier: Operating System :: OS Independent
27
+ Requires-Python: >=3.6
28
+ Description-Content-Type: text/markdown
29
+ License-File: LICENSE
30
+ Dynamic: author
31
+ Dynamic: author-email
32
+ Dynamic: classifier
33
+ Dynamic: description
34
+ Dynamic: description-content-type
35
+ Dynamic: home-page
36
+ Dynamic: keywords
37
+ Dynamic: license
38
+ Dynamic: license-file
39
+ Dynamic: project-url
40
+ Dynamic: requires-python
41
+ Dynamic: summary
42
+
43
+ # Bug-Be-Gone
44
+
45
+ **Automatically detect and fix Python errors. Never debug again.**
46
+
47
+ Bug-Be-Gone iterates through your broken code, detects errors, applies fixes, and repeats until everything works. Point it at any Python script and watch it fix itself.
48
+
49
+ ## Installation
50
+
51
+ ```bash
52
+ pip install bug-be-gone
53
+ ```
54
+
55
+ ## Quick Start
56
+
57
+ ```bash
58
+ # Fix all errors in your script
59
+ bug-be-gone your_script.py
60
+
61
+ # Fix everything (runtime + types + deployment)
62
+ bug-be-gone --ultimate your_script.py
63
+
64
+ # Check for type errors
65
+ bug-be-gone --types your_script.py
66
+
67
+ # Validate deployment configuration
68
+ bug-be-gone --deploy
69
+ ```
70
+
71
+ ## What It Fixes
72
+
73
+ ✅ **Runtime Errors** (50+ types)
74
+ - TypeError, ValueError, AttributeError
75
+ - KeyError, IndexError, ZeroDivisionError
76
+ - FileNotFoundError, PermissionError
77
+ - JSONDecodeError, UnicodeDecodeError
78
+ - ImportError, ModuleNotFoundError
79
+ - And 40+ more...
80
+
81
+ ✅ **Type Errors**
82
+ - Integrates with mypy
83
+ - Infers and adds type hints
84
+ - Fixes type mismatches
85
+
86
+ ✅ **Deployment Issues**
87
+ - Missing environment variables
88
+ - Port configuration problems
89
+ - Permission errors
90
+ - Path issues
91
+
92
+ ## Example Session
93
+
94
+ ```bash
95
+ $ bug-be-gone --ultimate broken_app.py
96
+
97
+ [BACKUP] Created at broken_app.py.backup
98
+ [START] Universal Debugger ULTIMATE
99
+ [TRIAL] Evaluation license - expires Nov 17, 2025
100
+ [MODE] ULTIMATE
101
+ [TARGET] /home/user/broken_app.py
102
+ [DATABASE] 52 error types loaded
103
+
104
+ [TYPES] Running type checker...
105
+ [FOUND] 3 type error(s)
106
+ [FIX] Applied type fixes...
107
+
108
+ [RUNTIME] Fixing runtime errors...
109
+ [ITERATION 1] Running script...
110
+ [DETECTED] AttributeError at line 156
111
+ [FIX] Applied AttributeError fix at line 156
112
+ [ITERATION 2] Running script...
113
+ [DETECTED] KeyError at line 203
114
+ [FIX] Applied KeyError fix at line 203
115
+ [ITERATION 3] Running script...
116
+ [SUCCESS] No errors detected!
117
+
118
+ [COMPLETE] Fixed 5 error(s) in 2 iteration(s)
119
+ ```
120
+
121
+ ## How It Works
122
+
123
+ 1. **Backup**: Automatically creates `.backup` file before any changes
124
+ 2. **Detect**: Runs your code and captures error output
125
+ 3. **Analyze**: Uses AST parsing to understand code context
126
+ 4. **Fix**: Applies intelligent, context-aware fixes
127
+ 5. **Repeat**: Iterates until all errors are resolved
128
+
129
+ ## Key Features
130
+
131
+ 🔒 **Safe**: Always creates backups before modifying code
132
+ ⚡ **Fast**: Deterministic pattern matching, not LLM-based
133
+ 🎯 **Smart**: AST-based analysis for context-aware fixes
134
+ 🔧 **Comprehensive**: 52 error types with multiple fix patterns each
135
+ 🏠 **Local**: Runs 100% on your machine, no code sent anywhere
136
+
137
+ ## Trial License
138
+
139
+ This is a **trial version** that expires on **November 17, 2025**.
140
+
141
+ All features are fully functional during the trial period.
142
+
143
+ ## Purchasing
144
+
145
+ To purchase a full license:
146
+
147
+ **Email**: Keeghan@dishesandmore.com
148
+ **Subject**: Bug-Be-Gone License
149
+
150
+ Available licenses:
151
+ - **Individual Developer**: $147/year or $499 lifetime
152
+ - **Team License (5 devs)**: $497/year
153
+ - **Enterprise**: Custom pricing
154
+
155
+ ## Commands
156
+
157
+ ```bash
158
+ # Basic usage
159
+ bug-be-gone script.py # Fix runtime errors
160
+ bug-be-gone --types script.py # Fix type errors
161
+ bug-be-gone --deploy # Check deployment
162
+ bug-be-gone --all script.py # Fix everything
163
+ bug-be-gone --ultimate script.py # MAXIMUM POWER
164
+
165
+ # Short alias
166
+ bbg --ultimate script.py
167
+ ```
168
+
169
+ ## Requirements
170
+
171
+ - Python 3.6+
172
+ - No external dependencies
173
+ - Works on Linux, macOS, Windows
174
+
175
+ ## Technical Details
176
+
177
+ Bug-Be-Gone uses:
178
+ - **AST parsing** for intelligent code analysis
179
+ - **Pattern matching** for deterministic fixes
180
+ - **Type inference** for adding missing type hints
181
+ - **Mypy integration** for type checking
182
+ - **Multi-pass iteration** for complex error chains
183
+
184
+ Not LLM-based - this is fast, deterministic, and predictable.
185
+
186
+ ## Safety
187
+
188
+ - ✅ Creates `.backup` files automatically
189
+ - ✅ Runs locally, no external API calls
190
+ - ✅ No telemetry or tracking
191
+ - ✅ You control when changes are applied
192
+
193
+ ## Limitations
194
+
195
+ - Only fixes errors in target script (not library code)
196
+ - Maximum 100 iterations per run
197
+ - Type checking requires mypy (optional)
198
+ - Trial version expires Nov 17, 2025
199
+
200
+ ## Support
201
+
202
+ **Trial Support**: Keeghan@dishesandmore.com
203
+ **Response Time**: 48 hours
204
+
205
+ ## License
206
+
207
+ Proprietary - Trial License
208
+ Copyright © 2025 Dishes & More Ventures
209
+
210
+ Unauthorized distribution, decompilation, or reverse engineering is prohibited.
211
+
212
+ ---
213
+
214
+ **Questions?** Keeghan@dishesandmore.com
215
+
216
+ **Made with frustration** after debugging too many estate sale inventory tools.
@@ -0,0 +1,7 @@
1
+ bug_be_gone.py,sha256=mnVpkVH7kmzpJ62vVDmhWK9gWUW3oq_QT8lEH9nkkuk,52941
2
+ bug_be_gone-1.0.1.dist-info/licenses/LICENSE,sha256=nH4pvgmf3TP5msdVPTiB_NPtJp_ltLcKRy6KiHRD_lY,2140
3
+ bug_be_gone-1.0.1.dist-info/METADATA,sha256=DseY_4aHidxwV_rr3YEOVno7qKPsiSansuEy8D3YhT4,6237
4
+ bug_be_gone-1.0.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
5
+ bug_be_gone-1.0.1.dist-info/entry_points.txt,sha256=ZahdYc-1VWxgoPJZ5IkWQKbJQhToNf4XXa0C9Vsu2J8,72
6
+ bug_be_gone-1.0.1.dist-info/top_level.txt,sha256=avXJ7Fj1jxBswg4Yu_WTb0vSdh3zZ_zi3A_z6e7IRgU,12
7
+ bug_be_gone-1.0.1.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ bbg = bug_be_gone:main
3
+ bug-be-gone = bug_be_gone:main
@@ -0,0 +1,69 @@
1
+ BUG-BE-GONE TRIAL LICENSE AGREEMENT
2
+
3
+ Copyright (c) 2025 Dishes & More Ventures. All rights reserved.
4
+
5
+ EVALUATION LICENSE
6
+
7
+ This software is provided under an evaluation license for testing purposes only.
8
+
9
+ GRANT OF LICENSE
10
+
11
+ Subject to the terms and conditions of this Agreement, Dishes & More Ventures
12
+ grants you a limited, non-exclusive, non-transferable, non-sublicensable license
13
+ to use this software for evaluation purposes only.
14
+
15
+ TRIAL PERIOD
16
+
17
+ This license is valid for a period of 7 days from the date of first use, or
18
+ until November 17, 2025, whichever comes first. After the trial period expires,
19
+ the software will cease to function.
20
+
21
+ RESTRICTIONS
22
+
23
+ You may NOT:
24
+ - Use the software for commercial purposes during the trial period
25
+ - Distribute, sublicense, or transfer the software to any third party
26
+ - Reverse engineer, decompile, or disassemble the software
27
+ - Remove or modify any proprietary notices or labels
28
+ - Use the software after the trial period expires
29
+
30
+ BACKUP FILES
31
+
32
+ The software creates backup files of your code before making modifications.
33
+ You are responsible for managing these backup files.
34
+
35
+ NO WARRANTY
36
+
37
+ THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
38
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
39
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
40
+
41
+ LIMITATION OF LIABILITY
42
+
43
+ IN NO EVENT SHALL DISHES & MORE VENTURES BE LIABLE FOR ANY CLAIM, DAMAGES OR
44
+ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
45
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
46
+ IN THE SOFTWARE.
47
+
48
+ TERMINATION
49
+
50
+ This license automatically terminates upon expiration of the trial period or
51
+ upon your failure to comply with any term or condition of this Agreement.
52
+
53
+ PURCHASING
54
+
55
+ To obtain a commercial license after the trial period, contact:
56
+ Email: Keeghan@dishesandmore.com
57
+ Subject: Bug-Be-Gone License
58
+
59
+ GOVERNING LAW
60
+
61
+ This Agreement shall be governed by the laws of the State of Nebraska,
62
+ United States of America.
63
+
64
+ CONTACT
65
+
66
+ For questions about this license:
67
+ Email: Keeghan@dishesandmore.com
68
+
69
+ Last Updated: November 11, 2025
@@ -0,0 +1 @@
1
+ bug_be_gone