-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b754fb1
commit c847883
Showing
9 changed files
with
13 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,18 +43,18 @@ def main(): | |
start_color([pattern1, pattern2, pattern3, email, strike, italic,blink]) | ||
|
||
# Use the custom print function with colorization | ||
print('Colorpattern v1.4.2') | ||
print('Colorpattern v1.4.5') | ||
print('By Croketillo - [email protected]') | ||
print('NEW!!! - NOW YOU CAN INCLUDE STRIKETHROUGH IN PATTERNS') | ||
print('This is a BLINK and ITALIC TEXT test') | ||
|
||
# End colorization and restore the original print function | ||
end_color() | ||
print("\nNORMAL PRINT") | ||
# Now, printing returns to normal | ||
|
||
# Now, printing returns to normal | ||
print('-----------------------') | ||
print('Colorpattern v1.4.2') | ||
print('Colorpattern v1.4.5') | ||
print('By Croketillo - [email protected]') | ||
print('NEW!!! - NOW YOU CAN INCLUDE STRIKETHROUGH IN PATTERNS') | ||
print('This is a BLINK and ITALIC TEXT test') | ||
|
@@ -65,7 +65,6 @@ def main(): | |
# Use the custom print function with new patterns | ||
print("\nSTART COLORIZED PRINT AGAIN") | ||
start_color([pattern1, new_pattern]) | ||
|
||
print('-----------------------') | ||
print('This is a new pattern. 123456') | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
ColorPattern | ||
============ | ||
|
||
.. image:: https://img.shields.io/pypi/dm/colorpattern:alt: PyPI - Downloads | ||
.. image:: https://img.shields.io/pypi/dm/colorpattern | ||
:alt: PyPI - Downloads | ||
|
||
|
||
|
||
|
||
|
@@ -54,18 +56,18 @@ Example | |
start_color([pattern1, pattern2, pattern3, email, strike, italic,blink]) | ||
# Use the custom print function with colorization | ||
print('Colorpattern v1.4.2') | ||
print('Colorpattern v1.4.5') | ||
print('By Croketillo - [email protected]') | ||
print('NEW!!! - NOW YOU CAN INCLUDE STRIKETHROUGH IN PATTERNS') | ||
print('This is a BLINK and ITALIC TEXT test') | ||
# End colorization and restore the original print function | ||
end_color() | ||
print("\nNORMAL PRINT") | ||
# Now, printing returns to normal | ||
# Now, printing returns to normal | ||
print('-----------------------') | ||
print('Colorpattern v1.4.2') | ||
print('Colorpattern v1.4.5') | ||
print('By Croketillo - [email protected]') | ||
print('NEW!!! - NOW YOU CAN INCLUDE STRIKETHROUGH IN PATTERNS') | ||
print('This is a BLINK and ITALIC TEXT test') | ||
|
@@ -76,7 +78,6 @@ Example | |
# Use the custom print function with new patterns | ||
print("\nSTART COLORIZED PRINT AGAIN") | ||
start_color([pattern1, new_pattern]) | ||
print('-----------------------') | ||
print('This is a new pattern. 123456') | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
""" | ||
This file is (or part of) COLORPATTERN v1.4.1 | ||
This file is (or part of) COLORPATTERN v1.4.5 | ||
Copyright 2023- Croketillo <[email protected]> https://github.com/croketillo | ||
DESCIPTION: | ||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -84,7 +84,7 @@ def read(file_name=None, is_encoding=True, ignore_raises=False): | |
|
||
setup( | ||
name='colorpattern', | ||
version='1.4.3', | ||
version='1.4.5', | ||
author='croketillo', | ||
author_email='[email protected]', | ||
license=read("LICENSE", is_encoding=False, ignore_raises=True), | ||
|
@@ -108,9 +108,4 @@ def read(file_name=None, is_encoding=True, ignore_raises=False): | |
'Topic :: Terminals' | ||
], | ||
keywords='color pattern console colorpattern', | ||
entry_points={ | ||
'console_scripts': [ | ||
'colorpattern = colorpattern:main', | ||
], | ||
}, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ def main(): | |
start_color([pattern1, pattern2, pattern3, email, strike, italic,blink]) | ||
|
||
# Use the custom print function with colorization | ||
print('Colorpattern v1.4.1') | ||
print('Colorpattern v1.4.5') | ||
print('By Croketillo - [email protected]') | ||
print('NEW!!! - NOW YOU CAN INCLUDE STRIKETHROUGH IN PATTERNS') | ||
print('This is a BLINK and ITALIC TEXT test') | ||
|
@@ -27,7 +27,7 @@ def main(): | |
# Now, printing returns to normal | ||
|
||
print('-----------------------') | ||
print('Colorpattern v1.4.1') | ||
print('Colorpattern v1.4.5') | ||
print('By Croketillo - [email protected]') | ||
print('NEW!!! - NOW YOU CAN INCLUDE STRIKETHROUGH IN PATTERNS') | ||
print('This is a BLINK and ITALIC TEXT test') | ||
|