pypipr 1.0.108__py3-none-any.whl → 1.0.109__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pypipr/auto_reload.py +7 -1
- pypipr/batchmaker.py +1 -8
- pypipr/chr_to_int.py +2 -2
- pypipr/irange.py +31 -12
- {pypipr-1.0.108.dist-info → pypipr-1.0.109.dist-info}/METADATA +165 -221
- {pypipr-1.0.108.dist-info → pypipr-1.0.109.dist-info}/RECORD +8 -8
- {pypipr-1.0.108.dist-info → pypipr-1.0.109.dist-info}/WHEEL +0 -0
- {pypipr-1.0.108.dist-info → pypipr-1.0.109.dist-info}/entry_points.txt +0 -0
pypipr/auto_reload.py
CHANGED
@@ -16,6 +16,13 @@ def auto_reload(filename):
|
|
16
16
|
```py
|
17
17
|
if __name__ == "__main__":
|
18
18
|
auto_reload("file_name.py")
|
19
|
+
|
20
|
+
```
|
21
|
+
|
22
|
+
or run in terminal
|
23
|
+
|
24
|
+
```
|
25
|
+
pypipr auto_reload
|
19
26
|
```
|
20
27
|
"""
|
21
28
|
mtime = get_filemtime(filename)
|
@@ -27,7 +34,6 @@ def auto_reload(filename):
|
|
27
34
|
while True:
|
28
35
|
last_mtime = mtime
|
29
36
|
console_run(cmd, print_info=False)
|
30
|
-
# subprocess.run(cmd, shell=True)
|
31
37
|
while mtime == last_mtime:
|
32
38
|
time.sleep(1)
|
33
39
|
mtime = get_filemtime(filename)
|
pypipr/batchmaker.py
CHANGED
@@ -3,7 +3,7 @@ import re
|
|
3
3
|
from .irange import irange
|
4
4
|
|
5
5
|
# batchmaker()
|
6
|
-
__batchmaker__regex_pattern__ = r"{(?:[^a-zA-Z0-9{}]+)?(
|
6
|
+
__batchmaker__regex_pattern__ = r"{(?:[^a-zA-Z0-9{}]+)?([a-zA-Z]+|\d+)(?:[^a-zA-Z0-9{}]+([a-zA-Z]+|\d+))?(?:[^a-zA-Z0-9{}]+(\d+))?(?:[^a-zA-Z0-9{}]+)?}"
|
7
7
|
__batchmaker__regex_compile__ = re.compile(__batchmaker__regex_pattern__)
|
8
8
|
|
9
9
|
|
@@ -36,10 +36,3 @@ def batchmaker(pattern: str):
|
|
36
36
|
r = pattern.replace(find, str(i), 1)
|
37
37
|
yield from batchmaker(r)
|
38
38
|
|
39
|
-
|
40
|
-
if __name__ == "__main__":
|
41
|
-
from ..ifunctions.iargv import iargv
|
42
|
-
from ..ifunctions.iprint import iprint
|
43
|
-
|
44
|
-
if i := iargv(1):
|
45
|
-
iprint(batchmaker(i))
|
pypipr/chr_to_int.py
CHANGED
@@ -5,7 +5,7 @@ def chr_to_int(s, start=1, numbers="abcdefghijklmnopqrstuvwxyz"):
|
|
5
5
|
```python
|
6
6
|
print(chr_to_int('z')) # Output: 26
|
7
7
|
print(chr_to_int('aa')) # Output: 27
|
8
|
-
print(chr_to_int('abc', numbers="abc")) # Output:
|
8
|
+
print(chr_to_int('abc', numbers="abc")) # Output: 18
|
9
9
|
```
|
10
10
|
"""
|
11
11
|
result = 0
|
@@ -18,7 +18,7 @@ def chr_to_int(s, start=1, numbers="abcdefghijklmnopqrstuvwxyz"):
|
|
18
18
|
if __name__ == "__main__":
|
19
19
|
print(chr_to_int("z")) # Output: 25
|
20
20
|
print(chr_to_int("aa")) # Output: 26
|
21
|
-
print(chr_to_int("abc", numbers="abc")) # Output:
|
21
|
+
print(chr_to_int("abc", numbers="abc")) # Output: 18
|
22
22
|
for i in "abcdefghijklmnopqrstuvwxyz":
|
23
23
|
print(chr_to_int(i, start=9))
|
24
24
|
|
pypipr/irange.py
CHANGED
@@ -1,8 +1,7 @@
|
|
1
1
|
from .chr_to_int import chr_to_int
|
2
2
|
from .int_to_chr import int_to_chr
|
3
3
|
|
4
|
-
|
5
|
-
def irange(start, stop=None, step=1, index=0, numbers="abcdefghijklmnopqrstuvwxyz"):
|
4
|
+
def irange(start, stop=None, step=None, index=0, numbers="abcdefghijklmnopqrstuvwxyz"):
|
6
5
|
"""
|
7
6
|
Meningkatkan fungsi range() dari python untuk pengulangan menggunakan huruf
|
8
7
|
|
@@ -14,26 +13,46 @@ def irange(start, stop=None, step=1, index=0, numbers="abcdefghijklmnopqrstuvwxy
|
|
14
13
|
print(list(irange(10, 5)))
|
15
14
|
```
|
16
15
|
"""
|
17
|
-
|
18
|
-
stop = start
|
19
|
-
start = numbers[0] if isinstance(start, str) else 0
|
16
|
+
start, stop, step = fix_args_position(start, stop, step)
|
20
17
|
|
21
|
-
|
18
|
+
try:
|
19
|
+
return int_range(start, stop, step)
|
20
|
+
except Exception:
|
21
|
+
pass
|
22
22
|
|
23
23
|
try:
|
24
|
-
return
|
24
|
+
return str_range(start, stop, step, index=index, numbers=numbers)
|
25
25
|
except Exception:
|
26
26
|
pass
|
27
27
|
|
28
|
-
if isinstance(start, str) and isinstance(stop, str):
|
29
|
-
return char_range(start, stop, step, index=index, numbers=numbers)
|
30
28
|
|
31
|
-
|
29
|
+
def int_range(start, stop, step):
|
30
|
+
start = 0 if start is None else int(start)
|
31
|
+
stop = int(stop)
|
32
|
+
step = fix_step(start, stop, step)
|
33
|
+
return range(start, stop, step)
|
32
34
|
|
33
35
|
|
34
|
-
def
|
36
|
+
def str_range(start, stop, step, index, numbers):
|
37
|
+
start = numbers[0] if start is None else str(start)
|
35
38
|
start = chr_to_int(start, start=index, numbers=numbers)
|
39
|
+
stop = str(stop)
|
36
40
|
stop = chr_to_int(stop, start=index, numbers=numbers)
|
37
|
-
|
41
|
+
step = fix_step(start, stop, step)
|
38
42
|
for i in range(start, stop, step):
|
39
43
|
yield int_to_chr(i, start=index, numbers=numbers)
|
44
|
+
|
45
|
+
|
46
|
+
def fix_args_position(start, stop, step):
|
47
|
+
step = 1 if step is None else int(step)
|
48
|
+
if stop is None:
|
49
|
+
return None, start, step
|
50
|
+
return start, stop, step
|
51
|
+
|
52
|
+
|
53
|
+
def fix_step(start, stop, step):
|
54
|
+
step = abs(step)
|
55
|
+
if stop < start:
|
56
|
+
step = step * -1
|
57
|
+
return step
|
58
|
+
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pypipr
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.109
|
4
4
|
Summary: The Python Package Index Project
|
5
5
|
Author: ufiapjj
|
6
6
|
Author-email: ufiapjj@gmail.com
|
@@ -137,6 +137,13 @@ Jalankan kode ini di terminal console.
|
|
137
137
|
```py
|
138
138
|
if __name__ == "__main__":
|
139
139
|
auto_reload("file_name.py")
|
140
|
+
|
141
|
+
```
|
142
|
+
|
143
|
+
or run in terminal
|
144
|
+
|
145
|
+
```
|
146
|
+
pypipr auto_reload
|
140
147
|
```
|
141
148
|
|
142
149
|
## basename
|
@@ -163,7 +170,7 @@ Fungsi ini berguna untuk mengubah urutan huruf menjadi angka.
|
|
163
170
|
```python
|
164
171
|
print(chr_to_int('z')) # Output: 26
|
165
172
|
print(chr_to_int('aa')) # Output: 27
|
166
|
-
print(chr_to_int('abc', numbers="abc")) # Output:
|
173
|
+
print(chr_to_int('abc', numbers="abc")) # Output: 18
|
167
174
|
```
|
168
175
|
|
169
176
|
Output:
|
@@ -224,7 +231,7 @@ kmc
|
|
224
231
|
|
225
232
|
## irange
|
226
233
|
|
227
|
-
`irange(start, stop=None, step=
|
234
|
+
`irange(start, stop=None, step=None, index=0, numbers='abcdefghijklmnopqrstuvwxyz')`
|
228
235
|
|
229
236
|
Meningkatkan fungsi range() dari python untuk pengulangan menggunakan huruf
|
230
237
|
|
@@ -238,11 +245,11 @@ print(list(irange(10, 5)))
|
|
238
245
|
|
239
246
|
Output:
|
240
247
|
```py
|
241
|
-
<generator object
|
242
|
-
<generator object
|
248
|
+
<generator object str_range at 0x7253023cd0>
|
249
|
+
<generator object str_range at 0x7253023cd0>
|
243
250
|
['a', 'k', 'u']
|
244
251
|
[1, 2, 3, 4, 5, 6]
|
245
|
-
[]
|
252
|
+
[10, 9, 8, 7, 6]
|
246
253
|
```
|
247
254
|
|
248
255
|
## batchmaker
|
@@ -264,12 +271,6 @@ print(batchmaker(s))
|
|
264
271
|
print(list(batchmaker(s)))
|
265
272
|
```
|
266
273
|
|
267
|
-
Output:
|
268
|
-
```py
|
269
|
-
<generator object batchmaker at 0x7384b4c160>
|
270
|
-
[]
|
271
|
-
```
|
272
|
-
|
273
274
|
## calculate
|
274
275
|
|
275
276
|
`calculate(teks)`
|
@@ -320,7 +321,7 @@ print(list(batch_calculate("{1 10} m ** {1 3}")))
|
|
320
321
|
|
321
322
|
Output:
|
322
323
|
```py
|
323
|
-
<generator object batch_calculate at
|
324
|
+
<generator object batch_calculate at 0x7252eeed40>
|
324
325
|
[('1 m ** 1', <Quantity(1, 'meter')>), ('1 m ** 2', <Quantity(1, 'meter ** 2')>), ('2 m ** 1', <Quantity(2, 'meter')>), ('2 m ** 2', <Quantity(2, 'meter ** 2')>), ('3 m ** 1', <Quantity(3, 'meter')>), ('3 m ** 2', <Quantity(3, 'meter ** 2')>), ('4 m ** 1', <Quantity(4, 'meter')>), ('4 m ** 2', <Quantity(4, 'meter ** 2')>), ('5 m ** 1', <Quantity(5, 'meter')>), ('5 m ** 2', <Quantity(5, 'meter ** 2')>), ('6 m ** 1', <Quantity(6, 'meter')>), ('6 m ** 2', <Quantity(6, 'meter ** 2')>), ('7 m ** 1', <Quantity(7, 'meter')>), ('7 m ** 2', <Quantity(7, 'meter ** 2')>), ('8 m ** 1', <Quantity(8, 'meter')>), ('8 m ** 2', <Quantity(8, 'meter ** 2')>), ('9 m ** 1', <Quantity(9, 'meter')>), ('9 m ** 2', <Quantity(9, 'meter ** 2')>)]
|
325
326
|
```
|
326
327
|
|
@@ -413,7 +414,7 @@ print(list(chunk_array(arr, 5)))
|
|
413
414
|
|
414
415
|
Output:
|
415
416
|
```py
|
416
|
-
<generator object chunk_array at
|
417
|
+
<generator object chunk_array at 0x7252f50440>
|
417
418
|
[[2, 3, 12, 3, 3], [42, 42, 1, 43, 2], [42, 41, 4, 24, 32], [42, 3, 12, 32, 42], [42]]
|
418
419
|
```
|
419
420
|
|
@@ -464,9 +465,9 @@ print(datetime_now("Etc/GMT+7"))
|
|
464
465
|
|
465
466
|
Output:
|
466
467
|
```py
|
467
|
-
2024-04-
|
468
|
-
2024-04-
|
469
|
-
2024-04-29
|
468
|
+
2024-04-30 12:59:48.069039+07:00
|
469
|
+
2024-04-30 05:59:48.075135+00:00
|
470
|
+
2024-04-29 22:59:48.089036-07:00
|
470
471
|
```
|
471
472
|
|
472
473
|
## dict_first
|
@@ -584,7 +585,7 @@ print(filter_empty(var))
|
|
584
585
|
|
585
586
|
Output:
|
586
587
|
```py
|
587
|
-
<generator object filter_empty at
|
588
|
+
<generator object filter_empty at 0x7252eed300>
|
588
589
|
```
|
589
590
|
|
590
591
|
## get_by_index
|
@@ -630,8 +631,8 @@ print(list(get_class_method(ExampleGetClassMethod)))
|
|
630
631
|
|
631
632
|
Output:
|
632
633
|
```py
|
633
|
-
<generator object get_class_method at
|
634
|
-
[<function ExampleGetClassMethod.a at
|
634
|
+
<generator object get_class_method at 0x7252eef010>
|
635
|
+
[<function ExampleGetClassMethod.a at 0x7252f605e0>, <function ExampleGetClassMethod.b at 0x7252f60860>, <function ExampleGetClassMethod.c at 0x7252f60900>, <function ExampleGetClassMethod.d at 0x7252f609a0>]
|
635
636
|
```
|
636
637
|
|
637
638
|
## get_filesize
|
@@ -929,7 +930,7 @@ print(ijoin(10, ' '))
|
|
929
930
|
|
930
931
|
Output:
|
931
932
|
```py
|
932
|
-
|
933
|
+
weq, asd, qweqw, dfs
|
933
934
|
,ini,path,seperti,url,
|
934
935
|
ini,path,seperti,url
|
935
936
|
<li>satu</li>
|
@@ -972,118 +973,61 @@ pprint.pprint(iloads_html(iopen("https://harga-emas.org/1-gram/")), depth=10)
|
|
972
973
|
Output:
|
973
974
|
```py
|
974
975
|
(['Home', 'Emas 1 Gram', 'History', 'Trend', 'Perak 1 Gram', 'Pluang'],
|
975
|
-
[['Harga Emas Hari Ini -
|
976
|
-
['Spot Emas USD↓2.
|
977
|
-
'Kurs IDR↑16.
|
978
|
-
'Emas IDR
|
979
|
-
['LM Antam (Jual)
|
980
|
-
'LM Antam (Beli)↓1.221.000 (-1.000) / gr']],
|
976
|
+
[['Harga Emas Hari Ini - Selasa, 30 April 2024'],
|
977
|
+
['Spot Emas USD↓2.323,14 (-21,40) / oz',
|
978
|
+
'Kurs IDR↑16.249,00 (+27,00) / USD',
|
979
|
+
'Emas IDR↓1.213.649 (-9.145) / gr'],
|
980
|
+
['LM Antam (Jual)1.325.000 / gr', 'LM Antam (Beli)1.221.000 / gr']],
|
981
981
|
[['Harga Emas Hari Ini'],
|
982
982
|
['Gram', 'Gedung Antam Jakarta', 'Pegadaian'],
|
983
983
|
['per Gram (Rp)', 'per Batangan (Rp)', 'per Gram (Rp)', 'per Batangan (Rp)'],
|
984
984
|
['1000',
|
985
|
-
'1.266
|
986
|
-
'1.265.600
|
985
|
+
'1.266',
|
986
|
+
'1.265.600',
|
987
987
|
'1.043.040 (+8.200)',
|
988
988
|
'1.043.040.000 (+8.200.000)'],
|
989
989
|
['500',
|
990
|
-
'2.531
|
991
|
-
'1.265.640
|
990
|
+
'2.531',
|
991
|
+
'1.265.640',
|
992
992
|
'1.043.082 (+8.200)',
|
993
993
|
'521.541.000 (+4.100.000)'],
|
994
994
|
['250',
|
995
|
-
'5.064
|
996
|
-
'1.266.060
|
995
|
+
'5.064',
|
996
|
+
'1.266.060',
|
997
997
|
'1.043.512 (+8.200)',
|
998
998
|
'260.878.000 (+2.050.000)'],
|
999
999
|
['100',
|
1000
|
-
'12.671
|
1001
|
-
'1.267.120
|
1000
|
+
'12.671',
|
1001
|
+
'1.267.120',
|
1002
1002
|
'1.044.600 (+8.200)',
|
1003
1003
|
'104.460.000 (+820.000)'],
|
1004
|
-
['50',
|
1005
|
-
|
1006
|
-
|
1007
|
-
|
1008
|
-
|
1009
|
-
['
|
1010
|
-
|
1011
|
-
|
1012
|
-
|
1013
|
-
'
|
1014
|
-
['10',
|
1015
|
-
'127.450 (-100)',
|
1016
|
-
'1.274.500 (-1.000)',
|
1017
|
-
'1.052.200 (+8.200)',
|
1018
|
-
'10.522.000 (+82.000)'],
|
1019
|
-
['5',
|
1020
|
-
'256.000 (-200)',
|
1021
|
-
'1.280.000 (-1.000)',
|
1022
|
-
'1.057.800 (+8.200)',
|
1023
|
-
'5.289.000 (+41.000)'],
|
1024
|
-
['3',
|
1025
|
-
'428.889 (-333)',
|
1026
|
-
'1.286.667 (-1.000)',
|
1027
|
-
'1.064.667 (+8.000)',
|
1028
|
-
'3.194.000 (+24.000)'],
|
1029
|
-
['2',
|
1030
|
-
'647.500 (-500)',
|
1031
|
-
'1.295.000 (-1.000)',
|
1032
|
-
'1.073.500 (+8.500)',
|
1033
|
-
'2.147.000 (+17.000)'],
|
1034
|
-
['1',
|
1035
|
-
'1.325.000 (-1.000)',
|
1036
|
-
'1.325.000 (-1.000)',
|
1037
|
-
'1.104.000 (+8.000)',
|
1038
|
-
'1.104.000 (+8.000)'],
|
1039
|
-
['0.5',
|
1040
|
-
'2.850.000 (-2.000)',
|
1041
|
-
'1.425.000 (-1.000)',
|
1042
|
-
'1.208.000 (+8.000)',
|
1043
|
-
'604.000 (+4.000)'],
|
1044
|
-
['Update harga LM Antam :29 April 2024, pukul 07:56Harga pembelian kembali '
|
1045
|
-
':Rp. 1.221.000/gram (-1.000)',
|
1004
|
+
['50', '25.358', '1.267.900', '1.045.400 (+8.200)', '52.270.000 (+410.000)'],
|
1005
|
+
['25', '50.779', '1.269.480', '1.047.040 (+8.200)', '26.176.000 (+205.000)'],
|
1006
|
+
['10', '127.450', '1.274.500', '1.052.200 (+8.200)', '10.522.000 (+82.000)'],
|
1007
|
+
['5', '256.000', '1.280.000', '1.057.800 (+8.200)', '5.289.000 (+41.000)'],
|
1008
|
+
['3', '428.889', '1.286.667', '1.064.667 (+8.000)', '3.194.000 (+24.000)'],
|
1009
|
+
['2', '647.500', '1.295.000', '1.073.500 (+8.500)', '2.147.000 (+17.000)'],
|
1010
|
+
['1', '1.325.000', '1.325.000', '1.104.000 (+8.000)', '1.104.000 (+8.000)'],
|
1011
|
+
['0.5', '2.850.000', '1.425.000', '1.208.000 (+8.000)', '604.000 (+4.000)'],
|
1012
|
+
['Update harga LM Antam :30 April 2024, pukul 08:19Harga pembelian kembali '
|
1013
|
+
':Rp. 1.221.000/gram',
|
1046
1014
|
'Update harga LM Pegadaian :31 Agustus 2023']],
|
1047
1015
|
[['Spot Harga Emas Hari Ini (Market Open)'],
|
1048
1016
|
['Satuan', 'USD', 'Kurs\xa0Dollar', 'IDR'],
|
1049
|
-
['Ounce\xa0(oz)', '2.
|
1050
|
-
['Gram\xa0(gr)', '
|
1051
|
-
['Kilogram\xa0(kg)', '
|
1052
|
-
['Update harga emas :
|
1053
|
-
'pukul
|
1017
|
+
['Ounce\xa0(oz)', '2.323,14 (-21,40)', '16.249,00 (+27,00)', '37.748.702'],
|
1018
|
+
['Gram\xa0(gr)', '74,69', '16.249,00', '1.213.649 (-9.145)'],
|
1019
|
+
['Kilogram\xa0(kg)', '74.690,69', '16.249,00', '1.213.648.948'],
|
1020
|
+
['Update harga emas :30 April 2024, pukul 12:59Update kurs :30 April 2024, '
|
1021
|
+
'pukul 09:10']],
|
1054
1022
|
[['Gram', 'UBS Gold 99.99%'],
|
1055
1023
|
['Jual', 'Beli'],
|
1056
1024
|
['/ Batang', '/ Gram', '/ Batang', '/ Gram'],
|
1057
|
-
['100',
|
1058
|
-
|
1059
|
-
|
1060
|
-
|
1061
|
-
|
1062
|
-
['
|
1063
|
-
'63.300.000 (-145.000)',
|
1064
|
-
'1.266.000 (-2.900)',
|
1065
|
-
'62.645.000 (+100.000)',
|
1066
|
-
'1.252.900 (+2.000)'],
|
1067
|
-
['25',
|
1068
|
-
'31.700.000 (-62.000)',
|
1069
|
-
'1.268.000 (-2.480)',
|
1070
|
-
'31.425.000 (+50.000)',
|
1071
|
-
'1.257.000 (+2.000)'],
|
1072
|
-
['10',
|
1073
|
-
'12.720.000 (-35.000)',
|
1074
|
-
'1.272.000 (-3.500)',
|
1075
|
-
'12.620.000 (+20.000)',
|
1076
|
-
'1.262.000 (+2.000)'],
|
1077
|
-
['5',
|
1078
|
-
'6.385.000 (-20.000)',
|
1079
|
-
'1.277.000 (-4.000)',
|
1080
|
-
'6.362.000 (+10.000)',
|
1081
|
-
'1.272.400 (+2.000)'],
|
1082
|
-
['1',
|
1083
|
-
'1.325.000 (-1.000)',
|
1084
|
-
'1.325.000 (-1.000)',
|
1085
|
-
'1.305.000 (+2.000)',
|
1086
|
-
'1.305.000 (+2.000)'],
|
1025
|
+
['100', '126.300.000', '1.263.000', '125.185.000', '1.251.850'],
|
1026
|
+
['50', '63.300.000', '1.266.000', '62.645.000', '1.252.900'],
|
1027
|
+
['25', '31.700.000', '1.268.000', '31.425.000', '1.257.000'],
|
1028
|
+
['10', '12.720.000', '1.272.000', '12.620.000', '1.262.000'],
|
1029
|
+
['5', '6.385.000', '1.277.000', '6.362.000', '1.272.400'],
|
1030
|
+
['1', '1.325.000', '1.325.000', '1.305.000', '1.305.000'],
|
1087
1031
|
['', 'Update :29 April 2024, pukul 16:06']],
|
1088
1032
|
[['Konversi Satuan'],
|
1089
1033
|
['Satuan', 'Ounce (oz)', 'Gram (gr)', 'Kilogram (kg)'],
|
@@ -1094,37 +1038,37 @@ Output:
|
|
1094
1038
|
['Waktu', 'Emas'],
|
1095
1039
|
['Unit', 'USD', 'IDR'],
|
1096
1040
|
['Angka', '+/-', 'Angka', '+/-'],
|
1097
|
-
['Hari Ini', 'Kurs', '', '', '16.
|
1098
|
-
['oz', '2.
|
1099
|
-
['gr', '75,
|
1100
|
-
['30 Hari', 'Kurs', '', '', '15.853', '+
|
1101
|
-
['oz', '2.232,75', '+
|
1102
|
-
['gr', '71,78', '+
|
1103
|
-
['2 Bulan', 'Kurs', '', '', '15.
|
1104
|
-
['oz', '2.
|
1105
|
-
['gr', '
|
1106
|
-
['6 Bulan', 'Kurs', '', '', '15.
|
1107
|
-
['oz', '1.
|
1108
|
-
['gr', '63,
|
1109
|
-
['1 Tahun', 'Kurs', '', '', '15.731', '+
|
1110
|
-
['oz', '1.823,86', '+
|
1111
|
-
['gr', '58,64', '+16,
|
1112
|
-
['2 Tahun', 'Kurs', '', '', '14.418', '+1.
|
1113
|
-
['oz', '1.896,95', '+
|
1114
|
-
['gr', '60,99', '+
|
1115
|
-
['3 Tahun', 'Kurs', '', '', '14.468', '+1.
|
1116
|
-
['oz', '1.
|
1117
|
-
['gr', '56,
|
1118
|
-
['5 Tahun', 'Kurs', '', '', '14.
|
1119
|
-
['oz', '1.
|
1120
|
-
['gr', '
|
1041
|
+
['Hari Ini', 'Kurs', '', '', '16.222', '+27+0,17%'],
|
1042
|
+
['oz', '2.344,54', '-21,40-0,91%', '38.033.128', '-284.426-0,75%'],
|
1043
|
+
['gr', '75,38', '-0,69-0,91%', '1.222.793', '-9.145-0,75%'],
|
1044
|
+
['30 Hari', 'Kurs', '', '', '15.853', '+396+2,50%'],
|
1045
|
+
['oz', '2.232,75', '+90,39+4,05%', '35.395.786', '+2.352.916+6,65%'],
|
1046
|
+
['gr', '71,78', '+2,91+4,05%', '1.138.001', '+75.648+6,65%'],
|
1047
|
+
['2 Bulan', 'Kurs', '', '', '15.715', '+534+3,40%'],
|
1048
|
+
['oz', '2.081,20', '+241,94+11,63%', '32.706.058', '+5.042.644+15,42%'],
|
1049
|
+
['gr', '66,91', '+7,78+11,63', '1.051.524', '+162.125+15,42%'],
|
1050
|
+
['6 Bulan', 'Kurs', '', '', '15.946', '+303+1,90%'],
|
1051
|
+
['oz', '1.981,84', '+341,30+17,22%', '31.602.421', '+6.146.281+19,45%'],
|
1052
|
+
['gr', '63,72', '+10,97+17,22%', '1.016.041', '+197.608+19,45%'],
|
1053
|
+
['1 Tahun', 'Kurs', '', '', '15.731', '+518+3,29%'],
|
1054
|
+
['oz', '1.823,86', '+499,28+27,37%', '28.691.142', '+9.057.560+31,57%'],
|
1055
|
+
['gr', '58,64', '+16,05+27,37%', '922.442', '+291.207+31,57%'],
|
1056
|
+
['2 Tahun', 'Kurs', '', '', '14.418', '+1.831+12,70%'],
|
1057
|
+
['oz', '1.896,95', '+426,19+22,47%', '27.350.225', '+10.398.477+38,02%'],
|
1058
|
+
['gr', '60,99', '+13,70+22,47%', '879.330', '+334.319+38,02%'],
|
1059
|
+
['3 Tahun', 'Kurs', '', '', '14.468', '+1.781+12,31%'],
|
1060
|
+
['oz', '1.768,91', '+554,23+31,33%', '25.592.590', '+12.156.112+47,50%'],
|
1061
|
+
['gr', '56,87', '+17,82+31,33%', '822.821', '+390.828+47,50%'],
|
1062
|
+
['5 Tahun', 'Kurs', '', '', '14.245', '+2.004+14,07%'],
|
1063
|
+
['oz', '1.270,94', '+1.052,20+82,79%', '18.104.540', '+19.644.162+108,50%'],
|
1064
|
+
['gr', '40,86', '+33,83+82,79%', '582.074', '+631.574+108,50%']])
|
1121
1065
|
(['Home', 'Emas 1 Gram', 'History', 'Trend', 'Perak 1 Gram', 'Pluang'],
|
1122
1066
|
[[''],
|
1123
1067
|
['Emas 24 KaratHarga Emas 1 Gram', ''],
|
1124
|
-
['USD', '
|
1125
|
-
['KURS', '16.
|
1126
|
-
['IDR', '1.
|
1127
|
-
['
|
1068
|
+
['USD', '74,69↓', '-0,69-0,92%'],
|
1069
|
+
['KURS', '16.269,00↑', '+55,50+0,34%'],
|
1070
|
+
['IDR', '1.215.142,76↓', '-7.009,98-0,57%'],
|
1071
|
+
['Selasa, 30 April 2024 12:59']],
|
1128
1072
|
[[''],
|
1129
1073
|
['Emas 1 Gram (IDR)Emas 1 Gram (USD)Kurs USD-IDR',
|
1130
1074
|
'Hari Ini',
|
@@ -1135,19 +1079,19 @@ Output:
|
|
1135
1079
|
'']],
|
1136
1080
|
[['Pergerakkan Harga Emas 1 Gram'],
|
1137
1081
|
['', 'Penutupan Kemarin', 'Pergerakkan Hari Ini', 'Rata-rata'],
|
1138
|
-
['USD', '75,
|
1139
|
-
['KURS', '16.
|
1140
|
-
['IDR', '1.
|
1082
|
+
['USD', '75,38', '74,69 - 75,38', '75,04'],
|
1083
|
+
['KURS', '16.213,50', '16.213,50 - 16.269,00', '16.241,25'],
|
1084
|
+
['IDR', '1.222.152,74', '1.215.142,76 - 1.222.152,74', '1.218.647,75'],
|
1141
1085
|
[''],
|
1142
1086
|
['', 'Awal Tahun', 'Pergerakkan YTD', '+/- YTD'],
|
1143
|
-
['USD', '66,32', '64,07 - 77,14', '+8,
|
1144
|
-
['KURS', '15.390,10', '15.390,00 - 16.307,80', '+
|
1145
|
-
['IDR', '1.020.729,53', '997.660,12 - 1.256.829,06', '+
|
1087
|
+
['USD', '66,32', '64,07 - 77,14', '+8,37 (12,62%)'],
|
1088
|
+
['KURS', '15.390,10', '15.390,00 - 16.307,80', '+878,90 (5,71%)'],
|
1089
|
+
['IDR', '1.020.729,53', '997.660,12 - 1.256.829,06', '+194.413,23 (19,05%)'],
|
1146
1090
|
[''],
|
1147
1091
|
['', 'Tahun Lalu / 52 Minggu', 'Pergerakkan 52 Minggu', '+/- 52 Minggu'],
|
1148
|
-
['USD', '
|
1149
|
-
['KURS', '14.
|
1150
|
-
['IDR', '
|
1092
|
+
['USD', '63,97', '58,43 - 77,14', '+10,72 (16,76%)'],
|
1093
|
+
['KURS', '14.673,55', '14.669,40 - 16.307,80', '+1.595,45 (10,87%)'],
|
1094
|
+
['IDR', '938.709,73', '912.925,68 - 1.256.829,06', '+276.433,03 (29,45%)']])
|
1151
1095
|
```
|
1152
1096
|
|
1153
1097
|
## iloads
|
@@ -1241,7 +1185,7 @@ Output:
|
|
1241
1185
|
```py
|
1242
1186
|
8
|
1243
1187
|
['mana', 'aja']
|
1244
|
-
[<Element a at
|
1188
|
+
[<Element a at 0x7252f5df90>, <Element a at 0x7252f9cf00>, <Element a at 0x7252f9cfa0>, <Element a at 0x7252f9cff0>, <Element a at 0x7252f9d040>, <Element a at 0x7252f9d090>, <Element a at 0x7252f9d0e0>, <Element a at 0x7252f9d130>, <Element a at 0x7252f9d180>, <Element a at 0x7252f9d1d0>, <Element a at 0x7252f9d220>, <Element a at 0x7252f9d270>, <Element a at 0x7252f9d2c0>, <Element a at 0x7252f9d310>, <Element a at 0x7252f9d360>, <Element a at 0x7252f9d3b0>, <Element a at 0x7252f9d400>, <Element a at 0x7252f9d450>]
|
1245
1189
|
False
|
1246
1190
|
```
|
1247
1191
|
|
@@ -1303,7 +1247,7 @@ print(list(iscandir("./", recursive=False, scan_file=False)))
|
|
1303
1247
|
|
1304
1248
|
Output:
|
1305
1249
|
```py
|
1306
|
-
<generator object iscandir at
|
1250
|
+
<generator object iscandir at 0x7252f50740>
|
1307
1251
|
[PosixPath('.git'), PosixPath('.vscode'), PosixPath('pypipr'), PosixPath('__pycache__'), PosixPath('dist')]
|
1308
1252
|
```
|
1309
1253
|
|
@@ -1340,68 +1284,68 @@ Output:
|
|
1340
1284
|
'ComparePerformance': <class 'pypipr.ComparePerformance.ComparePerformance'>,
|
1341
1285
|
'PintUregQuantity': <class 'pint.Quantity'>,
|
1342
1286
|
'RunParallel': <class 'pypipr.RunParallel.RunParallel'>},
|
1343
|
-
'function': {'avg': <function avg at
|
1344
|
-
'get_filemtime': <function get_filemtime at
|
1345
|
-
'print_colorize': <function print_colorize at
|
1346
|
-
'print_log': <function print_log at
|
1347
|
-
'console_run': <function console_run at
|
1348
|
-
'auto_reload': <function auto_reload at
|
1349
|
-
'basename': <function basename at
|
1350
|
-
'chr_to_int': <function chr_to_int at
|
1351
|
-
'int_to_chr': <function int_to_chr at
|
1352
|
-
'irange': <function irange at
|
1353
|
-
'batchmaker': <function batchmaker at
|
1354
|
-
'calculate': <function calculate at
|
1355
|
-
'batch_calculate': <function batch_calculate at
|
1356
|
-
'is_iterable': <function is_iterable at
|
1357
|
-
'print_to_last_line': <function print_to_last_line at
|
1358
|
-
'text_colorize': <function text_colorize at
|
1359
|
-
'choices': <function choices at
|
1360
|
-
'chunk_array': <function chunk_array at
|
1361
|
-
'create_folder': <function create_folder at
|
1362
|
-
'datetime_from_string': <function datetime_from_string at
|
1363
|
-
'datetime_now': <function datetime_now at
|
1364
|
-
'dict_first': <function dict_first at
|
1365
|
-
'dirname': <function dirname at
|
1366
|
-
'is_empty': <function is_empty at
|
1367
|
-
'exit_if_empty': <function exit_if_empty at
|
1368
|
-
'to_str': <function to_str at
|
1369
|
-
'filter_empty': <function filter_empty at
|
1370
|
-
'get_by_index': <function get_by_index at
|
1371
|
-
'get_class_method': <function get_class_method at
|
1372
|
-
'get_filesize': <function get_filesize at
|
1373
|
-
'github_pull': <function github_pull at
|
1374
|
-
'github_push': <function github_push at
|
1375
|
-
'github_user': <function github_user at
|
1376
|
-
'iargv': <function iargv at
|
1377
|
-
'idumps_html': <function idumps_html at
|
1378
|
-
'idumps': <function idumps at
|
1379
|
-
'ienv': <function ienv at
|
1380
|
-
'iexec': <function iexec at
|
1381
|
-
'ijoin': <function ijoin at
|
1382
|
-
'iloads_html': <function iloads_html at
|
1383
|
-
'iloads': <function iloads at
|
1384
|
-
'input_char': <function input_char at
|
1385
|
-
'is_valid_url': <function is_valid_url at
|
1386
|
-
'iopen': <function iopen at
|
1387
|
-
'iprint': <function iprint at
|
1388
|
-
'ireplace': <function ireplace at
|
1389
|
-
'iscandir': <function iscandir at
|
1390
|
-
'isplit': <function isplit at
|
1391
|
-
'ivars': <function ivars at
|
1392
|
-
'log': <function log at
|
1393
|
-
'password_generator': <function password_generator at
|
1394
|
-
'pip_freeze_without_version': <function pip_freeze_without_version at
|
1395
|
-
'poetry_publish': <function poetry_publish at
|
1396
|
-
'poetry_update_version': <function poetry_update_version at
|
1397
|
-
'print_dir': <function print_dir at
|
1398
|
-
'random_bool': <function random_bool at
|
1399
|
-
'restart': <function restart at
|
1400
|
-
'set_timeout': <function set_timeout at
|
1401
|
-
'sets_ordered': <function sets_ordered at
|
1402
|
-
'str_cmp': <function str_cmp at
|
1287
|
+
'function': {'avg': <function avg at 0x725d0a2700>,
|
1288
|
+
'get_filemtime': <function get_filemtime at 0x725830b2e0>,
|
1289
|
+
'print_colorize': <function print_colorize at 0x725830b4c0>,
|
1290
|
+
'print_log': <function print_log at 0x725859ab60>,
|
1291
|
+
'console_run': <function console_run at 0x725830b380>,
|
1292
|
+
'auto_reload': <function auto_reload at 0x72584c3ec0>,
|
1293
|
+
'basename': <function basename at 0x725830b240>,
|
1294
|
+
'chr_to_int': <function chr_to_int at 0x725830b9c0>,
|
1295
|
+
'int_to_chr': <function int_to_chr at 0x725830ba60>,
|
1296
|
+
'irange': <function irange at 0x725830b880>,
|
1297
|
+
'batchmaker': <function batchmaker at 0x725830b740>,
|
1298
|
+
'calculate': <function calculate at 0x725830bce0>,
|
1299
|
+
'batch_calculate': <function batch_calculate at 0x725830b600>,
|
1300
|
+
'is_iterable': <function is_iterable at 0x725830bd80>,
|
1301
|
+
'print_to_last_line': <function print_to_last_line at 0x725830be20>,
|
1302
|
+
'text_colorize': <function text_colorize at 0x725830bec0>,
|
1303
|
+
'choices': <function choices at 0x725830b6a0>,
|
1304
|
+
'chunk_array': <function chunk_array at 0x725830b7e0>,
|
1305
|
+
'create_folder': <function create_folder at 0x725830bf60>,
|
1306
|
+
'datetime_from_string': <function datetime_from_string at 0x72582fc040>,
|
1307
|
+
'datetime_now': <function datetime_now at 0x72582fc0e0>,
|
1308
|
+
'dict_first': <function dict_first at 0x72582fc180>,
|
1309
|
+
'dirname': <function dirname at 0x72582fc220>,
|
1310
|
+
'is_empty': <function is_empty at 0x72582fc400>,
|
1311
|
+
'exit_if_empty': <function exit_if_empty at 0x725830b560>,
|
1312
|
+
'to_str': <function to_str at 0x72582fc540>,
|
1313
|
+
'filter_empty': <function filter_empty at 0x72582fc2c0>,
|
1314
|
+
'get_by_index': <function get_by_index at 0x72582fc4a0>,
|
1315
|
+
'get_class_method': <function get_class_method at 0x72582fc5e0>,
|
1316
|
+
'get_filesize': <function get_filesize at 0x72582fc720>,
|
1317
|
+
'github_pull': <function github_pull at 0x72582fc7c0>,
|
1318
|
+
'github_push': <function github_push at 0x72582fc9a0>,
|
1319
|
+
'github_user': <function github_user at 0x72582fca40>,
|
1320
|
+
'iargv': <function iargv at 0x72582fc860>,
|
1321
|
+
'idumps_html': <function idumps_html at 0x72582fccc0>,
|
1322
|
+
'idumps': <function idumps at 0x72582fcb80>,
|
1323
|
+
'ienv': <function ienv at 0x72582fd1c0>,
|
1324
|
+
'iexec': <function iexec at 0x72583d94e0>,
|
1325
|
+
'ijoin': <function ijoin at 0x72583d96c0>,
|
1326
|
+
'iloads_html': <function iloads_html at 0x72583d98a0>,
|
1327
|
+
'iloads': <function iloads at 0x72583d9620>,
|
1328
|
+
'input_char': <function input_char at 0x72583d9800>,
|
1329
|
+
'is_valid_url': <function is_valid_url at 0x72583d9a80>,
|
1330
|
+
'iopen': <function iopen at 0x72581f1ee0>,
|
1331
|
+
'iprint': <function iprint at 0x72583d99e0>,
|
1332
|
+
'ireplace': <function ireplace at 0x72583d9da0>,
|
1333
|
+
'iscandir': <function iscandir at 0x72582ad620>,
|
1334
|
+
'isplit': <function isplit at 0x72582ad6c0>,
|
1335
|
+
'ivars': <function ivars at 0x72582ad760>,
|
1336
|
+
'log': <function log at 0x72582ad800>,
|
1337
|
+
'password_generator': <function password_generator at 0x72582ad8a0>,
|
1338
|
+
'pip_freeze_without_version': <function pip_freeze_without_version at 0x72582ad9e0>,
|
1339
|
+
'poetry_publish': <function poetry_publish at 0x72582ada80>,
|
1340
|
+
'poetry_update_version': <function poetry_update_version at 0x72582adbc0>,
|
1341
|
+
'print_dir': <function print_dir at 0x72582adda0>,
|
1342
|
+
'random_bool': <function random_bool at 0x72582ade40>,
|
1343
|
+
'restart': <function restart at 0x72582adee0>,
|
1344
|
+
'set_timeout': <function set_timeout at 0x72582adf80>,
|
1345
|
+
'sets_ordered': <function sets_ordered at 0x72582ae020>,
|
1346
|
+
'str_cmp': <function str_cmp at 0x72582ae0c0>},
|
1403
1347
|
'variable': {'LINUX': True,
|
1404
|
-
'PintUreg': <pint.registry.UnitRegistry object at
|
1348
|
+
'PintUreg': <pint.registry.UnitRegistry object at 0x725d0a8450>,
|
1405
1349
|
'WINDOWS': False},
|
1406
1350
|
'module': {'asyncio': <module 'asyncio' from '/data/data/com.termux/files/usr/lib/python3.11/asyncio/__init__.py'>,
|
1407
1351
|
'colorama': <module 'colorama' from '/data/data/com.termux/files/usr/lib/python3.11/site-packages/colorama/__init__.py'>,
|
@@ -1475,7 +1419,7 @@ print(password_generator())
|
|
1475
1419
|
|
1476
1420
|
Output:
|
1477
1421
|
```py
|
1478
|
-
|
1422
|
+
Ym}9H"{5
|
1479
1423
|
```
|
1480
1424
|
|
1481
1425
|
## pip_freeze_without_version
|
@@ -1533,7 +1477,7 @@ Output:
|
|
1533
1477
|
__enter__ : https:/www.google.com
|
1534
1478
|
__fspath__ : https:/www.google.com
|
1535
1479
|
__getstate__ : (None, {'_drv': '', '_root': '', '_parts': ['https:', 'www.google.com'], '_str': 'https:/www.google.com'})
|
1536
|
-
__hash__ :
|
1480
|
+
__hash__ : 3977985606964424013
|
1537
1481
|
__init__ : None
|
1538
1482
|
__init_subclass__ : None
|
1539
1483
|
__module__ : pathlib
|
@@ -1546,8 +1490,8 @@ Output:
|
|
1546
1490
|
_cached_cparts : ['https:', 'www.google.com']
|
1547
1491
|
_cparts : ['https:', 'www.google.com']
|
1548
1492
|
_drv :
|
1549
|
-
_flavour : <pathlib._PosixFlavour object at
|
1550
|
-
_hash :
|
1493
|
+
_flavour : <pathlib._PosixFlavour object at 0x7262454610>
|
1494
|
+
_hash : 3977985606964424013
|
1551
1495
|
_parts : ['https:', 'www.google.com']
|
1552
1496
|
_root :
|
1553
1497
|
_str : https:/www.google.com
|
@@ -1569,7 +1513,7 @@ Output:
|
|
1569
1513
|
is_reserved : False
|
1570
1514
|
is_socket : False
|
1571
1515
|
is_symlink : False
|
1572
|
-
iterdir : <generator object Path.iterdir at
|
1516
|
+
iterdir : <generator object Path.iterdir at 0x7252f59fc0>
|
1573
1517
|
joinpath : https:/www.google.com
|
1574
1518
|
name : www.google.com
|
1575
1519
|
parent : https:
|
@@ -1597,7 +1541,7 @@ print(random_bool())
|
|
1597
1541
|
|
1598
1542
|
Output:
|
1599
1543
|
```py
|
1600
|
-
|
1544
|
+
True
|
1601
1545
|
```
|
1602
1546
|
|
1603
1547
|
## restart
|
@@ -1623,7 +1567,7 @@ x.cancel()
|
|
1623
1567
|
|
1624
1568
|
Output:
|
1625
1569
|
```py
|
1626
|
-
<Timer(Thread-2, started
|
1570
|
+
<Timer(Thread-2, started 490989403376)>
|
1627
1571
|
menghentikan timeout 7
|
1628
1572
|
```
|
1629
1573
|
|
@@ -1641,7 +1585,7 @@ print(list(sets_ordered(array)))
|
|
1641
1585
|
|
1642
1586
|
Output:
|
1643
1587
|
```py
|
1644
|
-
<generator object sets_ordered at
|
1588
|
+
<generator object sets_ordered at 0x7252f78ad0>
|
1645
1589
|
[2, 3, 12, 42, 1, 43, 41, 4, 24, 32]
|
1646
1590
|
```
|
1647
1591
|
|
@@ -1716,7 +1660,7 @@ print(ExampleComparePerformance().compare_performance())
|
|
1716
1660
|
|
1717
1661
|
Output:
|
1718
1662
|
```py
|
1719
|
-
{'a': <generator object ExampleComparePerformance.a.<locals>.<genexpr> at
|
1663
|
+
{'a': <generator object ExampleComparePerformance.a.<locals>.<genexpr> at 0x7252f78520>,
|
1720
1664
|
'b': (0, 1, 2, 3, 4, 5, 6, 7, 8, 9),
|
1721
1665
|
'c': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
|
1722
1666
|
'd': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]}
|
@@ -7,14 +7,14 @@ pypipr/RunParallel.py,sha256=BnMasZTnr2gUVVy9dOXePlL_-ud2rWkVPFL2i-sN7rg,7358
|
|
7
7
|
pypipr/WINDOWS.py,sha256=D-qiViq9LWTCaTefJhbxt-7Z2ty8ll7-DZ5NPFitT94,105
|
8
8
|
pypipr/__init__.py,sha256=s4rjNyzo6yk4ElhuCbSRy_hR1Vn3qLXd3JcLgXf_4rc,2827
|
9
9
|
pypipr/__terminal__.py,sha256=4w-2p_Rudm_dNdfG-rkO24heVgKLrve4xVXiRpWxVcc,1800
|
10
|
-
pypipr/auto_reload.py,sha256=
|
10
|
+
pypipr/auto_reload.py,sha256=h31UvIzunCaPGvP1F5E-jvspk3K06P-EJuGfiN7WEtY,954
|
11
11
|
pypipr/avg.py,sha256=wUtX3x8dgLoODhQLyMB-HRMVo8Ha2yz3cp7lgcUNbr0,218
|
12
12
|
pypipr/basename.py,sha256=nypVfls6YL_7sY-MYHDcatm5flpBpGj2aMlIOKG9YqE,194
|
13
13
|
pypipr/batch_calculate.py,sha256=rHDXHvzxqKdQlusb6L8mTn27nfadCJMkud9LtGgRNIU,836
|
14
|
-
pypipr/batchmaker.py,sha256=
|
14
|
+
pypipr/batchmaker.py,sha256=_Yrl_6H6Sb-KjWZ2Tev6tTbRWPs5gcMKSkVvwsDG9bA,1112
|
15
15
|
pypipr/calculate.py,sha256=wzEbP8V1haM-JeIz85fBAuT2mgPc7uxQZ7wEuSUEXLc,805
|
16
16
|
pypipr/choices.py,sha256=hjVToqAIeMoMfL3kJxOERAicEVsQyUGwzbnorhLdMA4,1664
|
17
|
-
pypipr/chr_to_int.py,sha256=
|
17
|
+
pypipr/chr_to_int.py,sha256=e2rP9IouL-irUZ2TLiC5JatskYfxt9pUJ_Ey5-qZ7jY,715
|
18
18
|
pypipr/chunk_array.py,sha256=aodjp-daihl-Xd8kPqcpHZICZub7Jx0QBqyoF0bd0dY,385
|
19
19
|
pypipr/console_run.py,sha256=vCJqDa1rExisqaFLNeWM-hnuXHfUfiYcyNAOJjldOHs,525
|
20
20
|
pypipr/create_folder.py,sha256=0G78lY4Zig25Tlz5ky3kMNQxd6wL8Fjo2n8ZlgxtRwE,383
|
@@ -43,7 +43,7 @@ pypipr/input_char.py,sha256=5GmpeWWn5eGeozvfX5A886vrtuEuextGjbbK5HAYeeE,1008
|
|
43
43
|
pypipr/int_to_chr.py,sha256=B-HnKziRQgDObsr2vMd2TnL3EkZAIMbK6fSY8b8r_dc,610
|
44
44
|
pypipr/iopen.py,sha256=y1cLJuML1_lb64UfavXw8RemxM_olJhwZnECbXdOmi8,2786
|
45
45
|
pypipr/iprint.py,sha256=5ekT7RzcTd8Lsb8IQ9JeFJmFl2V6OYFbiHECt9W4iWg,838
|
46
|
-
pypipr/irange.py,sha256=
|
46
|
+
pypipr/irange.py,sha256=sXdFPGzFAgxwndlJc4eNUb43czLo3j5-_xDn94-hVYY,1560
|
47
47
|
pypipr/ireplace.py,sha256=RcVMXmbXH_cl4hXpTI5wnuzdPtkatpuZgYsZkfBLAJU,722
|
48
48
|
pypipr/is_empty.py,sha256=eqsH6ATuuOLVVSpIsV_8zTBBibPrWjESu9LCMAv8YyY,683
|
49
49
|
pypipr/is_iterable.py,sha256=VCzLfFZyQO5qF2wFTVbuZIxyf4BVkflWiRQaOjd9kFs,922
|
@@ -67,7 +67,7 @@ pypipr/sets_ordered.py,sha256=ve2Nc1eNYD_7QaTf_4otEAvzL1XpZP2MjX0KHSXF5nA,325
|
|
67
67
|
pypipr/str_cmp.py,sha256=2kavWiT4VTddXcBotF1CxDOWSygk5rFrbllKxBjw9dc,377
|
68
68
|
pypipr/text_colorize.py,sha256=IVjaCnXBSBu4Rh8pTO3CxDvxpA265HVwyKX_-PRXCcI,396
|
69
69
|
pypipr/to_str.py,sha256=vSuspf-ZQldf4enkssa9XH0WMjkmWug51G9ia0K5occ,597
|
70
|
-
pypipr-1.0.
|
71
|
-
pypipr-1.0.
|
72
|
-
pypipr-1.0.
|
73
|
-
pypipr-1.0.
|
70
|
+
pypipr-1.0.109.dist-info/METADATA,sha256=zlbVdD8_W54Vpp5n4dKzBX9nOz3iUHJ9kLqMOrqIwB4,49308
|
71
|
+
pypipr-1.0.109.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
72
|
+
pypipr-1.0.109.dist-info/entry_points.txt,sha256=ikcrTRCn3jaySem1mM9uhYEPDq2PVOs48CyEqLUkY38,47
|
73
|
+
pypipr-1.0.109.dist-info/RECORD,,
|
File without changes
|
File without changes
|