pypipr 1.0.103__py3-none-any.whl → 1.0.105__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/iengineering/batch_calculate.py +10 -4
- pypipr/iengineering/batchmaker.py +1 -1
- pypipr/ifunctions/irange.py +9 -22
- {pypipr-1.0.103.dist-info → pypipr-1.0.105.dist-info}/METADATA +116 -117
- {pypipr-1.0.103.dist-info → pypipr-1.0.105.dist-info}/RECORD +7 -7
- {pypipr-1.0.103.dist-info → pypipr-1.0.105.dist-info}/WHEEL +0 -0
- {pypipr-1.0.103.dist-info → pypipr-1.0.105.dist-info}/entry_points.txt +0 -0
@@ -15,13 +15,19 @@ def batch_calculate(pattern):
|
|
15
15
|
"""
|
16
16
|
patterns = batchmaker(pattern)
|
17
17
|
|
18
|
-
c = None
|
19
18
|
for i in patterns:
|
20
19
|
try:
|
21
|
-
|
20
|
+
yield (i, calculate(i))
|
22
21
|
except Exception:
|
23
|
-
|
24
|
-
|
22
|
+
yield (i, None)
|
23
|
+
|
24
|
+
# c = None
|
25
|
+
# for i in patterns:
|
26
|
+
# try:
|
27
|
+
# c = calculate(i)
|
28
|
+
# except Exception:
|
29
|
+
# c = None
|
30
|
+
# yield (i, c)
|
25
31
|
|
26
32
|
|
27
33
|
if __name__ == "__main__":
|
@@ -3,7 +3,7 @@ import re
|
|
3
3
|
from ..ifunctions.irange import irange
|
4
4
|
|
5
5
|
# batchmaker()
|
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{}]+)?}"
|
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
|
|
pypipr/ifunctions/irange.py
CHANGED
@@ -20,28 +20,17 @@ def irange(start, stop=None, step=1, index=0, numbers="abcdefghijklmnopqrstuvwxy
|
|
20
20
|
|
21
21
|
step = 1 if step is None else int(step)
|
22
22
|
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
23
|
+
try:
|
24
|
+
start = int(start)
|
25
|
+
stop = int(stop)
|
26
|
+
return irange(start, stop, step, index, numbers)
|
27
|
+
except Exception:
|
28
|
+
pass
|
29
|
+
|
30
|
+
if isinstance(start, str) and isinstance(stop, str):
|
27
31
|
return char_range(start, stop, step, index=index, numbers=numbers)
|
28
32
|
|
29
|
-
|
30
|
-
try:
|
31
|
-
start = str(start)
|
32
|
-
stop = str(stop)
|
33
|
-
return irange(start, stop, step, index, numbers)
|
34
|
-
except Exception:
|
35
|
-
pass
|
36
|
-
|
37
|
-
try:
|
38
|
-
start = int(start)
|
39
|
-
stop = int(stop)
|
40
|
-
return irange(start, stop, step, index, numbers)
|
41
|
-
except Exception:
|
42
|
-
pass
|
43
|
-
|
44
|
-
raise Exception("start dan stop berbeda tipe")
|
33
|
+
raise Exception("start dan stop berbeda tipe")
|
45
34
|
|
46
35
|
|
47
36
|
def char_range(start, stop, step, numbers, index):
|
@@ -50,5 +39,3 @@ def char_range(start, stop, step, numbers, index):
|
|
50
39
|
|
51
40
|
for i in range(start, stop, step):
|
52
41
|
yield int_to_chr(i, start=index, numbers=numbers)
|
53
|
-
|
54
|
-
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pypipr
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.105
|
4
4
|
Summary: The Python Package Index Project
|
5
5
|
Author: ufiapjj
|
6
6
|
Author-email: ufiapjj@gmail.com
|
@@ -120,7 +120,7 @@ print(list(chunk_array(arr, 5)))
|
|
120
120
|
|
121
121
|
Output:
|
122
122
|
```py
|
123
|
-
<generator object chunk_array at
|
123
|
+
<generator object chunk_array at 0x7ede49c140>
|
124
124
|
[[2, 3, 12, 3, 3], [42, 42, 1, 43, 2], [42, 41, 4, 24, 32], [42, 3, 12, 32, 42], [42]]
|
125
125
|
```
|
126
126
|
|
@@ -171,9 +171,9 @@ print(datetime_now("Etc/GMT+7"))
|
|
171
171
|
|
172
172
|
Output:
|
173
173
|
```py
|
174
|
-
2024-04-29
|
175
|
-
2024-04-29
|
176
|
-
2024-04-29
|
174
|
+
2024-04-29 20:31:36.779299+07:00
|
175
|
+
2024-04-29 13:31:36.781008+00:00
|
176
|
+
2024-04-29 06:31:36.785718-07:00
|
177
177
|
```
|
178
178
|
|
179
179
|
## dict_first
|
@@ -240,7 +240,7 @@ print(filter_empty(var))
|
|
240
240
|
|
241
241
|
Output:
|
242
242
|
```py
|
243
|
-
<generator object filter_empty at
|
243
|
+
<generator object filter_empty at 0x7ede42ed40>
|
244
244
|
```
|
245
245
|
|
246
246
|
## get_by_index
|
@@ -286,8 +286,8 @@ print(list(get_class_method(ExampleGetClassMethod)))
|
|
286
286
|
|
287
287
|
Output:
|
288
288
|
```py
|
289
|
-
<generator object get_class_method at
|
290
|
-
[<function ExampleGetClassMethod.a at
|
289
|
+
<generator object get_class_method at 0x7ede42f010>
|
290
|
+
[<function ExampleGetClassMethod.a at 0x7ede4a5800>, <function ExampleGetClassMethod.b at 0x7ede4a56c0>, <function ExampleGetClassMethod.c at 0x7ede4a58a0>, <function ExampleGetClassMethod.d at 0x7ede4a5940>]
|
291
291
|
```
|
292
292
|
|
293
293
|
## get_filemtime
|
@@ -455,7 +455,7 @@ print(password_generator())
|
|
455
455
|
|
456
456
|
Output:
|
457
457
|
```py
|
458
|
-
|
458
|
+
tJh9lZE6
|
459
459
|
```
|
460
460
|
|
461
461
|
## random_bool
|
@@ -499,7 +499,7 @@ x.cancel()
|
|
499
499
|
|
500
500
|
Output:
|
501
501
|
```py
|
502
|
-
<Timer(Thread-2, started
|
502
|
+
<Timer(Thread-2, started 544867335408)>
|
503
503
|
menghentikan timeout 7
|
504
504
|
```
|
505
505
|
|
@@ -517,7 +517,7 @@ print(list(sets_ordered(array)))
|
|
517
517
|
|
518
518
|
Output:
|
519
519
|
```py
|
520
|
-
<generator object sets_ordered at
|
520
|
+
<generator object sets_ordered at 0x7ede4ac1e0>
|
521
521
|
[2, 3, 12, 42, 1, 43, 41, 4, 24, 32]
|
522
522
|
```
|
523
523
|
|
@@ -671,7 +671,7 @@ Output:
|
|
671
671
|
__enter__ : https:/www.google.com
|
672
672
|
__fspath__ : https:/www.google.com
|
673
673
|
__getstate__ : (None, {'_drv': '', '_root': '', '_parts': ['https:', 'www.google.com'], '_str': 'https:/www.google.com'})
|
674
|
-
__hash__ : -
|
674
|
+
__hash__ : -185955431603170865
|
675
675
|
__init__ : None
|
676
676
|
__init_subclass__ : None
|
677
677
|
__module__ : pathlib
|
@@ -684,8 +684,8 @@ Output:
|
|
684
684
|
_cached_cparts : ['https:', 'www.google.com']
|
685
685
|
_cparts : ['https:', 'www.google.com']
|
686
686
|
_drv :
|
687
|
-
_flavour : <pathlib._PosixFlavour object at
|
688
|
-
_hash : -
|
687
|
+
_flavour : <pathlib._PosixFlavour object at 0x7ef1110690>
|
688
|
+
_hash : -185955431603170865
|
689
689
|
_parts : ['https:', 'www.google.com']
|
690
690
|
_root :
|
691
691
|
_str : https:/www.google.com
|
@@ -707,7 +707,7 @@ Output:
|
|
707
707
|
is_reserved : False
|
708
708
|
is_socket : False
|
709
709
|
is_symlink : False
|
710
|
-
iterdir : <generator object Path.iterdir at
|
710
|
+
iterdir : <generator object Path.iterdir at 0x7ede488ba0>
|
711
711
|
joinpath : https:/www.google.com
|
712
712
|
name : www.google.com
|
713
713
|
parent : https:
|
@@ -1151,7 +1151,7 @@ print(ijoin(10, ' '))
|
|
1151
1151
|
|
1152
1152
|
Output:
|
1153
1153
|
```py
|
1154
|
-
|
1154
|
+
asd, dfs, qweqw, weq
|
1155
1155
|
,ini,path,seperti,url,
|
1156
1156
|
ini,path,seperti,url
|
1157
1157
|
<li>satu</li>
|
@@ -1217,9 +1217,9 @@ Output:
|
|
1217
1217
|
```py
|
1218
1218
|
(['Home', 'Emas 1 Gram', 'History', 'Trend', 'Perak 1 Gram', 'Pluang'],
|
1219
1219
|
[['Harga Emas Hari Ini - Senin, 29 April 2024'],
|
1220
|
-
['Spot Emas USD↓2.
|
1220
|
+
['Spot Emas USD↓2.333,06 (-4,88) / oz',
|
1221
1221
|
'Kurs IDR↑16.222,00 (+14,00) / USD',
|
1222
|
-
'Emas IDR↓1.
|
1222
|
+
'Emas IDR↓1.216.806 (-1.493) / gr'],
|
1223
1223
|
['LM Antam (Jual)↓1.325.000 (-1.000) / gr',
|
1224
1224
|
'LM Antam (Beli)↓1.221.000 (-1.000) / gr']],
|
1225
1225
|
[['Harga Emas Hari Ini'],
|
@@ -1290,10 +1290,10 @@ Output:
|
|
1290
1290
|
'Update harga LM Pegadaian :31 Agustus 2023']],
|
1291
1291
|
[['Spot Harga Emas Hari Ini (Market Open)'],
|
1292
1292
|
['Satuan', 'USD', 'Kurs\xa0Dollar', 'IDR'],
|
1293
|
-
['Ounce\xa0(oz)', '2.
|
1294
|
-
['Gram\xa0(gr)', '
|
1295
|
-
['Kilogram\xa0(kg)', '
|
1296
|
-
['Update harga emas :29 April 2024, pukul
|
1293
|
+
['Ounce\xa0(oz)', '2.333,06 (-4,88)', '16.222,00 (+14,00)', '37.846.899'],
|
1294
|
+
['Gram\xa0(gr)', '75,01', '16.222,00', '1.216.806 (-1.493)'],
|
1295
|
+
['Kilogram\xa0(kg)', '75.009,62', '16.222,00', '1.216.806.070'],
|
1296
|
+
['Update harga emas :29 April 2024, pukul 20:31Update kurs :29 April 2024, '
|
1297
1297
|
'pukul 13:10']],
|
1298
1298
|
[['Gram', 'UBS Gold 99.99%'],
|
1299
1299
|
['Jual', 'Beli'],
|
@@ -1339,36 +1339,36 @@ Output:
|
|
1339
1339
|
['Unit', 'USD', 'IDR'],
|
1340
1340
|
['Angka', '+/-', 'Angka', '+/-'],
|
1341
1341
|
['Hari Ini', 'Kurs', '', '', '16.208', '+14+0,09%'],
|
1342
|
-
['oz', '2.337,94', '-
|
1343
|
-
['gr', '75,17', '-0,
|
1342
|
+
['oz', '2.337,94', '-4,88-0,21%', '37.893.332', '-46.432-0,12%'],
|
1343
|
+
['gr', '75,17', '-0,16-0,21%', '1.218.299', '-1.493-0,12%'],
|
1344
1344
|
['30 Hari', 'Kurs', '', '', '15.853', '+369+2,33%'],
|
1345
|
-
['oz', '2.232,75', '+
|
1346
|
-
['gr', '71,78', '+3,
|
1345
|
+
['oz', '2.232,75', '+100,31+4,49%', '35.395.786', '+2.451.114+6,92%'],
|
1346
|
+
['gr', '71,78', '+3,23+4,49%', '1.138.001', '+78.805+6,92%'],
|
1347
1347
|
['2 Bulan', 'Kurs', '', '', '15.673', '+549+3,50%'],
|
1348
|
-
['oz', '2.045,83', '+
|
1349
|
-
['gr', '65,77', '+9,
|
1348
|
+
['oz', '2.045,83', '+287,23+14,04%', '32.064.294', '+5.782.606+18,03%'],
|
1349
|
+
['gr', '65,77', '+9,23+14,04', '1.030.891', '+185.915+18,03%'],
|
1350
1350
|
['6 Bulan', 'Kurs', '', '', '15.897', '+325+2,04%'],
|
1351
|
-
['oz', '1.977,80', '+
|
1352
|
-
['gr', '63,59', '+11,
|
1351
|
+
['oz', '1.977,80', '+355,26+17,96%', '31.441.087', '+6.405.813+20,37%'],
|
1352
|
+
['gr', '63,59', '+11,42+17,96%', '1.010.854', '+205.952+20,37%'],
|
1353
1353
|
['1 Tahun', 'Kurs', '', '', '15.731', '+491+3,12%'],
|
1354
|
-
['oz', '1.823,86', '+
|
1355
|
-
['gr', '58,64', '+16,
|
1354
|
+
['oz', '1.823,86', '+509,20+27,92%', '28.691.142', '+9.155.758+31,91%'],
|
1355
|
+
['gr', '58,64', '+16,37+27,92%', '922.442', '+294.364+31,91%'],
|
1356
1356
|
['2 Tahun', 'Kurs', '', '', '14.418', '+1.804+12,51%'],
|
1357
|
-
['oz', '1.896,95', '+
|
1358
|
-
['gr', '60,99', '+
|
1357
|
+
['oz', '1.896,95', '+436,11+22,99%', '27.350.225', '+10.496.674+38,38%'],
|
1358
|
+
['gr', '60,99', '+14,02+22,99%', '879.330', '+337.476+38,38%'],
|
1359
1359
|
['3 Tahun', 'Kurs', '', '', '14.468', '+1.754+12,12%'],
|
1360
|
-
['oz', '1.767,08', '+
|
1361
|
-
['gr', '56,81', '+18,
|
1360
|
+
['oz', '1.767,08', '+565,98+32,03%', '25.566.113', '+12.280.786+48,04%'],
|
1361
|
+
['gr', '56,81', '+18,20+32,03%', '821.970', '+394.836+48,04%'],
|
1362
1362
|
['5 Tahun', 'Kurs', '', '', '14.215', '+2.007+14,12%'],
|
1363
|
-
['oz', '1.280,61', '+1.
|
1364
|
-
['gr', '41,17', '+33,
|
1363
|
+
['oz', '1.280,61', '+1.052,45+82,18%', '18.203.871', '+19.643.028+107,91%'],
|
1364
|
+
['gr', '41,17', '+33,84+82,18%', '585.268', '+631.538+107,91%']])
|
1365
1365
|
(['Home', 'Emas 1 Gram', 'History', 'Trend', 'Perak 1 Gram', 'Pluang'],
|
1366
1366
|
[[''],
|
1367
1367
|
['Emas 24 KaratHarga Emas 1 Gram', ''],
|
1368
|
-
['USD', '
|
1369
|
-
['KURS', '16.
|
1370
|
-
['IDR', '1.
|
1371
|
-
['Senin, 29 April 2024
|
1368
|
+
['USD', '75,01↓', '-0,16-0,21%'],
|
1369
|
+
['KURS', '16.226,15↓', '-15,15-0,09%'],
|
1370
|
+
['IDR', '1.217.117,36↓', '-3.684,58-0,30%'],
|
1371
|
+
['Senin, 29 April 2024 20:31']],
|
1372
1372
|
[[''],
|
1373
1373
|
['Emas 1 Gram (IDR)Emas 1 Gram (USD)Kurs USD-IDR',
|
1374
1374
|
'Hari Ini',
|
@@ -1379,19 +1379,19 @@ Output:
|
|
1379
1379
|
'']],
|
1380
1380
|
[['Pergerakkan Harga Emas 1 Gram'],
|
1381
1381
|
['', 'Penutupan Kemarin', 'Pergerakkan Hari Ini', 'Rata-rata'],
|
1382
|
-
['USD', '75,17', '
|
1383
|
-
['KURS', '16.241,30', '16.
|
1384
|
-
['IDR', '1.220.801,94', '1.
|
1382
|
+
['USD', '75,17', '75,01 - 75,17', '75,09'],
|
1383
|
+
['KURS', '16.241,30', '16.226,15 - 16.241,30', '16.233,73'],
|
1384
|
+
['IDR', '1.220.801,94', '1.217.117,36 - 1.220.801,94', '1.218.959,65'],
|
1385
1385
|
[''],
|
1386
1386
|
['', 'Awal Tahun', 'Pergerakkan YTD', '+/- YTD'],
|
1387
|
-
['USD', '66,32', '64,07 - 77,14', '+8,
|
1388
|
-
['KURS', '15.390,10', '15.390,00 - 16.307,80', '+
|
1389
|
-
['IDR', '1.020.729,53', '997.660,12 - 1.256.829,06', '+
|
1387
|
+
['USD', '66,32', '64,07 - 77,14', '+8,69 (13,10%)'],
|
1388
|
+
['KURS', '15.390,10', '15.390,00 - 16.307,80', '+836,05 (5,43%)'],
|
1389
|
+
['IDR', '1.020.729,53', '997.660,12 - 1.256.829,06', '+196.387,83 (19,24%)'],
|
1390
1390
|
[''],
|
1391
1391
|
['', 'Tahun Lalu / 52 Minggu', 'Pergerakkan 52 Minggu', '+/- 52 Minggu'],
|
1392
|
-
['USD', '64,04', '58,43 - 77,14', '+10,
|
1393
|
-
['KURS', '14.671,35', '14.669,40 - 16.307,80', '+1.
|
1394
|
-
['IDR', '939.568,98', '912.925,68 - 1.256.829,06', '+
|
1392
|
+
['USD', '64,04', '58,43 - 77,14', '+10,97 (17,13%)'],
|
1393
|
+
['KURS', '14.671,35', '14.669,40 - 16.307,80', '+1.554,80 (10,60%)'],
|
1394
|
+
['IDR', '939.568,98', '912.925,68 - 1.256.829,06', '+277.548,38 (29,54%)']])
|
1395
1395
|
```
|
1396
1396
|
|
1397
1397
|
## iopen
|
@@ -1433,8 +1433,7 @@ Output:
|
|
1433
1433
|
```py
|
1434
1434
|
8
|
1435
1435
|
['mana', 'aja']
|
1436
|
-
|
1437
|
-
[<Element a at 0x700abbd9a0>, <Element a at 0x6ff2c2ead0>, <Element a at 0x6ff2c2eb70>, <Element a at 0x6ff2c2ebc0>, <Element a at 0x6ff2c2ec10>, <Element a at 0x6ff2c2ec60>, <Element a at 0x6ff2c2ecb0>, <Element a at 0x6ff2c2ed00>, <Element a at 0x6ff2c2ed50>, <Element a at 0x6ff2c2eda0>, <Element a at 0x6ff2c2edf0>, <Element a at 0x6ff2c2ee40>, <Element a at 0x6ff2c2ee90>, <Element a at 0x6ff2c2eee0>, <Element a at 0x6ff2c2ef30>, <Element a at 0x6ff2c2ef80>, <Element a at 0x6ff2c2efd0>, <Element a at 0x6ff2c2f020>, <Element a at 0x6ff2c2f070>, <Element a at 0x6ff2c2f0c0>]
|
1436
|
+
[<Element a at 0x7ede4972a0>, <Element a at 0x7ede4dab70>, <Element a at 0x7ede4dac10>, <Element a at 0x7ede4dac60>, <Element a at 0x7ede4dacb0>, <Element a at 0x7ede4dad00>, <Element a at 0x7ede4dad50>, <Element a at 0x7ede4dada0>, <Element a at 0x7ede4dadf0>, <Element a at 0x7ede4dae40>, <Element a at 0x7ede4dae90>, <Element a at 0x7ede4daee0>, <Element a at 0x7ede4daf30>, <Element a at 0x7ede4daf80>, <Element a at 0x7ede4dafd0>, <Element a at 0x7ede4db020>, <Element a at 0x7ede4db070>, <Element a at 0x7ede4db0c0>, <Element a at 0x7ede4db110>, <Element a at 0x7ede4db160>]
|
1438
1437
|
False
|
1439
1438
|
```
|
1440
1439
|
|
@@ -1510,7 +1509,7 @@ print(list(iscandir("./", recursive=False, scan_file=False)))
|
|
1510
1509
|
|
1511
1510
|
Output:
|
1512
1511
|
```py
|
1513
|
-
<generator object iscandir at
|
1512
|
+
<generator object iscandir at 0x7ede49c740>
|
1514
1513
|
[PosixPath('.git'), PosixPath('.vscode'), PosixPath('pypipr'), PosixPath('__pycache__'), PosixPath('dist')]
|
1515
1514
|
```
|
1516
1515
|
|
@@ -1548,7 +1547,7 @@ Output:
|
|
1548
1547
|
'idjango': <module 'pypipr.idjango' from '/data/data/com.termux/files/home/pypipr/pypipr/idjango/__init__.py'>,
|
1549
1548
|
'iengineering': <module 'pypipr.iengineering' from '/data/data/com.termux/files/home/pypipr/pypipr/iengineering/__init__.py'>,
|
1550
1549
|
'ifunctions': <module 'pypipr.ifunctions' from '/data/data/com.termux/files/home/pypipr/pypipr/ifunctions/__init__.py'>,
|
1551
|
-
'iflow': <module 'pypipr.iflow' (<_frozen_importlib_external.NamespaceLoader object at
|
1550
|
+
'iflow': <module 'pypipr.iflow' (<_frozen_importlib_external.NamespaceLoader object at 0x7ee757fc50>)>,
|
1552
1551
|
'asyncio': <module 'asyncio' from '/data/data/com.termux/files/usr/lib/python3.11/asyncio/__init__.py'>,
|
1553
1552
|
'colorama': <module 'colorama' from '/data/data/com.termux/files/usr/lib/python3.11/site-packages/colorama/__init__.py'>,
|
1554
1553
|
'csv': <module 'csv' from '/data/data/com.termux/files/usr/lib/python3.11/csv.py'>,
|
@@ -1586,67 +1585,67 @@ Output:
|
|
1586
1585
|
'PintUregQuantity': <class 'pint.Quantity'>},
|
1587
1586
|
'variable': {'LINUX': True,
|
1588
1587
|
'WINDOWS': False,
|
1589
|
-
'PintUreg': <pint.registry.UnitRegistry object at
|
1590
|
-
'function': {'avg': <function avg at
|
1591
|
-
'basename': <function basename at
|
1592
|
-
'chr_to_int': <function chr_to_int at
|
1593
|
-
'chunk_array': <function chunk_array at
|
1594
|
-
'create_folder': <function create_folder at
|
1595
|
-
'datetime_from_string': <function datetime_from_string at
|
1596
|
-
'datetime_now': <function datetime_now at
|
1597
|
-
'dict_first': <function dict_first at
|
1598
|
-
'dirname': <function dirname at
|
1599
|
-
'exit_if_empty': <function exit_if_empty at
|
1600
|
-
'filter_empty': <function filter_empty at
|
1601
|
-
'get_by_index': <function get_by_index at
|
1602
|
-
'get_class_method': <function get_class_method at
|
1603
|
-
'get_filemtime': <function get_filemtime at
|
1604
|
-
'get_filesize': <function get_filesize at
|
1605
|
-
'int_to_chr': <function int_to_chr at
|
1606
|
-
'is_empty': <function is_empty at
|
1607
|
-
'is_iterable': <function is_iterable at
|
1608
|
-
'is_valid_url': <function is_valid_url at
|
1609
|
-
'password_generator': <function password_generator at
|
1610
|
-
'random_bool': <function random_bool at
|
1611
|
-
'restart': <function restart at
|
1612
|
-
'set_timeout': <function set_timeout at
|
1613
|
-
'sets_ordered': <function sets_ordered at
|
1614
|
-
'str_cmp': <function str_cmp at
|
1615
|
-
'to_str': <function to_str at
|
1616
|
-
'choices': <function choices at
|
1617
|
-
'console_run': <function console_run at
|
1618
|
-
'input_char': <function input_char at
|
1619
|
-
'log': <function log at
|
1620
|
-
'print_colorize': <function print_colorize at
|
1621
|
-
'print_dir': <function print_dir at
|
1622
|
-
'print_log': <function print_log at
|
1623
|
-
'print_to_last_line': <function print_to_last_line at
|
1624
|
-
'text_colorize': <function text_colorize at
|
1625
|
-
'batch_calculate': <function batch_calculate at
|
1626
|
-
'batchmaker': <function batchmaker at
|
1627
|
-
'calculate': <function calculate at
|
1628
|
-
'auto_reload': <function auto_reload at
|
1629
|
-
'github_pull': <function github_pull at
|
1630
|
-
'github_push': <function github_push at
|
1631
|
-
'github_user': <function github_user at
|
1632
|
-
'pip_freeze_without_version': <function pip_freeze_without_version at
|
1633
|
-
'poetry_publish': <function poetry_publish at
|
1634
|
-
'poetry_update_version': <function poetry_update_version at
|
1635
|
-
'iargv': <function iargv at
|
1636
|
-
'idumps': <function idumps at
|
1637
|
-
'idumps_html': <function idumps_html at
|
1638
|
-
'ienv': <function ienv at
|
1639
|
-
'iexec': <function iexec at
|
1640
|
-
'ijoin': <function ijoin at
|
1641
|
-
'iloads': <function iloads at
|
1642
|
-
'iloads_html': <function iloads_html at
|
1643
|
-
'iopen': <function iopen at
|
1644
|
-
'iprint': <function iprint at
|
1645
|
-
'irange': <function irange at
|
1646
|
-
'ireplace': <function ireplace at
|
1647
|
-
'iscandir': <function iscandir at
|
1648
|
-
'isplit': <function isplit at
|
1649
|
-
'ivars': <function ivars at
|
1588
|
+
'PintUreg': <pint.registry.UnitRegistry object at 0x7eeb84f750>},
|
1589
|
+
'function': {'avg': <function avg at 0x7ef57b6d40>,
|
1590
|
+
'basename': <function basename at 0x7ef57868e0>,
|
1591
|
+
'chr_to_int': <function chr_to_int at 0x7ef1095080>,
|
1592
|
+
'chunk_array': <function chunk_array at 0x7ef10951c0>,
|
1593
|
+
'create_folder': <function create_folder at 0x7ef10953a0>,
|
1594
|
+
'datetime_from_string': <function datetime_from_string at 0x7ef1095580>,
|
1595
|
+
'datetime_now': <function datetime_now at 0x7ef113d620>,
|
1596
|
+
'dict_first': <function dict_first at 0x7ef113d580>,
|
1597
|
+
'dirname': <function dirname at 0x7ef113d4e0>,
|
1598
|
+
'exit_if_empty': <function exit_if_empty at 0x7ef113d3a0>,
|
1599
|
+
'filter_empty': <function filter_empty at 0x7ef113d1c0>,
|
1600
|
+
'get_by_index': <function get_by_index at 0x7ef113ce00>,
|
1601
|
+
'get_class_method': <function get_class_method at 0x7ef113ccc0>,
|
1602
|
+
'get_filemtime': <function get_filemtime at 0x7ef113cb80>,
|
1603
|
+
'get_filesize': <function get_filesize at 0x7ef113c9a0>,
|
1604
|
+
'int_to_chr': <function int_to_chr at 0x7ef113c900>,
|
1605
|
+
'is_empty': <function is_empty at 0x7ef113d260>,
|
1606
|
+
'is_iterable': <function is_iterable at 0x7ef113cfe0>,
|
1607
|
+
'is_valid_url': <function is_valid_url at 0x7ef113c7c0>,
|
1608
|
+
'password_generator': <function password_generator at 0x7ef113c680>,
|
1609
|
+
'random_bool': <function random_bool at 0x7ef113c4a0>,
|
1610
|
+
'restart': <function restart at 0x7ef113f7e0>,
|
1611
|
+
'set_timeout': <function set_timeout at 0x7ef113f920>,
|
1612
|
+
'sets_ordered': <function sets_ordered at 0x7ef113fa60>,
|
1613
|
+
'str_cmp': <function str_cmp at 0x7ef113fb00>,
|
1614
|
+
'to_str': <function to_str at 0x7ef113cf40>,
|
1615
|
+
'choices': <function choices at 0x7ef113fba0>,
|
1616
|
+
'console_run': <function console_run at 0x7ef113fe20>,
|
1617
|
+
'input_char': <function input_char at 0x7ef113ff60>,
|
1618
|
+
'log': <function log at 0x7ef1160180>,
|
1619
|
+
'print_colorize': <function print_colorize at 0x7ef1160220>,
|
1620
|
+
'print_dir': <function print_dir at 0x7ef1160360>,
|
1621
|
+
'print_log': <function print_log at 0x7ef1160040>,
|
1622
|
+
'print_to_last_line': <function print_to_last_line at 0x7ef113fd80>,
|
1623
|
+
'text_colorize': <function text_colorize at 0x7ef113fec0>,
|
1624
|
+
'batch_calculate': <function batch_calculate at 0x7ee75896c0>,
|
1625
|
+
'batchmaker': <function batchmaker at 0x7ee758a340>,
|
1626
|
+
'calculate': <function calculate at 0x7ee758a700>,
|
1627
|
+
'auto_reload': <function auto_reload at 0x7ee758a3e0>,
|
1628
|
+
'github_pull': <function github_pull at 0x7ee758a5c0>,
|
1629
|
+
'github_push': <function github_push at 0x7ee758ab60>,
|
1630
|
+
'github_user': <function github_user at 0x7ee72aa160>,
|
1631
|
+
'pip_freeze_without_version': <function pip_freeze_without_version at 0x7ee72aa0c0>,
|
1632
|
+
'poetry_publish': <function poetry_publish at 0x7ee72aa020>,
|
1633
|
+
'poetry_update_version': <function poetry_update_version at 0x7ee72ceb60>,
|
1634
|
+
'iargv': <function iargv at 0x7ede6742c0>,
|
1635
|
+
'idumps': <function idumps at 0x7ede674400>,
|
1636
|
+
'idumps_html': <function idumps_html at 0x7ede6e0e00>,
|
1637
|
+
'ienv': <function ienv at 0x7ede674540>,
|
1638
|
+
'iexec': <function iexec at 0x7ede6e1080>,
|
1639
|
+
'ijoin': <function ijoin at 0x7ee72aa340>,
|
1640
|
+
'iloads': <function iloads at 0x7ede6e1120>,
|
1641
|
+
'iloads_html': <function iloads_html at 0x7ede6e13a0>,
|
1642
|
+
'iopen': <function iopen at 0x7ee72aa3e0>,
|
1643
|
+
'iprint': <function iprint at 0x7ede6e1260>,
|
1644
|
+
'irange': <function irange at 0x7ee758a520>,
|
1645
|
+
'ireplace': <function ireplace at 0x7ede6e1440>,
|
1646
|
+
'iscandir': <function iscandir at 0x7ede6e3060>,
|
1647
|
+
'isplit': <function isplit at 0x7ede6e3100>,
|
1648
|
+
'ivars': <function ivars at 0x7ede6e31a0>}}
|
1650
1649
|
```
|
1651
1650
|
|
1652
1651
|
# CLASS
|
@@ -1686,7 +1685,7 @@ print(ExampleComparePerformance().compare_performance())
|
|
1686
1685
|
|
1687
1686
|
Output:
|
1688
1687
|
```py
|
1689
|
-
{'a': <generator object ExampleComparePerformance.a.<locals>.<genexpr> at
|
1688
|
+
{'a': <generator object ExampleComparePerformance.a.<locals>.<genexpr> at 0x7ede4b02b0>,
|
1690
1689
|
'b': (0, 1, 2, 3, 4, 5, 6, 7, 8, 9),
|
1691
1690
|
'c': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
|
1692
1691
|
'd': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]}
|
@@ -45,8 +45,8 @@ pypipr/idjango/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
45
45
|
pypipr/iengineering/PintUreg.py,sha256=_jmHZhUn8AcgFkXvZ6OTsWnjtp-CYcXUJ-dG_QdcARY,222
|
46
46
|
pypipr/iengineering/PintUregQuantity.py,sha256=ErSZKB-GHShi1zKac30XgFdBwAUrxMo80IQzIjQ2HVc,118
|
47
47
|
pypipr/iengineering/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
48
|
-
pypipr/iengineering/batch_calculate.py,sha256=
|
49
|
-
pypipr/iengineering/batchmaker.py,sha256=
|
48
|
+
pypipr/iengineering/batch_calculate.py,sha256=rHDXHvzxqKdQlusb6L8mTn27nfadCJMkud9LtGgRNIU,836
|
49
|
+
pypipr/iengineering/batchmaker.py,sha256=xwfepl0zMU9Clt2mYuLAs83nfor1rgaX7042h6c737U,1285
|
50
50
|
pypipr/iengineering/calculate.py,sha256=wzEbP8V1haM-JeIz85fBAuT2mgPc7uxQZ7wEuSUEXLc,805
|
51
51
|
pypipr/iflow/auto_reload.py,sha256=KxgOwyhLR01gLMWmIpUHULpTXbG8fLM1sVxoZJYtTCI,966
|
52
52
|
pypipr/iflow/github_pull.py,sha256=ORoMehOoSNNrAjqB9TudvhKjZP5u2oaszhGctqHH3mM,243
|
@@ -66,7 +66,7 @@ pypipr/ifunctions/iloads.py,sha256=eyvSgqDxOXzU5dcPDT8cbtGtUIfjogxOqeQfwIhc92Q,6
|
|
66
66
|
pypipr/ifunctions/iloads_html.py,sha256=gGGOwv0gHsWAMxxBxNGZL3jpXz9ycTiAbAbarFndckg,4146
|
67
67
|
pypipr/ifunctions/iopen.py,sha256=2nEJRSMwlWCIrLD59DKCnP-Sxy_bPUMV836GNRKNiCY,2808
|
68
68
|
pypipr/ifunctions/iprint.py,sha256=_YXD_h68Olgt-3DbtbseoOpsIB2E2RHuJgIunnJxSOY,849
|
69
|
-
pypipr/ifunctions/irange.py,sha256=
|
69
|
+
pypipr/ifunctions/irange.py,sha256=_-UqY2Zp2veRTtrv_aeuWUHg-eDtTkNKAl_GLvSQzBE,1214
|
70
70
|
pypipr/ifunctions/irange.py.bak,sha256=x51vzQ8aAbToJBZgCX32QgAjr7Vm_Zw1MdIwSA3tVsM,2407
|
71
71
|
pypipr/ifunctions/ireplace.py,sha256=RcVMXmbXH_cl4hXpTI5wnuzdPtkatpuZgYsZkfBLAJU,722
|
72
72
|
pypipr/ifunctions/iscandir.py,sha256=U1zvRZrz--5Kge0JooQbY4kQN17bRt-8XR26ZFxUyoA,748
|
@@ -74,7 +74,7 @@ pypipr/ifunctions/isplit.py,sha256=N2BiA_wVnrENYwokSzvo0CAiQWk3g7AnwuWFIUgevNM,3
|
|
74
74
|
pypipr/ifunctions/ivars.py,sha256=CM9HFjF9qLg9Bn385CZXLtTALCt_pxhEOEueTm1uNDM,899
|
75
75
|
pypipr/pypipr.py.bak,sha256=HF-ehQd6BY8hm9fRkQHravLNrJRlI5g_AzbCc3dbikQ,1061
|
76
76
|
pypipr/terminal.py,sha256=4w-2p_Rudm_dNdfG-rkO24heVgKLrve4xVXiRpWxVcc,1800
|
77
|
-
pypipr-1.0.
|
78
|
-
pypipr-1.0.
|
79
|
-
pypipr-1.0.
|
80
|
-
pypipr-1.0.
|
77
|
+
pypipr-1.0.105.dist-info/METADATA,sha256=UHNVQiESjF74I7hTfmajXQ4hrb8t0EqkTVM6jK0arMo,49752
|
78
|
+
pypipr-1.0.105.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
79
|
+
pypipr-1.0.105.dist-info/entry_points.txt,sha256=ikcrTRCn3jaySem1mM9uhYEPDq2PVOs48CyEqLUkY38,47
|
80
|
+
pypipr-1.0.105.dist-info/RECORD,,
|
File without changes
|
File without changes
|