معرفی شرکت ها


colorway-2.0.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Python package to change the text color of the python console.
ویژگی مقدار
سیستم عامل -
نام فایل colorway-2.0.0
نام colorway
نسخه کتابخانه 2.0.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Jack Greenacre
ایمیل نویسنده jaxk.programmer@gmail.com
آدرس صفحه اصلی https://github.com/xhelphin/colorway
آدرس اینترنتی https://pypi.org/project/colorway/
مجوز -
# 🎨 Colorway Python package to change the text color of the python console. ## 📦 Installation Run the following to install: ```bash $ pip install colorway ``` ## 🚀 Usage ### Foreground ```python from colorway_foreground import * # Generate red text with default background print(red_fg("Hello, World!")) # Generate bold red text with default background print(bold_red_fg("Hello, World!")) # Generate high-intensity red text with default background print(highintensity_red_fg("Hello, World!")) # Generate high-intensity bold red text with default background print(highintensity_bold_red_fg("Hello, World!")) # Generate custom colored text (red: 150, green: 78, blue: 120) with default background print(custom_fg(150,78,120,"Hello, World!")) ``` ### Background ```python from colorway_background import * # Generate text with red background print(red_bg("Hello, World!")) # Generate text with high-intensity red background print(highintensity_red_bg("Hello, World!")) # Generate text with custom colored background (red: 150, green: 78, blue: 120) print(custom_bg(150,78,120,"Hello, World!")) ``` ### Foreground & Background You can use foreground formatting and background formatting by placing them in each other. ```python from colorway_foreground import * from colorway_background import * # Generate red text with blue background print(red_fg(blue_bg("Hello, World!"))) ``` ### Manual You can also use the manual package to manually format parts of strings. ```python from colorway_manual import * # Generate red text print(f'{foreground.red}Hello, World!{format.clear}') # Generate text with red background print(f'{background.red}Hello, World!{format.clear}') # Generate text with a mix of colors print(f'{foreground.red}Hello, {background.blue}World!{format.clear}') ``` ### Available colors The colors available to use are: - ⬛ Black - 🟥 Red - 🟩 Green - 🟨 Yellow - 🟦 Blue - 🟪 Purple - 🟦 Cyan - ⬜ White ### Note Please be aware that you can **not** combine foreground and background formatting if you use high-intensity colors. Please be aware that custom colors may **not** be supported by all terminal outputs. ## 👨‍💻 Developing Colorway To install colorway, along with the tools you need to develop and run tests, run the following in your virtualenv: ```bash $ pip install -e .[dev] ``` ## 🚦 Development Progress Stable Development


نیازمندی

مقدار نام
>=3.7 pytest
>=0.48 check-manifest
>=3.8.0 twine


نحوه نصب


نصب پکیج whl colorway-2.0.0:

    pip install colorway-2.0.0.whl


نصب پکیج tar.gz colorway-2.0.0:

    pip install colorway-2.0.0.tar.gz