Metadata-Version: 2.4
Name: scarsSolver
Version: 1.0
Summary: A SVG Captcha Solver
Author-email: scars <s4p8@mailum.com>
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Dynamic: requires-python

🚀 scarsSolver

A Python package designed to parse and solve SVG captchas.

📦 Install/Update Command:
```shell
pip install scarsSolver
pip install --upgrade scarsSolver --no-cache-dir
```

⚙️ Python Example:
```python
import scarsSolver
import json

def svg_captcha_solve():
    captcha_string = input("string: ")
    
    json_str = json.dumps(captcha_string)
    
    code, token = scarsSolver.solve_svg(json_str)

    if code:
        print(f"Code:  {code}")
        print(f"Token: {token}")
    else:
        print(f"Error: {token}")

if __name__ == "__main__":
    svg_captcha_solve()
```

## ⚠️ Requirements

* Python 3.8+
* colorama
* threading

---
