-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtext.py
260 lines (215 loc) · 8.26 KB
/
text.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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
"""
text: Outline and align text on screen based on console size.
Default WIDTH is 80 characters for IDLE and 100 for shell.
"""
from collections import abc
import pprint
import re
from clay.env import is_idle as _is_idle
if _is_idle():
WIDTH = 80
else:
from clay.settings import CONSOLE_WIDTH as WIDTH
def box(text: str, width: int=0, height: int=3, for_module: bool=False) -> None:
"""
Prints a formatted box based on size of text w/ thickness of 1.
Optional module headers to customize titles
"""
if width < len(text) + 4: # if width is zero
for line in text.split('\n'):
if len(line) + 4 > width:
width = len(line) + 4
assert height >= 3
if for_module:
height += 2
border = 1
print('#' * width)
for _ in range(border):
print('#' + ' ' * (width - 2) + '#')
for line in text.split('\n'):
print('#', end='')
print(line.center(width - 2, ' '), end='')
print('#')
for _ in range(border):
print('#' + ' ' * (width - 2) + '#')
print('#' * width)
def center(text: str) -> str:
"""Justifies the given text to the center"""
return text.center(WIDTH)
def fullbox(text: str, thickness: int=1, border: int=1) -> None:
"""Prints a formatted box based on "thickness" and "border" around text"""
width = len(text) + thickness * 2 + border * 2
for _ in range(thickness):
print('#' * width)
for _ in range(border): # greater than one
_fullbox_printline(' ' * (len(text) + 2 * border), thickness)
_fullbox_printline(text.center(len(text) + 2, ' '), thickness)
for _ in range(border): # greater than one
_fullbox_printline(' ' * (len(text) + 2 * border), thickness)
for _ in range(thickness):
print('#' * width)
def _fullbox_printline(text: str, thickness: int) -> None:
"""A helper for fullbox"""
print('#' * thickness + text + '#' * thickness)
def left(text: str) -> str:
"""Justifies the given text to the left"""
return text
def right(text: str) -> str:
"""Justifies the given text to the right"""
return text.rjust(WIDTH)
def is_capitalized(text: str) -> str:
"""Returns True if the given text is capitalized, False otherwise"""
if not text: return False
return text[0].isupper()
def uncapitalize(text: str) -> str:
"""Returns the given text uncapitalized"""
# return early if empty string or none
if not text: return ''
# return lower if one character
elif len(text) == 1:
return text[0].lower()
# return as-is if first word is uppercase
elif text.split(' ')[0].isupper():
return text
# return lower first character and rest of string
else:
return text[0].lower() + text[1:]
def underline(text: str, char: str='-') -> str:
"""Returns the given text underlined with char"""
return text + '\n' + char * len(text)
def pretty_print(heading: str, data: object) -> None:
"""Pretty prints the heading and data"""
print(underline(heading))
pprint.pprint(data)
def remove_padding(string: str) -> str:
"""Returns the given string stripped and with double-spaces as single-spaces"""
string = string.strip()
while ' ' in string:
string = string.replace(' ', ' ')
return string
def remove_padding_many(strings: abc.Iterable) -> abc.Iterable:
"""
Returns the given iterable of strings stripped and with double-spaces as single-spaces
"""
return type(strings)(map(remove_padding, strings))
def split_seps(string: str, seps: abc.Iterable) -> abc.Iterable:
"""
Returns a list of strings split by the given separators.
Inspired by https://datagy.io/python-split-string-multiple-delimiters/
"""
if len(string) == 0:
return ['']
if len(seps) == 0:
raise ValueError('seps must have at least one item')
return re.split(r'|'.join(map(re.escape, seps)), string)
def consume_until(string: str, chars: str) -> str:
"""Return the string up until the next occurrence of the given chars"""
if not isinstance(chars, str):
raise TypeError('chars must be of type str')
return string[:string.index(chars)] if chars in string else ''
def consume_next(string: str, chars: str) -> str:
"""Returns the string advanced to the next occurrence of the given chars"""
if not isinstance(chars, str):
raise TypeError('chars must be of type str')
return string[string.index(chars) + len(chars):] if chars in string else ''
if __name__ == '__main__':
from clay.tests import testif, testraises
from clay.utils import qualify
print('Box Art Examples:')
fullbox('Hello full', 2, 1)
print('')
box('indexops\n---------\nregex for\nsearching\ndirectories', for_module=True)
print(left('hello'))
print(center('world'))
print(right('My name is Clay. What\'s yours?'))
print('UNDERLINE TESTS')
print(underline('underlined text (-)'))
print(underline('underlined text (*)', '*'))
testif('returns False if text less than two characters',
is_capitalized(''),
False,
name=qualify(is_capitalized))
testif('returns True if first character capitalized',
is_capitalized('Hi'),
True,
name=qualify(is_capitalized))
testif('returns empty string if text empty',
uncapitalize(''),
'',
name=qualify(uncapitalize))
testif('returns uncapitalized text (1 character)',
uncapitalize('H'),
'h',
name=qualify(uncapitalize))
testif('returns uncapitalized text (>1 character)',
uncapitalize('Hello'),
'hello',
name=qualify(uncapitalize))
testif('returns text as-is (uppercase word)',
uncapitalize('HELLO world'),
'HELLO world',
name=qualify(uncapitalize))
testif('removes text padding',
remove_padding(' remove spaces from padded test string '),
'remove spaces from padded test string',
name=qualify(remove_padding))
testif('removes many text paddings',
remove_padding_many([' remove spaces from padded test string ', ' my string']),
['remove spaces from padded test string', 'my string'],
name=qualify(remove_padding_many))
testraises('given no separators',
lambda: split_seps('string', []),
ValueError,
name=qualify(split_seps))
testif('ignores empty strings',
split_seps('', ['=']),
[''],
name=qualify(split_seps))
testif('splits correctly if one separator given',
split_seps('string1=string2', ['=']),
['string1', 'string2'],
name=qualify(split_seps))
testif('splits correctly if more than one separator given',
split_seps('string1^string2?string3@string4^string5', ['^', '?', '@']),
['string1', 'string2', 'string3', 'string4', 'string5'],
name=qualify(split_seps))
testraises('chars not of type str (array)',
lambda: consume_until('test string', []),
TypeError,
name=qualify(consume_until))
testraises('chars not of type str (int)',
lambda: consume_until('test string', 0),
TypeError,
name=qualify(consume_until))
testif('returns empty string if not found',
consume_until('test string', 'empty'),
'',
name=qualify(consume_until))
testif('returns correct string',
consume_until('test string', 'string'),
'test ',
name=qualify(consume_until))
testraises('chars not of type str (array)',
lambda: consume_next('test string', []),
TypeError,
name=qualify(consume_next))
testraises('chars not of type str (int)',
lambda: consume_next('test string', 0),
TypeError,
name=qualify(consume_next))
testif('returns empty string if not found',
consume_next('test string', 'empty'),
'',
name=qualify(consume_next))
testif('returns correct string (end of string)',
consume_next('test string', 'ng'),
'',
name=qualify(consume_next))
testif('returns correct string (middle of string)',
consume_next('test string', 'st '),
'string',
name=qualify(consume_next))
testif('returns correct string (beginning of string)',
consume_next('test string', 't'),
'est string',
name=qualify(consume_next))