Metadata-Version: 2.1
Name: tripcode3
Version: 0.1.2.dev2
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: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Communications
Classifier: Topic :: Utilities
Requires-Python: >=3
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/
