Metadata-Version: 2.1
Name: tripcode3
Version: 0.1.3
Summary: Yet another tripcode implementation in Python, just works steady
Home-page: https://github.com/ablaternae/py-tripcode
Author: JL Connor
License: GLWTPL
Keywords: tripcode,hash,imageboard
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: Freeware
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Communications
Classifier: Topic :: Utilities
Requires-Python: >=3
Description-Content-Type: text/markdown
License-File: LICENSE
License-File: LICENSE.md

![Lines of code](https://img.shields.io/tokei/lines/github/ablaternae/py-tripcode)
![Downloads](https://img.shields.io/pypi/dm/tripcode3)
[![Statistic](https://pepy.tech/badge/tripcode3/week)](https://pepy.tech/project/tripcode3)
[![GitHub](https://img.shields.io/github/license/ablaternae/py-tripcode)](https://github.com/ablaternae/py-tripcode/blob/trunk/LICENSE.md)

This module provides a function to calculate tripcodes:
```python
>>> from tripcode import tripcode
>>> tripcode('tea')
'WokonZwxw2'
>>> tripcode(u'ｋａｍｉ')
'yGAhoNiShI'
```

It doesn't use [crypt(3)](https://man7.org/linux/man-pages/man3/crypt.3.html) implementation, but require crossplatform `passlib`

Inspired  by https://pypi.org/project/tripcode/
