Metadata-Version: 2.4
Name: shieldauth-key
Version: 0.1.0
Summary: License key protection for Python apps — one line of code
License: MIT
Project-URL: Homepage, https://shieldauth.pages.dev
Project-URL: Source, https://github.com/shieldauth/shieldauth-python
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.28

# shieldauth

License key protection for Python apps — one line of code.

## Install

```bash
pip install shieldauth
```

## Usage

```python
import shieldauth
shieldauth.verify("sk_live_xxxx")

# Your app code here — only runs if license is valid
print("Welcome!")
```

On first run, the user is prompted for their license key. It's saved locally so they're never asked again.

## Links

- Dashboard: https://shieldauth.pages.dev
- Docs: https://shieldauth.pages.dev/docs
