Metadata-Version: 2.1
Name: humor-langs
Version: 0.2
Summary: Translate your string to humorous text!
Home-page: https://github.com/Makiyu-py/humor_langs
Author: Makiyu
Author-email: dankerdanker11@gmail.com
License: MIT
Description: <h1 align="center">humor_langs</h1>
        <h4 align="center">Translate your string to humorous text!</h4>
        
        <p align="center">
            <img alt="PyPI Version" src="https://img.shields.io/pypi/v/humor_langs">
            <img alt="Package Downloads" src="https://static.pepy.tech/personalized-badge/humor-langs?period=total&units=international_system&left_color=grey&right_color=blue&left_text=Downloads">
            <img alt="Package License" src="https://img.shields.io/github/license/Makiyu-py/humor_langs">
        </p>
        
        <br>
        
        > **QUICK NOTE:**\
        > This package only has 3 functions at the moment, and planning to add more in the future, 
        > so watch out for future updates soon!
        
        ## What This Package Can Give You
        - [ ] Self-Worth
        - [ ] A Significant Other
        - [x] Some Funny, Humorous Text. Haha!
        
        ## Installation
        | Operating System |    Installation via pip    |
        | :--------------: |    :------------------     |
        |      Windows     | `pip install humor-langs`  |
        |    MacOS/Linux   | `pip3 install humor-langs` |
        
        ## Examples
        
        ### Converting a list of sentences to owo
        ```python
        import humor_langs
        
        humor_langs.owofy(["what are you doing over there?",
               "hello there reader!",
               "See you in the terminal!"
               ],
              _print=True)
        ```
        This will return...
        ```
        Hewoooooo >w< what awe u doing ovew thewe? O·w·O
        Haiiiiii 0w0 hewwo thewe weadew! ^w^
        *W* See u in the tewminyaw! ;;w;;
        ```
        
        ### Adding a list of sentences *clap* emojis on every other word
        ```python
        from humor_langs import clap_emojifier
        
        clap_emojifier(["what are you doing over there?",
               "hello there reader!",
               "See you in the terminal!"
               ],
              _print=True)
        ```
        then this would return...
        ```
        what 👏 are 👏 you 👏 doing 👏 over 👏 there?
        hello 👏 there 👏 reader!
        See 👏 you 👏 in 👏 the 👏 terminal!
        ```
        > **NOTE**:\
        > When testing it out, if the outputs look like some random question marks, 
        > *then your console probably doesn't support emojis.*
        
        ### Converting a list of sentences to a kind-of strong british accent
        ```python
        from humor_langs import strong_british_accent
        
        strong_british_accent(["what are you doing over there?",
               "hello there reader!",
               "See you in the terminal!"
               ],
              _print=True)
        ```
        then this'll return...
        ```
        whaht -ahe you doing ov-ah th-ahe?
        helloh th-ahe reahd-ah!
        Seah you in the t-ahminahl!
        ```
        (yea, it's kind of bad~)
        
        ## License
        This package is [currently under the MIT License](https://github.com/Makiyu-py/humor_langs/blob/master/LICENSE) 
        as of the moment.
        [Click here](https://choosealicense.com/licenses/mit/)
        to learn more about the license.
        
Keywords: Humor owo translate copypasta
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
