Metadata-Version: 2.4
Name: captchaSaz
Version: 2.0.4
Summary: This is a python-package meant to create automatic captcha
Author-email: UndrDsk0M <its1.ehsan@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/UndrDsk0M/captcha_generator
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pillow<=11.3.0
Dynamic: license-file

# captchaSaz (generator)
<hr>
this is a captcha generator made with pillow
it has three function in current version:
    1. Random Text Creator: randomText()
    2. Generate Image Captcha: generate()
    3. checks the entered Captcha: check()


```python
from captchaSaz import *

captcha_image, captcha_text = generate()
captcha_image.show()
client_ = input('Enter captcha: ')
if check(client_, captcha_text) :
    print('Loged in!')
else :
    print('Your are a damn robot')
    print(text)
    print('I KNEW YOU WERE A ROBOT!')
```
<hr>

## Instalation
1. + `pip install captchaSaz` is available now!
   + `from captchaSaz import *`
   + `generate()`

2. 
    + `git clone https://github.com/UndrDsk0M/captcha_generator`
    + `pip install -r requirments.txt`
    + `python3 captcha_generator.py` or use it as `from capcha_generator import *`



<hr>

- ## Update:
+ now available in pypi packeges!
+ path issue fixed
+ Got inline documents!
+ check function added!
+ rewriting with typing rules
+ adding an option to add lines in Image Captcha 
+ entering the text



# demo: 
<img width="500" height="200" alt="tmp7929o9wm" src="https://github.com/user-attachments/assets/c3394a3c-a819-4398-b729-3f9d83d450fa" />
<img width="500" height="200" alt="tmpqcdr0em7" src="https://github.com/user-attachments/assets/dd04485f-86d2-47f1-b0ee-7251a3c67d61" />
<img width="500" height="200" alt="tmpe99ew9rc" src="https://github.com/user-attachments/assets/4b456d54-333f-4d28-8c20-c0bcbe6c55aa" />
<img width="500" height="200" alt="tmpgc958lbk" src="https://github.com/user-attachments/assets/741c8887-77a9-40c2-82ea-f038bae16092" />




