Skip to content

Instantly share code, notes, and snippets.

View Victormbg's full-sized avatar
💭
Happy

Victor Garcia Victormbg

💭
Happy
View GitHub Profile
@Victormbg
Victormbg / bio.py
Created July 3, 2019 20:12 — forked from samuelsonbrito/bio.py
Leitor Biométrico CIS com Python
#!/usr/bin/env python
import ctypes
FAKE = 0 #NÃO DETECTAR DEDO FALSO
#FAKE = 1; #DETECTAR DEDO FALSO
try:
sdk = ctypes.cdll.LoadLibrary('/usr/lib/libcis_sdk.so')
except:
print("Falha ao importar bibliotecas.")