Python bindings for zxcvbn-rs, the Rust implementation of zxcvbn
Documentation: https://fief-dev.github.io/zxcvbn-rs-py/
Source Code: https://github.com/fief-dev/zxcvbn-rs-py
pip install zxcvbn-rs-py
from zxcvbn_rs_py import zxcvbn
r = zxcvbn("correcthorsebatterystaple")
print(r.score)
Thanks to its Rust core, zxcvbn-rs-py is ~5 times faster than the pure Python implementation, zxcvbn-python.
You can serve the Mkdocs documentation with:
hatch run docs-serve
It'll automatically watch for changes in your code.
This project is licensed under the terms of the MIT license.