Metadata-Version: 2.1
Name: funcaptcha
Version: 0.1.4
Summary: Funcaptcha API
Home-page: https://pypi.org/project/funcaptcha/
Author: Tekky
Author-email: xtekky@protonmail.com
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENSE.txt


# funcaptcha
#### Status ~ under developement
#### Repository: [github.com/xtekky/funcaptcha](https://gihub.com/xtekky/funcaptcha)
## install funcaptcha
```
pip install funcaptcha
```
## current example (get key)
```python
from funcaptcha import Funcaptcha

funcap = Funcaptcha(
    api_url  = 'twitch-api.arkoselabs.com',
    api_key  = 'E5554D43-23CC-1982-971D-6A2262A2CA24',
    site_url = 'https://www.twitch.tv'
)

key = funcap.getkey()

print(f"Key: {key}")
```

Tekky (c) 2022


