palettepy


Namepalettepy JSON
Version 1.0.0 PyPI version JSON
download
home_pagehttps://www.linkedin.com/in/mario-nageh-744b67116/
Summaryhelps you to print colored text in easy way and has support to rgb colors
upload_time2023-03-12 08:19:29
maintainer
docs_urlNone
authorMario Nageh
requires_python
licenseMIT
keywords colors printing styles
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            

## PalettePy



PalettePy: A Python library for powerful and easy console text styling with RGB 24-bit colors and default printing styles.



Description

-----------



PalettePy is an incredible Python library that can make your console outputs much more visually appealing and powerful. With PalettePy, you can style your text with a variety of colors and styles using RGB 24-bit colors, set different foreground and background colors, and create stylish print outputs without worrying about string concatenation.



Not only does PalettePy make styling your text easy and effortless, it also supports default printing styles, which means that you don't need to edit your print function to enjoy the benefits of this library. This makes it easy to create eye-catching and attractive console outputs that will grab people's attention and make your code stand out. Overall, if you want to take your console outputs to the next level, PalettePy is definitely worth checking out!



Installation

------------

    pip install palettepy



Usage

-----

PalettePy is an amazing Python library that is supported on Linux and Mac, and partially on Windows (with support for colors but not text styling) [Windwos 10 version number 1607 or an earlier version]





 



    from palettepy import init,print,Printer





    # RGB RED foreground Color , and Yellow background

    init(Printer(foreground_color="#ff0000",background_color="#F7C04A",bold=True))





    # Any Print Will Have The Defualt Configration

    print("Hello PalettePy")



