Skip to content

Instantly share code, notes, and snippets.

View Victormbg's full-sized avatar
💭
Happy

Victor Garcia Victormbg

💭
Happy
View GitHub Profile
@samuelsonbrito
samuelsonbrito / bio.py
Created May 3, 2017 21:19
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.")