Metadata-Version: 2.1
Name: sicaptcha
Version: 0.0.7
Summary: Python basic captcha module
Home-page: https://github.com/siteisleri/sicaptcha
Author: siteisleri.com
Author-email: noreply@siteisleri.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/siteisleri/sicaptcha/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: Pillow
Requires-Dist: uuid

# Python captcha module (Django/Flask)


examples: [Siteisleri.com](http://www.siteisleri.com)

## Install
```
pip install sicaptcha
```
## Basic Usage (with default settings)
```
from sicaptcha import sicaptcha as sc

captcha = sc.Sicaptcha()

#you can get the text that visitors will have to submit to confirm they are not a bot
text = captcha.text
output = captcha.get_captcha()
# output: base64 coded image
# you can use it in <img src="data:image/webp;base64,output">
```


