-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrichText.py
163 lines (81 loc) · 2.51 KB
/
richText.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
# -------------------------------------------------------------
# this code tests out the Rich library for text formatting
# By: Zane Dax
# Date: April 23, 2021
# -------------------------------------------------------------
#----- rich library
from rich import print
# basic output
print(f'Math print out: 2+4 : {2+4}')
print({'a':[1,2,3], 'b':[5,6,7]})
from rich.console import Console
console = Console()
console.print(' rich text using console ')
console.print(" rich text using console, style=bold" , style='bold')
console.print(" rich text using console", style='bold underline green')
console.print(" rich text using console" , style='bold underline white on red')
console.print(" [bold]rich text [cyan]using [/]console[/]")
from rich.text import Text
text = Text(" Hello text.stylize() text!")
text.stylize('bold yellow', 1, 13) # start, stop
console.print(text)
msg_1 = " Operation success"
msg_2 = " Operation fail"
msg3 = " Operation [error] failed [/error]"
from rich.theme import Theme
console.print(msg_1, style='bold green')
console.print(msg_2, style='underline red')
console.print(msg3, style='bold red')
# Emoji
console.print(" :thumbs_up: You did it!")
console.print(" :snake: Python code")
console.print(" :heart: This code snippet!")
import time
for i in range(5):
console.log(f" Running your code ... {i}")
time.sleep(0.5)
#---------------- traceback
# from rich.traceback import install
# install()
# def add(x, y):
# a= "hello"
# console.log("Adding sums ", log_locals=True)
# return x+y
#---
# console = Console(record=True)
# try:
# add(2,5)
# add(-9,45)
# add(1, "a")
# except:
# console.print_exception()
# console.save_html('demo.html')
# table
from rich.table import Table
table = Table(title="Star Wars")
table.add_column("Released", style="cyan")
table.add_column("Title", style="magenta")
table.add_column("Box Office", style="green", justify='right')
table.add_row('Dec 9, 2016','Star Wars X','$56,765,867')
table.add_row('Dec 4, 2017','Star Wars XI','$58,765,867')
table.add_row('Nov 2, 2018','Star Wars XII','$96,765,867')
table.add_row('Oct 19, 2019','Star Wars XII','$156,765,867')
console.print(table)
#- markdowm
from rich.markdown import Markdown
MARKDOWN = """
# This is Header
## subtitle header
List:
1. one
2. two
$\mu\$= 78.9
"""
md= Markdown(MARKDOWN)
# console.print(md)
# progress bar
from rich.progress import track
for i in track(range(5), description='Processing ...'):
print(f'working {i}')
time.sleep(0.5)
print('\n')