Metadata-Version: 2.1
Name: word-identifiers
Version: 0.1.0
Summary: Provides a bijection between numbers and lists of english words.
Home-page: https://github.com/kavigupta/word-identifiers
Author: Kavi Gupta
Author-email: word_identifiers@kavigupta.org
License: UNKNOWN
Description: 
        # word_identifiers
        
        This is a bijection between non-negative integers and lists of words, in English. This is useful to quickly make urls or tokens.
        
        ## Usage
        
        ```python
        >>> from word_identifiers import words_to_id, id_to_words
        >>> word_to_id(["hi", "bye", "world"])
        148
        ```
        
        ## Wordlist
        
        The wordlist used is [this public domain wordlist](https://raw.githubusercontent.com/MichaelWehar/Public-Domain-Word-Lists/master/5000-more-common.txt), compiled by [Michael Wehar](https://github.com/MichaelWehar/Public-Domain-Word-Lists).
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Operating System :: OS Independent
Requires-Python: >=3.5
Description-Content-Type: text/markdown
