EasyOutput


NameEasyOutput JSON
Version 0.1.1 PyPI version JSON
download
home_pageNone
SummaryColored messages in the palm of your hand
upload_time2024-04-12 18:36:18
maintainerNone
docs_urlNone
authorNone
requires_python>=3.12
licenseMIT License Copyright (c) 2024 Brandon McKinney Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords colored messages easy error message success message warning message
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Easy Output

```py
# How to use đŸ‘Ŋ
from EasyOutput.EasyOutput import *
```

![PyPI - Version](https://img.shields.io/pypi/v/EasyOutput?style=for-the-badge&logo=pypi&label=EasyOutput&color=55%2C%20117%2C%20169)\
![PyPI - Downloads](https://img.shields.io/pypi/dm/EasyOutput?style=for-the-badge&logo=pypi)
\
![PyPI - Downloads](https://img.shields.io/pypi/dw/EasyOutput?style=for-the-badge&logo=pypi)
\
![PyPI - Downloads](https://img.shields.io/pypi/dd/EasyOutput?style=for-the-badge&logo=pypi)
\
![GitHub commit activity](https://img.shields.io/github/commit-activity/m/RasinBrand/EasyOutput?style=for-the-badge&logo=github)\
![easyoutput](https://i.gyazo.com/e8c1bb4fe08ade9c2ce6856386f48e1f.png)

> [!IMPORTANT]
> I am always updating this and sometimes those updates can go sideways. Please use the [issues](https://github.com/FrankAustin808/EasyOutput/issues/new/choose) section on github to notify me of anything i have missed! If you would like me to add something, please use the [Feature Request](https://github.com/FrankAustin808/EasyOutput/issues/new/choose) option!

## Information ℹī¸

**EasyOutput** consists of easy colored print options without the extra work.

```py
# As of v0.1.0 you can now change the color of your text.
from EasyOutput.EasyOutput import Colors, Success_Message

Success_Message("EasyOutput", color=Colors.Green)

# As of v0.1.1 you can change the color of the title and highlight!
from EasyOutput.EasyOutput import Colors, Highlights, Success_Message

Success_Message("EasyOutput", color=Colors.Green, highlight=Highlights.Blue, title_color=Colors.White)


```

In reality this is nothing special and just simply for my lazy use. You could easily make these yourself by doing:

```py
from colorama import Fore, Style

def Success(message):
    print(f"{Fore.GREEN + Style.BRIGHT}Success{Style.RESET_ALL}: {message}")

print(f"{Fore.GREEN + Style.BRIGHT}Success{Style.RESET_ALL}: {message}")
# and calling it like so

Success("Your Success Message")
```

If you would rather save time instead, you can always download it by entering **pip install EasyOutput** into your terminal!

## Important Information đŸĨ‡

**[colorama](https://pypi.org/project/colorama/) and It's creator has done all heavy lifting here please show him some love!** \
 **[Jonathan Hartley](https://github.com/tartley)**\
 **[colorama repo](https://github.com/tartley/colorama)**

## PYPI

[EasyOutput](https://pypi.org/project/EasyOutput/)

Badges from: [Shields.io](https://shields.io/badges)

<details>
<summary>Change-Log 📝</summary>

<details>
<summary>v0.0.1</summary>

    ADDED
    - Success Message
    - Error Message
    - Wait Message

</details>

<details>
<summary>v0.0.2</summary>
    
    ADDED
    - Connection Success Message
    - Connection Error Message

</details>

<details>
<summary>v0.0.3</summary>
    
    ADDED
    - Function Notes

    FIXED
    - Small Success Message Bugs

</details>

<details>
<summary>v0.0.4</summary>
    
    ADDED
    - Info Mesage
    - Note Message
</details>

<details>
<summary>v0.0.5</summary>

    ADDED
    - Title Print

    FIXED
    - Calling issues

</details>

<details>
<summary>v0.0.6</summary>

    ADDED
    - REDACTED Message

    REMOVED
    - Usless Classes

</details>

<details>
<summary>v0.0.7</summary>
    
    REMOVED
    - Wait Message

    ADDED
    - Warning Message

    FIXED
    - imports

</details>

<details>
<summary>v0.0.7.1</summary>

    FIXED
    -

</details>

<details>
<summary>v0.0.8</summary>

    ADDED
    - Highlight Message Option!

</details>

<details>
<summary>v0.0.8.1</summary>

    FIXED
    - Leaving all functions at the bottom of the file... IM SORRY

</details>

<details>
<summary>v0.0.9</summary>

    FIXED
    - Optioanl Highlight!

</details>

<details>
<summary>v0.0.9.1</summary>

    FIXED
    - Info message oddly popping up after every function

</details>

<details>
<summary>v0.1.0</summary>

    ADDED
    - Colored text option
    - Custom Message
    - Show all colors function

</details>

<details>
<summary>v0.1.1</summary>

    ADDED
    - Highlight any color!
    - Ability to color any part of the message!

    FIXED
    - Highlights

</details>

</details>

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "EasyOutput",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.12",
    "maintainer_email": "Brandon McKinney <brandonaustinmck01@icloud.com>",
    "keywords": "Colored Messages, Easy, Error Message, Success Message, Warning Message",
    "author": null,
    "author_email": "Brandon McKinney <brandonaustinmck01@icloud.com>",
    "download_url": "https://files.pythonhosted.org/packages/40/a4/a24c4c487ffab13dfa47cbae8cd39a30454d61a12cc52ae15cf3d243b2a5/easyoutput-0.1.1.tar.gz",
    "platform": null,
    "description": "# Easy Output\n\n```py\n# How to use \ud83d\udc7d\nfrom EasyOutput.EasyOutput import *\n```\n\n![PyPI - Version](https://img.shields.io/pypi/v/EasyOutput?style=for-the-badge&logo=pypi&label=EasyOutput&color=55%2C%20117%2C%20169)\\\n![PyPI - Downloads](https://img.shields.io/pypi/dm/EasyOutput?style=for-the-badge&logo=pypi)\n\\\n![PyPI - Downloads](https://img.shields.io/pypi/dw/EasyOutput?style=for-the-badge&logo=pypi)\n\\\n![PyPI - Downloads](https://img.shields.io/pypi/dd/EasyOutput?style=for-the-badge&logo=pypi)\n\\\n![GitHub commit activity](https://img.shields.io/github/commit-activity/m/RasinBrand/EasyOutput?style=for-the-badge&logo=github)\\\n![easyoutput](https://i.gyazo.com/e8c1bb4fe08ade9c2ce6856386f48e1f.png)\n\n> [!IMPORTANT]\n> I am always updating this and sometimes those updates can go sideways. Please use the [issues](https://github.com/FrankAustin808/EasyOutput/issues/new/choose) section on github to notify me of anything i have missed! If you would like me to add something, please use the [Feature Request](https://github.com/FrankAustin808/EasyOutput/issues/new/choose) option!\n\n## Information \u2139\ufe0f\n\n**EasyOutput** consists of easy colored print options without the extra work.\n\n```py\n# As of v0.1.0 you can now change the color of your text.\nfrom EasyOutput.EasyOutput import Colors, Success_Message\n\nSuccess_Message(\"EasyOutput\", color=Colors.Green)\n\n# As of v0.1.1 you can change the color of the title and highlight!\nfrom EasyOutput.EasyOutput import Colors, Highlights, Success_Message\n\nSuccess_Message(\"EasyOutput\", color=Colors.Green, highlight=Highlights.Blue, title_color=Colors.White)\n\n\n```\n\nIn reality this is nothing special and just simply for my lazy use. You could easily make these yourself by doing:\n\n```py\nfrom colorama import Fore, Style\n\ndef Success(message):\n    print(f\"{Fore.GREEN + Style.BRIGHT}Success{Style.RESET_ALL}: {message}\")\n\nprint(f\"{Fore.GREEN + Style.BRIGHT}Success{Style.RESET_ALL}: {message}\")\n# and calling it like so\n\nSuccess(\"Your Success Message\")\n```\n\nIf you would rather save time instead, you can always download it by entering **pip install EasyOutput** into your terminal!\n\n## Important Information \ud83e\udd47\n\n**[colorama](https://pypi.org/project/colorama/) and It's creator has done all heavy lifting here please show him some love!** \\\n **[Jonathan Hartley](https://github.com/tartley)**\\\n **[colorama repo](https://github.com/tartley/colorama)**\n\n## PYPI\n\n[EasyOutput](https://pypi.org/project/EasyOutput/)\n\nBadges from: [Shields.io](https://shields.io/badges)\n\n<details>\n<summary>Change-Log \ud83d\udcdd</summary>\n\n<details>\n<summary>v0.0.1</summary>\n\n    ADDED\n    - Success Message\n    - Error Message\n    - Wait Message\n\n</details>\n\n<details>\n<summary>v0.0.2</summary>\n    \n    ADDED\n    - Connection Success Message\n    - Connection Error Message\n\n</details>\n\n<details>\n<summary>v0.0.3</summary>\n    \n    ADDED\n    - Function Notes\n\n    FIXED\n    - Small Success Message Bugs\n\n</details>\n\n<details>\n<summary>v0.0.4</summary>\n    \n    ADDED\n    - Info Mesage\n    - Note Message\n</details>\n\n<details>\n<summary>v0.0.5</summary>\n\n    ADDED\n    - Title Print\n\n    FIXED\n    - Calling issues\n\n</details>\n\n<details>\n<summary>v0.0.6</summary>\n\n    ADDED\n    - REDACTED Message\n\n    REMOVED\n    - Usless Classes\n\n</details>\n\n<details>\n<summary>v0.0.7</summary>\n    \n    REMOVED\n    - Wait Message\n\n    ADDED\n    - Warning Message\n\n    FIXED\n    - imports\n\n</details>\n\n<details>\n<summary>v0.0.7.1</summary>\n\n    FIXED\n    -\n\n</details>\n\n<details>\n<summary>v0.0.8</summary>\n\n    ADDED\n    - Highlight Message Option!\n\n</details>\n\n<details>\n<summary>v0.0.8.1</summary>\n\n    FIXED\n    - Leaving all functions at the bottom of the file... IM SORRY\n\n</details>\n\n<details>\n<summary>v0.0.9</summary>\n\n    FIXED\n    - Optioanl Highlight!\n\n</details>\n\n<details>\n<summary>v0.0.9.1</summary>\n\n    FIXED\n    - Info message oddly popping up after every function\n\n</details>\n\n<details>\n<summary>v0.1.0</summary>\n\n    ADDED\n    - Colored text option\n    - Custom Message\n    - Show all colors function\n\n</details>\n\n<details>\n<summary>v0.1.1</summary>\n\n    ADDED\n    - Highlight any color!\n    - Ability to color any part of the message!\n\n    FIXED\n    - Highlights\n\n</details>\n\n</details>\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2024 Brandon McKinney  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.",
    "summary": "Colored messages in the palm of your hand",
    "version": "0.1.1",
    "project_urls": {
        "Feature Request": "https://github.com/RasinBrand/EasyOutput/issues/new/choose",
        "Homepage": "https://github.com/RasinBrand/EasyOutput/",
        "Issues": "https://github.com/RasinBrand/EasyOutput/issues/new/choose"
    },
    "split_keywords": [
        "colored messages",
        " easy",
        " error message",
        " success message",
        " warning message"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2a075c41af60e74034f530f36e9f00272c2c6a41256fd1dd4463d1050cb7198c",
                "md5": "9e2274914b26339ea6a764e7e649872c",
                "sha256": "18a008d129bdb99e47fe69280ebf634209f9540ba73a8bb8f860209197fe5a51"
            },
            "downloads": -1,
            "filename": "easyoutput-0.1.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "9e2274914b26339ea6a764e7e649872c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.12",
            "size": 5542,
            "upload_time": "2024-04-12T18:36:17",
            "upload_time_iso_8601": "2024-04-12T18:36:17.022060Z",
            "url": "https://files.pythonhosted.org/packages/2a/07/5c41af60e74034f530f36e9f00272c2c6a41256fd1dd4463d1050cb7198c/easyoutput-0.1.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "40a4a24c4c487ffab13dfa47cbae8cd39a30454d61a12cc52ae15cf3d243b2a5",
                "md5": "e9edafd0e68aa738269d099dafb5f944",
                "sha256": "ff72e023720ce107d7792a931070b264dc38ae75b18f66b2efefa8e86ec26287"
            },
            "downloads": -1,
            "filename": "easyoutput-0.1.1.tar.gz",
            "has_sig": false,
            "md5_digest": "e9edafd0e68aa738269d099dafb5f944",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.12",
            "size": 8312,
            "upload_time": "2024-04-12T18:36:18",
            "upload_time_iso_8601": "2024-04-12T18:36:18.702700Z",
            "url": "https://files.pythonhosted.org/packages/40/a4/a24c4c487ffab13dfa47cbae8cd39a30454d61a12cc52ae15cf3d243b2a5/easyoutput-0.1.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-12 18:36:18",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "RasinBrand",
    "github_project": "EasyOutput",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "easyoutput"
}
        
Elapsed time: 0.39218s