Metadata-Version: 2.3
Name: fastnanoid
Version: 0.1.1
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
License-File: LICENSE
Requires-Python: >=3.8
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM

# fastnanoid

fastnanoid is a tiny, secure URL-friendly unique string ID generator for Python, written in Rust.

## Contributing

```sh
# local env
python -m venv .venv
source .venv/bin/activate
pip install maturin
# build and use
maturin develop
python -c 'import fastnanoid; print(fastnanoid.generate())'
# test
cargo test
```

## Credits

Inspired by [py-nanoid](https://github.com/puyuan/py-nanoid)

