Metadata-Version: 2.1
Name: tripcode3
Version: 0.1.2.dev0
Summary: Yet another tripcode implementation in Python, just works steady
Home-page: https://github.com/ablaternae/py-tripcode
Author: JL Connor
Author-email: AbLaternae@outlook.com
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: License :: OSI Approved :: Common Public License
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Communications :: BBS
Classifier: Topic :: Communications :: Chat
Classifier: Topic :: Utilities
Requires-Python: >=3
Description-Content-Type: text/x-rst
License-File: LICENSE
Requires-Dist: passlib

This module provides a function to calculate tripcodes:

    $ pip install -U tripcode3
    >>> from tripcode import tripcode
    >>> tripcode('tea')
    'WokonZwxw2'
    >>> tripcode(u'ｋａｍｉ')
    'yGAhoNiShI'

It don't use ``crypt(3)`` implementation, but require crossplatform ``passlib``

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