-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclasses.py
418 lines (332 loc) · 10.4 KB
/
classes.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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
from functions import *
from re import *
class ExtendedString(str):
# Initialize the string
def __new__(cls, v="", *args):
# If there is a set (in a f-string for example)
if isinstance(v, set):
v = next(iter(v))
# If it's an array, join it
if "<class 'list'>" == f'{type(v)}' or isinstance(v, ExtendedList):
v = "".join(v)
return super().__new__(cls, v or "")
# Return
def __getitem__(self, index):
return ExtendedString(super().__getitem__(index))
def __iter__(self):
for c in super().__iter__():
yield ExtendedString(c)
# Types
# Int
@property
def int(self):
return ExtendedInt(self)
# Float
@property
def float(self):
return float(self)
# Float
@property
def list(self):
return ExtendedList(self)
# String specific
# Length case
@property
def len(self):
return ExtendedInt(len(self))
# Lower case
@property
def low(self):
return ExtendedString(self.lower())
# Upper case
@property
def up(self):
return ExtendedString(self.upper())
# Capitalize string
@property
def cap(self):
return ExtendedString(self.capitalize())
# Upper case
@property
def title(self):
return ExtendedString(self.title())
# Camel To Snake
@property
def camel_to_snake(self):
return ExtendedString(camel_to_snake(self))
# Camel To Snake
@property
def snake_to_pascal(self):
return ExtendedString(snake_to_pascal(self))
# Camel To Snake
@property
def snake_to_camel(self):
return ExtendedString(snake_to_camel(self))
# Sum of ords
@property
def sum(self):
return ExtendedInt(sum(map(ord, self)))
# Count how many times the char change in a string
@property
def chr_change(self):
return ExtendedInt(chr_change(self))
# Length of the binary expr
@property
def len(self):
return ExtendedInt(len(self))
# Max of the string
@property
def max(self):
return ExtendedInt(max(self.m(ord)))
# Min of the string
@property
def min(self):
return ExtendedInt(min(self.m(ord)))
# Filters
## Alpha
@property
def falpha(self):
return ExtendedString(falpha(self))
# Alnum
@property
def falnum(self):
return ExtendedString(falnum(self))
# Digit
@property
def fdigit(self):
return ExtendedString(fdigit(self))
# Upper
@property
def fup(self):
return ExtendedString(fup(self))
# Lower
@property
def flow(self):
return ExtendedString(flow(self))
# Vowels
@property
def fvow(self):
return ExtendedString(fvow(self))
# !Vowels
@property
def fcon(self):
return ExtendedString(fcon(self))
# Short map
def m(self, function):
res = ExtendedList(map(lambda c: function(ExtendedString(c)), self))
# If it's all string
if all(isinstance(e, ExtendedString) for e in res):
return ExtendedString("".join(res))
else:
return ExtendedList(res)
# Short filter
def f(self, function):
return ExtendedString("".join(map(lambda c: ExtendedString(c), filter(lambda c: function(ExtendedString(c)), self))))
# Remove substring things
def rm(self, other):
if isinstance(other, ExtendedList):
temp_string = self
for s in other:
temp_string=temp_string.replace(s, "")
return temp_string
elif isinstance(other, ExtendedString):
return self.replace(other, "")
else:
return NotImplemented
# Count the number of char in a string
def cnt(self, other):
if isinstance(other, ExtendedString):
return ExtendedInt(self.count(other))
elif str(type(other)) == "<class 'function'>":
return ExtendedInt(sum(map(other, self)))
else:
return NotImplemented
# Rotate the ord of the char of the strings
def rotate_ord(self, n: int):
return ExtendedString(rotate(self, n))
def rotate_chr(self, n: int):
return ExtendedString(rotate(self, n))
# Rotate
def rotate(self, n: int):
if n == 0:
return self
return ExtendedString(self[-n:] + self[:-n])
# Split a string every n char
def n_split(self, step):
return ExtendedList(n_split(self, step))
# Modify the default function
# So that it returns an Extended List
#
# Sadly we can't just do return self.split(*args)
# Because of recursion problems.
def split(self, delimiter=" "):
result = ExtendedList([])
current = ExtendedString('')
for char in self:
if char == delimiter:
result.append(current)
current = ExtendedString('')
else:
current += char
result.append(current)
return result
# Equivalent than the tr in ruby
def tr(self, old_chars, new_chars):
table = str.maketrans(dict(zip(old_chars, new_chars)))
return self.translate(table)
# Regex
## Get (equivalent of findall or scan)
def get(self, regex):
match_regex = findall(regex, self)
return ExtendedList(match_regex)
## Sub
def sub(self, regex, _str):
return ExtendedString(sub(regex, _str, self))
## Search
def search(self, regex):
match_regex = search(regex,self)
return -1 if match_regex == None else match_regex.start()
# + Operator
def __add__(self, other):
if isinstance(other, ExtendedString) or str(type(other)) == "<class 'str'>":
return ExtendedString(f"{self}{other}")
elif isinstance(other, int):
return ExtendedString(f"{self}{other}")
elif isinstance(other, float):
return ExtendedString(f"{self}{other}")
else:
return NotImplemented
def __radd__(self, other):
if isinstance(other, ExtendedString) or str(type(other)) == "<class 'str'>":
return ExtendedString(f"{other}{self}")
if isinstance(other, int) :
return ExtendedString(f"{other}{self}")
if isinstance(other, float):
return ExtendedString(f"{other}{self}")
else:
return NotImplemented
# - Operator
def __sub__(self, other):
if isinstance(other, int):
return ExtendedString(self[:-other])
if isinstance(other, float):
return ExtendedString(self[:-round(other)])
else:
return NotImplemented
# / Operator (in this context, replace)
def __truediv__(self, other):
if isinstance(other, ExtendedString):
temp_s = self
for c in other:
temp_s=temp_s.replace(c, "")
return ExtendedString(temp_s)
else:
return NotImplemented
# // Operator (in this context, split)
def __div__(self, other):
if isinstance(other, ExtendedString):
return self.split(other)
else:
return NotImplemented
# Extended List
class ExtendedList(list):
# Length of the list
@property
def len(self):
return ExtendedInt(len(self))
# Min of the list
@property
def min(self):
return ExtendedInt(min(self))
# Max of the list
@property
def max(self):
return ExtendedInt(max(self))
# Sum of the list
@property
def sum(self):
return ExtendedInt(sum(self))
# Short map
def m(self, function):
return ExtendedList(map(function, self))
# Short Filter
def f(self, function):
return ExtendedList(filter(function, self))
# Remove substring things
def rm(self, other):
if isinstance(other, ExtendedList):
temp_list = self
for e in other:
if e in self:
temp_list.remove(e)
return temp_list
else:
if other in self:
self.remove(other)
return self
# Count the number of something in array
def cnt(self, other):
if str(type(other)) == "<class 'function'>":
return sum(map(other, self))
else:
return self.count(other)
# * Operator
def __mul__(self, other):
if isinstance(other, ExtendedString):
return ExtendedString(ExtendedString(other).join(ExtendedString(e) for e in self))
else:
return NotImplemented
# - Operator
def __sub__(self, other):
if isinstance(other, int) or isinstance(other, ExtendedInt):
return ExtendedList(self[:-other])
if isinstance(other, float):
return ExtendedList(self[:-round(other)])
if isinstance(other, ExtendedList):
return self.f(lambda e: e not in other)
else:
return NotImplemented
# Extended int
class ExtendedInt(int):
# Types
@property
def str(self):
return ExtendedString(self)
# Transform it to char
@property
def chr(self):
return ExtendedString(chr(self))
# Functions
# Is a number prime
@property
def isprime(self):
return is_prime(self)
# Counts 1 in binary expr
@property
def count1(self):
return ExtendedInt(bin(self).count("1"))
# Counts 0 in binary expr
@property
def count0(self):
return ExtendedInt(bin(self).count('0')-1)
# Length of the binary expr
@property
def len(self):
return len(self)
# Is a number a fibonacci number
def isfib(self, a=0, b=1):
return is_fib(self, a, b)
# @ Operator <=> Range
def __matmul__(self, other):
if isinstance(other, int):
return ExtendedList(range(self, other))
# [] Operator
def __getitem__(self, n):
bin_exp = bin(self)[2:]
if n >= len(bin_exp):
return 0
return ExtendedInt(bin_exp[~n])
# Length function
def __len__(self, n):
bin_exp = bin(n)
return ExtendedInt(len(bin_exp) - 2) # We remove 2 because of the 0b