File tree Expand file tree Collapse file tree 6 files changed +34
-9
lines changed
Expand file tree Collapse file tree 6 files changed +34
-9
lines changed Original file line number Diff line number Diff line change @@ -24,4 +24,4 @@ from ColorChalks import ColorChalks
2424# Print "Hello World!" in yellow color.
2525print (ColorChalks.FCOLORS .Yellow + " Hello World!" )
2626```
27- ** Note:** Version 1.0.1 comes only with foreground colors (FCOLORS)
27+ ** Note:** Version 1.0.2 comes only with foreground colors (FCOLORS)
Original file line number Diff line number Diff line change 11[metadata]
22name = ColorChalks
3- version = 1.0.1
3+ version = 1.0.2
44author = Sagar-Sharma-7
55author_email = 6969sagarsharma@gmail.com
6- description = You can use different foreground and background colors in terminal using tcolor module.
6+ description = You can use different foreground and background colors in terminal using ColorChalks module.
77long_description = file: README.md
88long_description_content_type = text/markdown
99url = https://github.com/Sagar-Sharma-7/ColorChalks
Original file line number Diff line number Diff line change 11Metadata-Version: 2.1
22Name: ColorChalks
3- Version: 1.0.1
4- Summary: You can use different foreground and background colors in terminal using tcolor module.
3+ Version: 1.0.2
4+ Summary: You can use different foreground and background colors in terminal using ColorChalks module.
55Home-page: https://github.com/Sagar-Sharma-7/ColorChalks
66Author: Sagar-Sharma-7
77Author-email: 6969sagarsharma@gmail.com
@@ -13,5 +13,30 @@ Requires-Python: >=3.6
1313Description-Content-Type: text/markdown
1414License-File: LICENSE
1515
16- # T_colors
17- Work in progress...
16+ <h1 align="center">
17+ <img src="./src/img/Color2.png" alt="ColorChalks">
18+ </h1>
19+
20+ > 🖌️Module for terminal string styling
21+
22+ [](https://badge.fury.io/py/ColorChalks)
23+ [](https://www.python.org/)
24+ [](https://pypi.python.org/pypi/ansicolortags/)
25+
26+ ---
27+
28+ <br>
29+
30+ ## Installation
31+ ```sh
32+ pip install ColorChalks
33+ ```
34+
35+ ## Usage
36+ ```python
37+ from ColorChalks import ColorChalks
38+
39+ # Print "Hello World!" in yellow color.
40+ print(ColorChalks.FCOLORS.Yellow + "Hello World!")
41+ ```
42+ **Note:** Version 1.0.2 comes only with foreground colors (FCOLORS)
Original file line number Diff line number Diff line change 11from ColorChalks import ColorChalks
2- print (ColorChalks .colors .Red + "Hello" )
3- print (ColorChalks .colors .Blue + "Hello" )
2+ print (ColorChalks .FCOLORS .Red + "Hello" )
3+ print (ColorChalks .FCOLORS .Blue + "Hello" )
You can’t perform that action at this time.
0 commit comments