Skip to content

Commit 5d79bbf

Browse files
v1.0.2
1 parent cbbfd3f commit 5d79bbf

File tree

6 files changed

+34
-9
lines changed

6 files changed

+34
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ from ColorChalks import ColorChalks
2424
# Print "Hello World!" in yellow color.
2525
print(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)
2.9 KB
Binary file not shown.

dist/ColorChalks-1.0.2.tar.gz

2.57 KB
Binary file not shown.

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[metadata]
22
name = ColorChalks
3-
version = 1.0.1
3+
version = 1.0.2
44
author = Sagar-Sharma-7
55
author_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.
77
long_description = file: README.md
88
long_description_content_type = text/markdown
99
url = https://github.com/Sagar-Sharma-7/ColorChalks

src/ColorChalks.egg-info/PKG-INFO

Lines changed: 29 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Metadata-Version: 2.1
22
Name: 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.
55
Home-page: https://github.com/Sagar-Sharma-7/ColorChalks
66
Author: Sagar-Sharma-7
77
Author-email: 6969sagarsharma@gmail.com
@@ -13,5 +13,30 @@ Requires-Python: >=3.6
1313
Description-Content-Type: text/markdown
1414
License-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+
[![PyPI version](https://badge.fury.io/py/ColorChalks.svg)](https://badge.fury.io/py/ColorChalks)
23+
[![made-with-python](https://img.shields.io/badge/Made%20with-Python-1f425f.svg)](https://www.python.org/)
24+
[![PyPI license](https://img.shields.io/pypi/l/ansicolortags.svg)](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)

tests/test1.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from 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")

0 commit comments

Comments
 (0)