Metadata-Version: 2.4
Name: ezeyeauth
Version: 0.1.4
Summary: Easy Iris Biometric Authtnication System
Author-email: JohnnyTech <johndrostan@outlook.com>
License-Expression: MIT
Keywords: authentication,biometrics,eye,iris,recognition
Requires-Python: >=3.11
Requires-Dist: open-iris
Requires-Dist: opencv-python
Description-Content-Type: text/markdown

# EZEyeAuth

### Authentication Using Iris-Scanner


#### How to enroll
```python
from ezeyeauth import Authenticator
auth = Authenticator()
auth.enroll("/path/to/left/iris.png", "/path/to/right/iris.png")
```

#### How to authenticate
```python
from ezeyeauth import Authenticator
auth = Authenticator()
match = auth.auth("/path/to/left/iris.png", "/path/to/right/iris.png")
print(match)

```


