Can wxpython be used to develop biometric application

hi
I don’t know if wxpython can be used in developing a biometric application for finger print, iris and face recognition? . if possible how can go about this. thanks

wxPython is a GUI toolkit - a user-interface framework for Python
programs. As such, it doesn't directly talk to iris or fingerprint
scanners, or to cameras, and it has nothing at all to do with the logic of
storing/recognizing faces/irises/prints.

There ARE, however, Python modules for just about everything you can
imagine, and I bet somebody has written biometric modules already (e.g.
GitHub - pingali/pyAadhaarAuth: Python package for Aadhaar authentication). So: write a Python application
that does biometric authentication, and then wrap it in a spiffy wxPython
user interface!

···

On Tue, Jul 16, 2013 at 1:22 PM, nickson <nickson1301@gmail.com> wrote:

hi
I don't know if wxpython can be used in developing a biometric application
for finger print, iris and face recognition? . if possible how can go
about this. thanks

Thanks for your response