From 02a5861627a8778e4bb4648ed1bc5c7b6b74e23e Mon Sep 17 00:00:00 2001 From: Aniruddha Mukherjee Date: Mon, 30 Jun 2025 09:53:30 -0700 Subject: [PATCH] Minor change Corrected the import statements --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 013b91c..cd82154 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ only supporting 14 of the 256+ supported colors in most (modern) terminals. ## Elegant/Minimalistic access to colors and styles ``` python -from cli_color import red, bright_yellow, green, bold +from cli_color_py import red, bright_yellow, green, bold print(green("hello")) print(bold(red("world"))) @@ -27,7 +27,7 @@ explicitly choose between the foreground or background. cli-color-py isn't really made for doing stuff like this, but it is possible ```python -from cli_color.color import Color, Attribute +from cli_color_py.color import Color, Attribute print( Color.RED.default(), @@ -55,7 +55,7 @@ Supported attributes are: `reset`, `bold`, `underline`, `blink` Attributes work similar to Colors but cannot be displayed on the background: ``` python -from cli_color import blink +from cli_color_py import blink print(blink("LOTTERY WINNER!!!")) ```