Metadata-Version: 2.4
Name: infyniti-fixr
Version: 0.1.0
Summary: Paste your error log. Get a patch in 3 seconds. Never make the same mistake twice.
License-Expression: MIT
Project-URL: Homepage, https://infihq.dev/fixr
Keywords: debugging,error,patch,typescript,testing,developer-tools
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Debuggers
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Dynamic: license-file

# fixr

Paste your error log. Get a patch in 3 seconds. Never make the same mistake twice.

```bash
pip install fixr
```

## Usage

### Fix Python errors
```bash
fixr fix traceback.txt
```

### Fix TypeScript errors
```bash
fixr ts myfile.ts
```

### Generate tests
```bash
fixr testgen mymodule.py              # pytest
fixr testgen mymodule.js --lang jest  # jest
```

## Run without installing
```bash
python -m fixr fix traceback.txt
```

## Requirements
- Python 3.10+
- No external dependencies

## License
MIT