![Hello](https://raw.githubusercontent.com/MarioNageh/PalettePy/master/screens/hello_palette.png)

![Hello](https://raw.githubusercontent.com/MarioNageh/PalettePy/master/screens/hello_lin.png)



```python

    # Import the necessary functions from the palettepy module

from palettepy import Printer, init, print



# Create a Printer object with a custom style

my_printer = Printer(foreground_color="#ff0000", background_color="#F7C04A", bold=True, italic=True, underline=True,

                     strikethrough=True)



# Initialize the printing environment with our custom Printer object

init(my_printer)



# Print some text using our custom style

print("Hello PalettePy")

```



**Printer class attributes:**



- `foreground_color`: A string representing the desired foreground color of the text. This can be specified as a 24-bit RGB value (e.g. "#FF0000" for red) or a named color (e.g. "red").



- `background_color`: A string representing the desired background color of the text. This can be specified in the same way as `foreground_color`.



- `bold`: A boolean value indicating whether the text should be displayed in bold font.



- `italic`: A boolean value indicating whether the text should be displayed in italic font.



- `underline`: A boolean value indicating whether the text should be underlined.



- `strikethrough`: A boolean value indicating whether the text should be displayed with a strikethrough line.





![Style](https://raw.githubusercontent.com/MarioNageh/PalettePy/master/screens/style.png)





**Awesome Feature: Easy Text Styling with PalettePy**



One of the most powerful features of PalettePy is its ability to make printing text in different colors and styles incredibly easy. With just a few lines of code, you can create custom styles for your text and use them to print messages without any string concatenation or formatting errors.



The example code below demonstrates how to use PalettePy to create custom text styles and print messages in different colors:











**Creating color styles**



To create a color style for your text, you need to use the color_style_foreground or color_style_background function. These functions take a hex color code as an argument and return a function that can be used to apply the color style to your text.

Here's an example of how you can create a green foreground color style:



```python

    green_fg = color_style_foreground("#008000")

```



Similarly, you can create a blue background color style like this:



```python

    blue_bg = color_style_background("#0000FF")

```





**Applying styles to text**



Once you have created a color style, you can use it to apply the color and style to your text. Here's an example of how you can apply a green foreground color style to your text:





```python

    success = bold(italic(green_fg("Success!")))

```



This creates a style that applies bold and italic styles to your text, and then applies the green foreground color style to it. You can then print the styled text using the print function:





```python

    print(success)

```



**Resetting the style**



```python

    print(f"Here is Default Configuration {reset(success('Success Message'))}")

```















Examples

------------



```python

    # Import the necessary functions from the palettepy module

from palettepy import init, color_style_foreground



# Initialize PalettePy

init()



# Define some custom styles for different colors

green = color_style_foreground("#00ff00")

red = color_style_foreground("#ff0000")

blue = color_style_foreground("#0000ff")



# Print some text using our custom styles

print(green("Hello PalettePy In Green"))

print(red("Hello PalettePy In Red"))

print(blue("Hello PalettePy In Blue"))



```



**Other Big Example With More Styles**



```python



from palettepy import color_style_foreground, color_style_background, bold, italic, init



init()



# Success message styles

black = color_style_foreground("#000000")

lime_green = color_style_background("#32CD32")

success = black(lime_green(bold(italic)))

blue_bg = color_style_background("#0000FF")

green_bg = color_style_background("#008000")



red = color_style_foreground("#FF0000")

yellow = color_style_foreground("#FFFF00")

blue = color_style_foreground("#0000FF")

green = color_style_foreground("#008000")

purple = color_style_foreground("#800080")

turquoise = color_style_foreground("#40E0D0")

orange = color_style_foreground("#FFA500")

pink = color_style_foreground("#FFC0CB")

gray = color_style_foreground("#808080")

success2 = bold(italic(green))

success3 = blue(italic)

success4 = turquoise(bold)

success5 = yellow



# Failure message styles

red_bg = color_style_background("#FF0000")

red_fg = color_style_foreground("#FFFFFF")

fail = red_bg(red_fg(bold(italic)))



fail2 = pink(italic)

fail4 = gray(bold)

fail5 = red



# General message styles

white = color_style_foreground("#FFFFFF")

black_bg = color_style_background("#000000")

black_fg = color_style_foreground("#FFFFFF")

info = black_fg(black_bg(bold(italic)))

warning = black_fg(color_style_background("#FFA500")(bold(italic)))

highlight = black_fg(color_style_background("#FFFF00")(bold(italic)))

attention = black_fg(color_style_background("#FFC0CB")(bold(italic)))

special = black_fg(color_style_background("#800080")(bold(italic)))

primary = black_fg(color_style_background("#0000FF")(bold(italic)))



# Print the messages

print(success("Success Login"))

print(fail("Fail To Login"))

print(success2("Success Message!"))

print(success3("Great job!"))

print(success4("Well done!"))

print(success5("Success!"))

print(fail2("Oops, something went wrong!"))

print(fail4("Uh oh, something went wrong."))

print(fail5("Failed!"))



# Additional examples

print(blue("This text is blue."))

print(green("This text is green."))

print(purple("This text is purple."))

print(turquoise("This text is turquoise."))

print(orange("This text is orange."))

print(yellow("This text is yellow."))

print(pink("This text is pink."))

print(gray("This text is gray."))

print(success5("This text is success!"))

print(fail5("This text is failed!"))



print(blue_bg("This text has a blue background."))

print(green_bg("This text has a green background."))



print(info("Here is some information."))

print(warning("Warning!"))

print(highlight("This is important!"))

print(attention("Attention needed."))

print(special("Something special!"))

print(primary("Primary message."))





```



![Style](https://raw.githubusercontent.com/MarioNageh/PalettePy/master/screens/ex1.png)





**Example**



```python



from palettepy import color_style_foreground, color_style_background, bold, italic, init



init()



start = 0

end = 256

step = 32



# Loop over the range of integers and generate hex color codes

for i in range(start, end, step):

    color_code = hex(i)[2:].zfill(2) * 3

    color_style = color_style_foreground(f"#{color_code}")

    print(color_style(f"This text is in color #{color_code}"))



# Loop over the range of integers and generate background colors

for i in range(start, end, step):

    color_code = hex(i)[2:].zfill(2) * 3

    color_style = color_style_background(f"#{color_code}")

    print(color_style(f"This text has a background color of #{color_code}"))







```



![Style](https://raw.githubusercontent.com/MarioNageh/PalettePy/master/screens/ex2.png)









**Example Of Some Colors**



```python



from palettepy import color_style_foreground, color_style_background, bold, italic, init



init()



r_values = range(0, 256, 32)

g_values = range(0, 256, 32)

b_values = range(0, 256, 32)

count = 0

for r in r_values:

    for g in g_values:

        for b in b_values:

            # Convert the RGB values to a hex string

            hex_code = f"#{r:02X}{g:02X}{b:02X}"



            # Create a color style using the hex code

            bg_style = color_style_background(hex_code)



            # Create a success message using the color style

            success = bold(italic(bg_style("       ")))



            # Print the success message

            print(success, end=' ')



            # Increment the color count

            count += 1



            # Print a newline after printing 8 colors in a line

            if count % 8 == 0:

                print()





```



![Style](https://raw.githubusercontent.com/MarioNageh/PalettePy/master/screens/ex3.png)











**Reset**



If you want to use the default print() function but still apply color and style configurations, you can do so by wrapping the styled text with the reset() function. This function will reset the color and style to the default values after the styled text has been printed.



Here's an example of how you can use the reset() function with the print() function:



```python



from palettepy import init, print, Printer, reset, color_style_background



# RGB RED foreground Color , and Yellow background

init(Printer(foreground_color="#ff0000", background_color="#F7C04A", bold=True))



green_bg = reset(color_style_background("#008000"))



# Any Print Will Have The Defualt Configration

print(f"Hello PalettePy {green_bg('Here Is Green')}")



```



In this example, we initialize PalettePy with a red foreground color and a yellow background color. We then create a green background color style and use it to style the text "Here Is Green". We wrap the styled text with the reset() function to reset the color and style to the default values after the text has been printed.



The output of this code will be "Hello PalettePy Here Is Green", where "Here Is Green" is printed with a green background color and the rest of the text is printed with the default color and style.



![Style](https://raw.githubusercontent.com/MarioNageh/PalettePy/master/screens/ex4.png)


            

Raw data

            {
    "_id": null,
    "home_page": "https://www.linkedin.com/in/mario-nageh-744b67116/",
    "name": "palettepy",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "COLORS,PRINTING,STYLES",
    "author": "Mario Nageh",
    "author_email": "marionageh7@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/5b/67/1fb7bdd4845888bf6c9efc8511c5c45ea46815ad87ae998058caa43ab979/palettepy-1.0.0.tar.gz",
    "platform": null,
    "description": "\r\r\n## PalettePy\r\r\n\r\r\nPalettePy: A Python library for powerful and easy console text styling with RGB 24-bit colors and default printing styles.\r\r\n\r\r\nDescription\r\r\n-----------\r\r\n\r\r\nPalettePy is an incredible Python library that can make your console outputs much more visually appealing and powerful. With PalettePy, you can style your text with a variety of colors and styles using RGB 24-bit colors, set different foreground and background colors, and create stylish print outputs without worrying about string concatenation.\r\r\n\r\r\nNot only does PalettePy make styling your text easy and effortless, it also supports default printing styles, which means that you don't need to edit your print function to enjoy the benefits of this library. This makes it easy to create eye-catching and attractive console outputs that will grab people's attention and make your code stand out. Overall, if you want to take your console outputs to the next level, PalettePy is definitely worth checking out!\r\r\n\r\r\nInstallation\r\r\n------------\r\r\n    pip install palettepy\r\r\n\r\r\nUsage\r\r\n-----\r\r\nPalettePy is an amazing Python library that is supported on Linux and Mac, and partially on Windows (with support for colors but not text styling) [Windwos 10 version number 1607 or an earlier version]\r\r\n\r\r\n\r\r\n \r\r\n\r\r\n    from palettepy import init,print,Printer\r\r\n\r\r\n\r\r\n    # RGB RED foreground Color , and Yellow background\r\r\n    init(Printer(foreground_color=\"#ff0000\",background_color=\"#F7C04A\",bold=True))\r\r\n\r\r\n\r\r\n    # Any Print Will Have The Defualt Configration\r\r\n    print(\"Hello PalettePy\")\r\r\n\r\r\n![Hello](https://raw.githubusercontent.com/MarioNageh/PalettePy/master/screens/hello_palette.png)\r\r\n![Hello](https://raw.githubusercontent.com/MarioNageh/PalettePy/master/screens/hello_lin.png)\r\r\n\r\r\n```python\r\r\n    # Import the necessary functions from the palettepy module\r\r\nfrom palettepy import Printer, init, print\r\r\n\r\r\n# Create a Printer object with a custom style\r\r\nmy_printer = Printer(foreground_color=\"#ff0000\", background_color=\"#F7C04A\", bold=True, italic=True, underline=True,\r\r\n                     strikethrough=True)\r\r\n\r\r\n# Initialize the printing environment with our custom Printer object\r\r\ninit(my_printer)\r\r\n\r\r\n# Print some text using our custom style\r\r\nprint(\"Hello PalettePy\")\r\r\n```\r\r\n\r\r\n**Printer class attributes:**\r\r\n\r\r\n- `foreground_color`: A string representing the desired foreground color of the text. This can be specified as a 24-bit RGB value (e.g. \"#FF0000\" for red) or a named color (e.g. \"red\").\r\r\n\r\r\n- `background_color`: A string representing the desired background color of the text. This can be specified in the same way as `foreground_color`.\r\r\n\r\r\n- `bold`: A boolean value indicating whether the text should be displayed in bold font.\r\r\n\r\r\n- `italic`: A boolean value indicating whether the text should be displayed in italic font.\r\r\n\r\r\n- `underline`: A boolean value indicating whether the text should be underlined.\r\r\n\r\r\n- `strikethrough`: A boolean value indicating whether the text should be displayed with a strikethrough line.\r\r\n\r\r\n\r\r\n![Style](https://raw.githubusercontent.com/MarioNageh/PalettePy/master/screens/style.png)\r\r\n\r\r\n\r\r\n**Awesome Feature: Easy Text Styling with PalettePy**\r\r\n\r\r\nOne of the most powerful features of PalettePy is its ability to make printing text in different colors and styles incredibly easy. With just a few lines of code, you can create custom styles for your text and use them to print messages without any string concatenation or formatting errors.\r\r\n\r\r\nThe example code below demonstrates how to use PalettePy to create custom text styles and print messages in different colors:\r\r\n\r\r\n\r\r\n\r\r\n\r\r\n\r\r\n**Creating color styles**\r\r\n\r\r\nTo create a color style for your text, you need to use the color_style_foreground or color_style_background function. These functions take a hex color code as an argument and return a function that can be used to apply the color style to your text.\r\r\nHere's an example of how you can create a green foreground color style:\r\r\n\r\r\n```python\r\r\n    green_fg = color_style_foreground(\"#008000\")\r\r\n```\r\r\n\r\r\nSimilarly, you can create a blue background color style like this:\r\r\n\r\r\n```python\r\r\n    blue_bg = color_style_background(\"#0000FF\")\r\r\n```\r\r\n\r\r\n\r\r\n**Applying styles to text**\r\r\n\r\r\nOnce you have created a color style, you can use it to apply the color and style to your text. Here's an example of how you can apply a green foreground color style to your text:\r\r\n\r\r\n\r\r\n```python\r\r\n    success = bold(italic(green_fg(\"Success!\")))\r\r\n```\r\r\n\r\r\nThis creates a style that applies bold and italic styles to your text, and then applies the green foreground color style to it. You can then print the styled text using the print function:\r\r\n\r\r\n\r\r\n```python\r\r\n    print(success)\r\r\n```\r\r\n\r\r\n**Resetting the style**\r\r\n\r\r\n```python\r\r\n    print(f\"Here is Default Configuration {reset(success('Success Message'))}\")\r\r\n```\r\r\n\r\r\n\r\r\n\r\r\n\r\r\n\r\r\n\r\r\n\r\r\nExamples\r\r\n------------\r\r\n\r\r\n```python\r\r\n    # Import the necessary functions from the palettepy module\r\r\nfrom palettepy import init, color_style_foreground\r\r\n\r\r\n# Initialize PalettePy\r\r\ninit()\r\r\n\r\r\n# Define some custom styles for different colors\r\r\ngreen = color_style_foreground(\"#00ff00\")\r\r\nred = color_style_foreground(\"#ff0000\")\r\r\nblue = color_style_foreground(\"#0000ff\")\r\r\n\r\r\n# Print some text using our custom styles\r\r\nprint(green(\"Hello PalettePy In Green\"))\r\r\nprint(red(\"Hello PalettePy In Red\"))\r\r\nprint(blue(\"Hello PalettePy In Blue\"))\r\r\n\r\r\n```\r\r\n\r\r\n**Other Big Example With More Styles**\r\r\n\r\r\n```python\r\r\n\r\r\nfrom palettepy import color_style_foreground, color_style_background, bold, italic, init\r\r\n\r\r\ninit()\r\r\n\r\r\n# Success message styles\r\r\nblack = color_style_foreground(\"#000000\")\r\r\nlime_green = color_style_background(\"#32CD32\")\r\r\nsuccess = black(lime_green(bold(italic)))\r\r\nblue_bg = color_style_background(\"#0000FF\")\r\r\ngreen_bg = color_style_background(\"#008000\")\r\r\n\r\r\nred = color_style_foreground(\"#FF0000\")\r\r\nyellow = color_style_foreground(\"#FFFF00\")\r\r\nblue = color_style_foreground(\"#0000FF\")\r\r\ngreen = color_style_foreground(\"#008000\")\r\r\npurple = color_style_foreground(\"#800080\")\r\r\nturquoise = color_style_foreground(\"#40E0D0\")\r\r\norange = color_style_foreground(\"#FFA500\")\r\r\npink = color_style_foreground(\"#FFC0CB\")\r\r\ngray = color_style_foreground(\"#808080\")\r\r\nsuccess2 = bold(italic(green))\r\r\nsuccess3 = blue(italic)\r\r\nsuccess4 = turquoise(bold)\r\r\nsuccess5 = yellow\r\r\n\r\r\n# Failure message styles\r\r\nred_bg = color_style_background(\"#FF0000\")\r\r\nred_fg = color_style_foreground(\"#FFFFFF\")\r\r\nfail = red_bg(red_fg(bold(italic)))\r\r\n\r\r\nfail2 = pink(italic)\r\r\nfail4 = gray(bold)\r\r\nfail5 = red\r\r\n\r\r\n# General message styles\r\r\nwhite = color_style_foreground(\"#FFFFFF\")\r\r\nblack_bg = color_style_background(\"#000000\")\r\r\nblack_fg = color_style_foreground(\"#FFFFFF\")\r\r\ninfo = black_fg(black_bg(bold(italic)))\r\r\nwarning = black_fg(color_style_background(\"#FFA500\")(bold(italic)))\r\r\nhighlight = black_fg(color_style_background(\"#FFFF00\")(bold(italic)))\r\r\nattention = black_fg(color_style_background(\"#FFC0CB\")(bold(italic)))\r\r\nspecial = black_fg(color_style_background(\"#800080\")(bold(italic)))\r\r\nprimary = black_fg(color_style_background(\"#0000FF\")(bold(italic)))\r\r\n\r\r\n# Print the messages\r\r\nprint(success(\"Success Login\"))\r\r\nprint(fail(\"Fail To Login\"))\r\r\nprint(success2(\"Success Message!\"))\r\r\nprint(success3(\"Great job!\"))\r\r\nprint(success4(\"Well done!\"))\r\r\nprint(success5(\"Success!\"))\r\r\nprint(fail2(\"Oops, something went wrong!\"))\r\r\nprint(fail4(\"Uh oh, something went wrong.\"))\r\r\nprint(fail5(\"Failed!\"))\r\r\n\r\r\n# Additional examples\r\r\nprint(blue(\"This text is blue.\"))\r\r\nprint(green(\"This text is green.\"))\r\r\nprint(purple(\"This text is purple.\"))\r\r\nprint(turquoise(\"This text is turquoise.\"))\r\r\nprint(orange(\"This text is orange.\"))\r\r\nprint(yellow(\"This text is yellow.\"))\r\r\nprint(pink(\"This text is pink.\"))\r\r\nprint(gray(\"This text is gray.\"))\r\r\nprint(success5(\"This text is success!\"))\r\r\nprint(fail5(\"This text is failed!\"))\r\r\n\r\r\nprint(blue_bg(\"This text has a blue background.\"))\r\r\nprint(green_bg(\"This text has a green background.\"))\r\r\n\r\r\nprint(info(\"Here is some information.\"))\r\r\nprint(warning(\"Warning!\"))\r\r\nprint(highlight(\"This is important!\"))\r\r\nprint(attention(\"Attention needed.\"))\r\r\nprint(special(\"Something special!\"))\r\r\nprint(primary(\"Primary message.\"))\r\r\n\r\r\n\r\r\n```\r\r\n\r\r\n![Style](https://raw.githubusercontent.com/MarioNageh/PalettePy/master/screens/ex1.png)\r\r\n\r\r\n\r\r\n**Example**\r\r\n\r\r\n```python\r\r\n\r\r\nfrom palettepy import color_style_foreground, color_style_background, bold, italic, init\r\r\n\r\r\ninit()\r\r\n\r\r\nstart = 0\r\r\nend = 256\r\r\nstep = 32\r\r\n\r\r\n# Loop over the range of integers and generate hex color codes\r\r\nfor i in range(start, end, step):\r\r\n    color_code = hex(i)[2:].zfill(2) * 3\r\r\n    color_style = color_style_foreground(f\"#{color_code}\")\r\r\n    print(color_style(f\"This text is in color #{color_code}\"))\r\r\n\r\r\n# Loop over the range of integers and generate background colors\r\r\nfor i in range(start, end, step):\r\r\n    color_code = hex(i)[2:].zfill(2) * 3\r\r\n    color_style = color_style_background(f\"#{color_code}\")\r\r\n    print(color_style(f\"This text has a background color of #{color_code}\"))\r\r\n\r\r\n\r\r\n\r\r\n```\r\r\n\r\r\n![Style](https://raw.githubusercontent.com/MarioNageh/PalettePy/master/screens/ex2.png)\r\r\n\r\r\n\r\r\n\r\r\n\r\r\n**Example Of Some Colors**\r\r\n\r\r\n```python\r\r\n\r\r\nfrom palettepy import color_style_foreground, color_style_background, bold, italic, init\r\r\n\r\r\ninit()\r\r\n\r\r\nr_values = range(0, 256, 32)\r\r\ng_values = range(0, 256, 32)\r\r\nb_values = range(0, 256, 32)\r\r\ncount = 0\r\r\nfor r in r_values:\r\r\n    for g in g_values:\r\r\n        for b in b_values:\r\r\n            # Convert the RGB values to a hex string\r\r\n            hex_code = f\"#{r:02X}{g:02X}{b:02X}\"\r\r\n\r\r\n            # Create a color style using the hex code\r\r\n            bg_style = color_style_background(hex_code)\r\r\n\r\r\n            # Create a success message using the color style\r\r\n            success = bold(italic(bg_style(\"       \")))\r\r\n\r\r\n            # Print the success message\r\r\n            print(success, end=' ')\r\r\n\r\r\n            # Increment the color count\r\r\n            count += 1\r\r\n\r\r\n            # Print a newline after printing 8 colors in a line\r\r\n            if count % 8 == 0:\r\r\n                print()\r\r\n\r\r\n\r\r\n```\r\r\n\r\r\n![Style](https://raw.githubusercontent.com/MarioNageh/PalettePy/master/screens/ex3.png)\r\r\n\r\r\n\r\r\n\r\r\n\r\r\n\r\r\n**Reset**\r\r\n\r\r\nIf you want to use the default print() function but still apply color and style configurations, you can do so by wrapping the styled text with the reset() function. This function will reset the color and style to the default values after the styled text has been printed.\r\r\n\r\r\nHere's an example of how you can use the reset() function with the print() function:\r\r\n\r\r\n```python\r\r\n\r\r\nfrom palettepy import init, print, Printer, reset, color_style_background\r\r\n\r\r\n# RGB RED foreground Color , and Yellow background\r\r\ninit(Printer(foreground_color=\"#ff0000\", background_color=\"#F7C04A\", bold=True))\r\r\n\r\r\ngreen_bg = reset(color_style_background(\"#008000\"))\r\r\n\r\r\n# Any Print Will Have The Defualt Configration\r\r\nprint(f\"Hello PalettePy {green_bg('Here Is Green')}\")\r\r\n\r\r\n```\r\r\n\r\r\nIn this example, we initialize PalettePy with a red foreground color and a yellow background color. We then create a green background color style and use it to style the text \"Here Is Green\". We wrap the styled text with the reset() function to reset the color and style to the default values after the text has been printed.\r\r\n\r\r\nThe output of this code will be \"Hello PalettePy Here Is Green\", where \"Here Is Green\" is printed with a green background color and the rest of the text is printed with the default color and style.\r\r\n\r\r\n![Style](https://raw.githubusercontent.com/MarioNageh/PalettePy/master/screens/ex4.png)\r\r\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "helps you to print colored text in easy way and has support to rgb colors",
    "version": "1.0.0",
    "split_keywords": [
        "colors",
        "printing",
        "styles"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5b671fb7bdd4845888bf6c9efc8511c5c45ea46815ad87ae998058caa43ab979",
                "md5": "8962ab646dba2165789d69cd40e6382f",
                "sha256": "9934f424998bd5e887161b51ab673f11a0a6bbb11bbfec8eaf7d54969ca90ce0"
            },
            "downloads": -1,
            "filename": "palettepy-1.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "8962ab646dba2165789d69cd40e6382f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 11601,
            "upload_time": "2023-03-12T08:19:29",
            "upload_time_iso_8601": "2023-03-12T08:19:29.419698Z",
            "url": "https://files.pythonhosted.org/packages/5b/67/1fb7bdd4845888bf6c9efc8511c5c45ea46815ad87ae998058caa43ab979/palettepy-1.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-03-12 08:19:29",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "lcname": "palettepy"
}
        
Elapsed time: 0.04415s