Simple Implementation for Remote Fingerprint Enrollment

This commit is contained in:
Shubhamoy Chakrabarty 2018-03-01 10:10:29 +05:30
parent 1d88a5cf14
commit 67f1b724fa

21
test_user_enrollment.py Normal file
View File

@ -0,0 +1,21 @@
# -*- coding: utf-8 -*-
import sys
from zk import ZK, const
sys.path.append("zk")
conn = None
zk = ZK('192.168.2.2', port=4370, timeout=5)
try:
conn = zk.connect()
conn.disable_device()
zk.set_user(26, 'Shubhamoy Chakrabarty', 0, '', '1', '26')
zk.enroll_user('26')
conn.enable_device()
except Exception, e:
print "Process terminate : {}".format(e)
finally:
if conn:
conn.disconnect()