-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathPKG-INFO
More file actions
40 lines (32 loc) · 1.04 KB
/
PKG-INFO
File metadata and controls
40 lines (32 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
Metadata-Version: 2.1
Name: python-libfprint
Version: 0.2.1
Summary: Wrapper for libfprint v0.99
Home-page: https://github.com/jdiego/python-libfprint
Author: Diego Saraiva
License: UNKNOWN
Project-URL: Source, https://github.com/jdiego/python-libfprint
Description: # Requirements
- Cython >= 0.27
- libfprint == 0.99.0
# Install
```
pip install python-libfprint
```
# Usage
```python
import fprint
fprint.init()
devices = fprint.DiscoveredDevices()
if len(devices) > 0:
dev = devices[0].open_device()
print_data = dev.enroll_finger_loop()
print_data = fprint.PrintData.from_data(print_data.data)
result = dev.verify_finger_loop(print_data)
assert result is True
dev.close()
```
Keywords: fingerprint,fprint
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown