pypipr 1.0.100__py3-none-any.whl → 1.0.102__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.
@@ -16,7 +16,7 @@ def irange(start, stop=None, step=1, index=0, numbers="abcdefghijklmnopqrstuvwxy
16
16
  """
17
17
  if stop is None:
18
18
  stop = start
19
- start = 0
19
+ start = numbers[0] if isinstance(start, str) else 0
20
20
 
21
21
  if isinstance(start, int) and isinstance(stop, int):
22
22
  return range(start, stop, step)
@@ -25,7 +25,21 @@ def irange(start, stop=None, step=1, index=0, numbers="abcdefghijklmnopqrstuvwxy
25
25
  return char_range(start, stop, step, index=index, numbers=numbers)
26
26
 
27
27
  else:
28
- raise Exception("start dan stop tidak diketahui")
28
+ try:
29
+ start = str(start)
30
+ stop = str(stop)
31
+ return irange(start, stop, step, index, numbers)
32
+ except Exception:
33
+ pass
34
+
35
+ try:
36
+ start = int(start)
37
+ stop = int(stop)
38
+ return irange(start, stop, step, index, numbers)
39
+ except Exception:
40
+ pass
41
+
42
+ raise Exception("start dan stop berbeda tipe")
29
43
 
30
44
 
31
45
  def char_range(start, stop, step, numbers, index):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pypipr
3
- Version: 1.0.100
3
+ Version: 1.0.102
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 0x749e6d8040>
123
+ <generator object chunk_array at 0x6fd297c040>
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 15:56:59.444584+07:00
175
- 2024-04-29 08:56:59.446216+00:00
176
- 2024-04-29 01:56:59.451028-07:00
174
+ 2024-04-29 19:34:12.849747+07:00
175
+ 2024-04-29 12:34:12.851274+00:00
176
+ 2024-04-29 05:34:12.855851-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 0x749e66ed40>
243
+ <generator object filter_empty at 0x6fd2912d40>
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 0x749e66f010>
290
- [<function ExampleGetClassMethod.a at 0x749e6e18a0>, <function ExampleGetClassMethod.b at 0x749e6e1760>, <function ExampleGetClassMethod.c at 0x749e6e1940>, <function ExampleGetClassMethod.d at 0x749e6e19e0>]
289
+ <generator object get_class_method at 0x6fd2913010>
290
+ [<function ExampleGetClassMethod.a at 0x6fd29858a0>, <function ExampleGetClassMethod.b at 0x6fd2985760>, <function ExampleGetClassMethod.c at 0x6fd2985940>, <function ExampleGetClassMethod.d at 0x6fd29859e0>]
291
291
  ```
292
292
 
293
293
  ## get_filemtime
@@ -455,7 +455,7 @@ print(password_generator())
455
455
 
456
456
  Output:
457
457
  ```py
458
- B4Yyp4V-
458
+ iK8^J8/n
459
459
  ```
460
460
 
461
461
  ## random_bool
@@ -473,7 +473,7 @@ print(random_bool())
473
473
 
474
474
  Output:
475
475
  ```py
476
- True
476
+ False
477
477
  ```
478
478
 
479
479
  ## restart
@@ -499,7 +499,7 @@ x.cancel()
499
499
 
500
500
  Output:
501
501
  ```py
502
- <Timer(Thread-2, started 500846017776)>
502
+ <Timer(Thread-2, started 480245693680)>
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 0x749e6e81e0>
520
+ <generator object sets_ordered at 0x6fd298c1e0>
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__ : -2716811347520502766
674
+ __hash__ : -4831383548947460185
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 0x74a89cca10>
688
- _hash : -2716811347520502766
687
+ _flavour : <pathlib._PosixFlavour object at 0x6fda048750>
688
+ _hash : -4831383548947460185
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 0x749e6c4ba0>
710
+ iterdir : <generator object Path.iterdir at 0x6fd2968ba0>
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
- asd, weq, qweqw, dfs
1154
+ qweqw, dfs, asd, 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 USD2.338,37 (+0,43) / oz',
1220
+ ['Spot Emas USD2.334,50 (-3,44) / oz',
1221
1221
  'Kurs IDR↑16.222,00 (+14,00) / USD',
1222
- 'Emas IDR1.219.575 (+1.277) / gr'],
1222
+ 'Emas IDR1.217.557 (-742) / 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.338,37 (+0,43)', '16.222,00 (+14,00)', '37.933.038'],
1294
- ['Gram\xa0(gr)', '75,18', '16.222,00', '1.219.575 (+1.277)'],
1295
- ['Kilogram\xa0(kg)', '75.180,34', '16.222,00', '1.219.575.497'],
1296
- ['Update harga emas :29 April 2024, pukul 15:54Update kurs :29 April 2024, '
1293
+ ['Ounce\xa0(oz)', '2.334,50 (-3,44)', '16.222,00 (+14,00)', '37.870.259'],
1294
+ ['Gram\xa0(gr)', '75,06', '16.222,00', '1.217.557 (-742)'],
1295
+ ['Kilogram\xa0(kg)', '75.055,92', '16.222,00', '1.217.557.101'],
1296
+ ['Update harga emas :29 April 2024, pukul 19:34Update kurs :29 April 2024, '
1297
1297
  'pukul 13:10']],
1298
1298
  [['Gram', 'UBS Gold 99.99%'],
1299
1299
  ['Jual', 'Beli'],
@@ -1301,26 +1301,34 @@ Output:
1301
1301
  ['100',
1302
1302
  '126.300.000 (-512.000)',
1303
1303
  '1.263.000 (-5.120)',
1304
- '124.985.000',
1305
- '1.249.850'],
1304
+ '125.185.000 (+200.000)',
1305
+ '1.251.850 (+2.000)'],
1306
1306
  ['50',
1307
1307
  '63.300.000 (-145.000)',
1308
1308
  '1.266.000 (-2.900)',
1309
- '62.545.000',
1310
- '1.250.900'],
1309
+ '62.645.000 (+100.000)',
1310
+ '1.252.900 (+2.000)'],
1311
1311
  ['25',
1312
1312
  '31.700.000 (-62.000)',
1313
1313
  '1.268.000 (-2.480)',
1314
- '31.375.000',
1315
- '1.255.000'],
1314
+ '31.425.000 (+50.000)',
1315
+ '1.257.000 (+2.000)'],
1316
1316
  ['10',
1317
1317
  '12.720.000 (-35.000)',
1318
1318
  '1.272.000 (-3.500)',
1319
- '12.600.000',
1320
- '1.260.000'],
1321
- ['5', '6.385.000 (-20.000)', '1.277.000 (-4.000)', '6.352.000', '1.270.400'],
1322
- ['1', '1.325.000 (-1.000)', '1.325.000 (-1.000)', '1.303.000', '1.303.000'],
1323
- ['', 'Update :29 April 2024, pukul 11:44']],
1319
+ '12.620.000 (+20.000)',
1320
+ '1.262.000 (+2.000)'],
1321
+ ['5',
1322
+ '6.385.000 (-20.000)',
1323
+ '1.277.000 (-4.000)',
1324
+ '6.362.000 (+10.000)',
1325
+ '1.272.400 (+2.000)'],
1326
+ ['1',
1327
+ '1.325.000 (-1.000)',
1328
+ '1.325.000 (-1.000)',
1329
+ '1.305.000 (+2.000)',
1330
+ '1.305.000 (+2.000)'],
1331
+ ['', 'Update :29 April 2024, pukul 16:06']],
1324
1332
  [['Konversi Satuan'],
1325
1333
  ['Satuan', 'Ounce (oz)', 'Gram (gr)', 'Kilogram (kg)'],
1326
1334
  ['Ounce\xa0(oz)', '1', '31,1034767696', '0,0311034768'],
@@ -1331,36 +1339,36 @@ Output:
1331
1339
  ['Unit', 'USD', 'IDR'],
1332
1340
  ['Angka', '+/-', 'Angka', '+/-'],
1333
1341
  ['Hari Ini', 'Kurs', '', '', '16.208', '+14+0,09%'],
1334
- ['oz', '2.337,94', '+0,43+0,02%', '37.893.332', '+39.707+0,10%'],
1335
- ['gr', '75,17', '+0,01+0,02%', '1.218.299', '+1.277+0,10%'],
1342
+ ['oz', '2.337,94', '-3,44-0,15%', '37.893.332', '-23.073-0,06%'],
1343
+ ['gr', '75,17', '-0,11-0,15%', '1.218.299', '-742-0,06%'],
1336
1344
  ['30 Hari', 'Kurs', '', '', '15.853', '+369+2,33%'],
1337
- ['oz', '2.232,75', '+105,62+4,73%', '35.395.786', '+2.537.252+7,17%'],
1338
- ['gr', '71,78', '+3,40+4,73%', '1.138.001', '+81.575+7,17%'],
1345
+ ['oz', '2.232,75', '+101,75+4,56%', '35.395.786', '+2.474.473+6,99%'],
1346
+ ['gr', '71,78', '+3,27+4,56%', '1.138.001', '+79.556+6,99%'],
1339
1347
  ['2 Bulan', 'Kurs', '', '', '15.673', '+549+3,50%'],
1340
- ['oz', '2.045,83', '+292,54+14,30%', '32.064.294', '+5.868.745+18,30%'],
1341
- ['gr', '65,77', '+9,41+14,30', '1.030.891', '+188.685+18,30%'],
1348
+ ['oz', '2.045,83', '+288,67+14,11%', '32.064.294', '+5.805.965+18,11%'],
1349
+ ['gr', '65,77', '+9,28+14,11', '1.030.891', '+186.666+18,11%'],
1342
1350
  ['6 Bulan', 'Kurs', '', '', '15.897', '+325+2,04%'],
1343
- ['oz', '1.977,80', '+360,57+18,23%', '31.441.087', '+6.491.952+20,65%'],
1344
- ['gr', '63,59', '+11,59+18,23%', '1.010.854', '+208.721+20,65%'],
1351
+ ['oz', '1.977,80', '+356,70+18,04%', '31.441.087', '+6.429.172+20,45%'],
1352
+ ['gr', '63,59', '+11,47+18,04%', '1.010.854', '+206.703+20,45%'],
1345
1353
  ['1 Tahun', 'Kurs', '', '', '15.731', '+491+3,12%'],
1346
- ['oz', '1.823,86', '+514,51+28,21%', '28.691.142', '+9.241.896+32,21%'],
1347
- ['gr', '58,64', '+16,54+28,21%', '922.442', '+297.134+32,21%'],
1354
+ ['oz', '1.823,86', '+510,64+28,00%', '28.691.142', '+9.179.117+31,99%'],
1355
+ ['gr', '58,64', '+16,42+28,00%', '922.442', '+295.115+31,99%'],
1348
1356
  ['2 Tahun', 'Kurs', '', '', '14.418', '+1.804+12,51%'],
1349
- ['oz', '1.896,95', '+441,42+23,27%', '27.350.225', '+10.582.813+38,69%'],
1350
- ['gr', '60,99', '+14,19+23,27%', '879.330', '+340.245+38,69%'],
1357
+ ['oz', '1.896,95', '+437,55+23,07%', '27.350.225', '+10.520.034+38,46%'],
1358
+ ['gr', '60,99', '+14,07+23,07%', '879.330', '+338.227+38,46%'],
1351
1359
  ['3 Tahun', 'Kurs', '', '', '14.468', '+1.754+12,12%'],
1352
- ['oz', '1.767,08', '+571,29+32,33%', '25.566.113', '+12.366.925+48,37%'],
1353
- ['gr', '56,81', '+18,37+32,33%', '821.970', '+397.606+48,37%'],
1360
+ ['oz', '1.767,08', '+567,42+32,11%', '25.566.113', '+12.304.146+48,13%'],
1361
+ ['gr', '56,81', '+18,24+32,11%', '821.970', '+395.587+48,13%'],
1354
1362
  ['5 Tahun', 'Kurs', '', '', '14.215', '+2.007+14,12%'],
1355
- ['oz', '1.280,61', '+1.057,76+82,60%', '18.203.871', '+19.729.167+108,38%'],
1356
- ['gr', '41,17', '+34,01+82,60%', '585.268', '+634.307+108,38%']])
1363
+ ['oz', '1.280,61', '+1.053,89+82,30%', '18.203.871', '+19.666.388+108,03%'],
1364
+ ['gr', '41,17', '+33,88+82,30%', '585.268', '+632.289+108,03%']])
1357
1365
  (['Home', 'Emas 1 Gram', 'History', 'Trend', 'Perak 1 Gram', 'Pluang'],
1358
1366
  [[''],
1359
1367
  ['Emas 24 KaratHarga Emas 1 Gram', ''],
1360
- ['USD', '75,18↑', '+0,01+0,01%'],
1361
- ['KURS', '16.258,10↑', '+16,80+0,10%'],
1362
- ['IDR', '1.222.273,83↑', '+1.471,89+0,12%'],
1363
- ['Senin, 29 April 2024 15:55']],
1368
+ ['USD', '75,06↓', '-0,11-0,15%'],
1369
+ ['KURS', '16.220,30↓', '-21,00-0,13%'],
1370
+ ['IDR', '1.217.429,51↓', '-3.372,43-0,28%'],
1371
+ ['Senin, 29 April 2024 19:34']],
1364
1372
  [[''],
1365
1373
  ['Emas 1 Gram (IDR)Emas 1 Gram (USD)Kurs USD-IDR',
1366
1374
  'Hari Ini',
@@ -1371,19 +1379,19 @@ Output:
1371
1379
  '']],
1372
1380
  [['Pergerakkan Harga Emas 1 Gram'],
1373
1381
  ['', 'Penutupan Kemarin', 'Pergerakkan Hari Ini', 'Rata-rata'],
1374
- ['USD', '75,17', '75,17 - 75,18', '75,18'],
1375
- ['KURS', '16.241,30', '16.241,30 - 16.258,10', '16.249,70'],
1376
- ['IDR', '1.220.801,94', '1.220.801,94 - 1.222.273,83', '1.221.537,89'],
1382
+ ['USD', '75,17', '75,06 - 75,17', '75,12'],
1383
+ ['KURS', '16.241,30', '16.220,30 - 16.241,30', '16.230,80'],
1384
+ ['IDR', '1.220.801,94', '1.217.429,51 - 1.220.801,94', '1.219.115,73'],
1377
1385
  [''],
1378
1386
  ['', 'Awal Tahun', 'Pergerakkan YTD', '+/- YTD'],
1379
- ['USD', '66,32', '64,07 - 77,14', '+8,86 (13,36%)'],
1380
- ['KURS', '15.390,10', '15.390,00 - 16.307,80', '+868,00 (5,64%)'],
1381
- ['IDR', '1.020.729,53', '997.660,12 - 1.256.829,06', '+201.544,30 (19,75%)'],
1387
+ ['USD', '66,32', '64,07 - 77,14', '+8,74 (13,18%)'],
1388
+ ['KURS', '15.390,10', '15.390,00 - 16.307,80', '+830,20 (5,39%)'],
1389
+ ['IDR', '1.020.729,53', '997.660,12 - 1.256.829,06', '+196.699,98 (19,27%)'],
1382
1390
  [''],
1383
1391
  ['', 'Tahun Lalu / 52 Minggu', 'Pergerakkan 52 Minggu', '+/- 52 Minggu'],
1384
- ['USD', '64,04', '58,43 - 77,14', '+11,14 (17,40%)'],
1385
- ['KURS', '14.671,35', '14.669,40 - 16.307,80', '+1.586,75 (10,82%)'],
1386
- ['IDR', '939.568,98', '912.925,68 - 1.256.829,06', '+282.704,85 (30,09%)']])
1392
+ ['USD', '64,04', '58,43 - 77,14', '+11,02 (17,21%)'],
1393
+ ['KURS', '14.671,35', '14.669,40 - 16.307,80', '+1.548,95 (10,56%)'],
1394
+ ['IDR', '939.568,98', '912.925,68 - 1.256.829,06', '+277.860,53 (29,57%)']])
1387
1395
  ```
1388
1396
 
1389
1397
  ## iopen
@@ -1425,7 +1433,7 @@ Output:
1425
1433
  ```py
1426
1434
  8
1427
1435
  ['mana', 'aja']
1428
- [<Element a at 0x749e6cdea0>, <Element a at 0x749e716cb0>, <Element a at 0x749e716d50>, <Element a at 0x749e716da0>, <Element a at 0x749e716df0>, <Element a at 0x749e716e40>, <Element a at 0x749e716e90>, <Element a at 0x749e716ee0>, <Element a at 0x749e716f30>, <Element a at 0x749e716f80>, <Element a at 0x749e716fd0>, <Element a at 0x749e717020>, <Element a at 0x749e717070>, <Element a at 0x749e7170c0>, <Element a at 0x749e717110>, <Element a at 0x749e717160>, <Element a at 0x749e7171b0>, <Element a at 0x749e717200>, <Element a at 0x749e717250>, <Element a at 0x749e7172a0>]
1436
+ [<Element a at 0x6fd29733e0>, <Element a at 0x6fd29bad00>, <Element a at 0x6fd29bada0>, <Element a at 0x6fd29badf0>, <Element a at 0x6fd29bae40>, <Element a at 0x6fd29bae90>, <Element a at 0x6fd29baee0>, <Element a at 0x6fd29baf30>, <Element a at 0x6fd29baf80>, <Element a at 0x6fd29bafd0>, <Element a at 0x6fd29bb020>, <Element a at 0x6fd29bb070>, <Element a at 0x6fd29bb0c0>, <Element a at 0x6fd29bb110>, <Element a at 0x6fd29bb160>, <Element a at 0x6fd29bb1b0>, <Element a at 0x6fd29bb200>, <Element a at 0x6fd29bb250>, <Element a at 0x6fd29bb2a0>, <Element a at 0x6fd29bb2f0>]
1429
1437
  False
1430
1438
  ```
1431
1439
 
@@ -1501,7 +1509,7 @@ print(list(iscandir("./", recursive=False, scan_file=False)))
1501
1509
 
1502
1510
  Output:
1503
1511
  ```py
1504
- <generator object iscandir at 0x749e6d8540>
1512
+ <generator object iscandir at 0x6fd297c540>
1505
1513
  [PosixPath('.git'), PosixPath('.vscode'), PosixPath('pypipr'), PosixPath('__pycache__'), PosixPath('dist')]
1506
1514
  ```
1507
1515
 
@@ -1539,7 +1547,7 @@ Output:
1539
1547
  'idjango': <module 'pypipr.idjango' from '/data/data/com.termux/files/home/pypipr/pypipr/idjango/__init__.py'>,
1540
1548
  'iengineering': <module 'pypipr.iengineering' from '/data/data/com.termux/files/home/pypipr/pypipr/iengineering/__init__.py'>,
1541
1549
  'ifunctions': <module 'pypipr.ifunctions' from '/data/data/com.termux/files/home/pypipr/pypipr/ifunctions/__init__.py'>,
1542
- 'iflow': <module 'pypipr.iflow' (<_frozen_importlib_external.NamespaceLoader object at 0x74a8a071d0>)>,
1550
+ 'iflow': <module 'pypipr.iflow' (<_frozen_importlib_external.NamespaceLoader object at 0x6fd4ca8890>)>,
1543
1551
  'asyncio': <module 'asyncio' from '/data/data/com.termux/files/usr/lib/python3.11/asyncio/__init__.py'>,
1544
1552
  'colorama': <module 'colorama' from '/data/data/com.termux/files/usr/lib/python3.11/site-packages/colorama/__init__.py'>,
1545
1553
  'csv': <module 'csv' from '/data/data/com.termux/files/usr/lib/python3.11/csv.py'>,
@@ -1577,67 +1585,67 @@ Output:
1577
1585
  'PintUregQuantity': <class 'pint.Quantity'>},
1578
1586
  'variable': {'LINUX': True,
1579
1587
  'WINDOWS': False,
1580
- 'PintUreg': <pint.registry.UnitRegistry object at 0x74a49a8750>},
1581
- 'function': {'avg': <function avg at 0x74aa3b6d40>,
1582
- 'basename': <function basename at 0x74aa3868e0>,
1583
- 'chr_to_int': <function chr_to_int at 0x74a8955080>,
1584
- 'chunk_array': <function chunk_array at 0x74a89551c0>,
1585
- 'create_folder': <function create_folder at 0x74a89553a0>,
1586
- 'datetime_from_string': <function datetime_from_string at 0x74a8955580>,
1587
- 'datetime_now': <function datetime_now at 0x74a89fd620>,
1588
- 'dict_first': <function dict_first at 0x74a89fd580>,
1589
- 'dirname': <function dirname at 0x74a89fd4e0>,
1590
- 'exit_if_empty': <function exit_if_empty at 0x74a89fd3a0>,
1591
- 'filter_empty': <function filter_empty at 0x74a89fd1c0>,
1592
- 'get_by_index': <function get_by_index at 0x74a89fce00>,
1593
- 'get_class_method': <function get_class_method at 0x74a89fccc0>,
1594
- 'get_filemtime': <function get_filemtime at 0x74a89fcb80>,
1595
- 'get_filesize': <function get_filesize at 0x74a89fc9a0>,
1596
- 'int_to_chr': <function int_to_chr at 0x74a89fc900>,
1597
- 'is_empty': <function is_empty at 0x74a89fd260>,
1598
- 'is_iterable': <function is_iterable at 0x74a89fcfe0>,
1599
- 'is_valid_url': <function is_valid_url at 0x74a89fc7c0>,
1600
- 'password_generator': <function password_generator at 0x74a89fc680>,
1601
- 'random_bool': <function random_bool at 0x74a89fc4a0>,
1602
- 'restart': <function restart at 0x74a89ff7e0>,
1603
- 'set_timeout': <function set_timeout at 0x74a89ff920>,
1604
- 'sets_ordered': <function sets_ordered at 0x74a89ffa60>,
1605
- 'str_cmp': <function str_cmp at 0x74a89ffb00>,
1606
- 'to_str': <function to_str at 0x74a89fcf40>,
1607
- 'choices': <function choices at 0x74a89ffba0>,
1608
- 'console_run': <function console_run at 0x74a89ffe20>,
1609
- 'input_char': <function input_char at 0x74a89fff60>,
1610
- 'log': <function log at 0x74a8a20180>,
1611
- 'print_colorize': <function print_colorize at 0x74a8a20220>,
1612
- 'print_dir': <function print_dir at 0x74a8a20360>,
1613
- 'print_log': <function print_log at 0x74a8a20040>,
1614
- 'print_to_last_line': <function print_to_last_line at 0x74a89ffd80>,
1615
- 'text_colorize': <function text_colorize at 0x74a89ffec0>,
1616
- 'batch_calculate': <function batch_calculate at 0x74a3b896c0>,
1617
- 'batchmaker': <function batchmaker at 0x74a3b8a160>,
1618
- 'calculate': <function calculate at 0x74a3b8a480>,
1619
- 'auto_reload': <function auto_reload at 0x74a3b8a700>,
1620
- 'github_pull': <function github_pull at 0x74a3b8a520>,
1621
- 'github_push': <function github_push at 0x74a38b20c0>,
1622
- 'github_user': <function github_user at 0x74a38b2160>,
1623
- 'pip_freeze_without_version': <function pip_freeze_without_version at 0x74a38b22a0>,
1624
- 'poetry_publish': <function poetry_publish at 0x74a38b2340>,
1625
- 'poetry_update_version': <function poetry_update_version at 0x74a38d6c00>,
1626
- 'iargv': <function iargv at 0x74a1e8c360>,
1627
- 'idumps': <function idumps at 0x74a1e8c4a0>,
1628
- 'idumps_html': <function idumps_html at 0x74a1ef4ea0>,
1629
- 'ienv': <function ienv at 0x74a1e8c5e0>,
1630
- 'iexec': <function iexec at 0x74a1ef5120>,
1631
- 'ijoin': <function ijoin at 0x74a38b23e0>,
1632
- 'iloads': <function iloads at 0x74a1ef51c0>,
1633
- 'iloads_html': <function iloads_html at 0x74a1ef5440>,
1634
- 'iopen': <function iopen at 0x74a38b2480>,
1635
- 'iprint': <function iprint at 0x74a1ef5300>,
1636
- 'irange': <function irange at 0x74a3b8a660>,
1637
- 'ireplace': <function ireplace at 0x74a1ef54e0>,
1638
- 'iscandir': <function iscandir at 0x74a1ef7100>,
1639
- 'isplit': <function isplit at 0x74a1ef71a0>,
1640
- 'ivars': <function ivars at 0x74a1ef7240>}}
1588
+ 'PintUreg': <pint.registry.UnitRegistry object at 0x6fda093710>},
1589
+ 'function': {'avg': <function avg at 0x6fde9b6d40>,
1590
+ 'basename': <function basename at 0x6fde9868e0>,
1591
+ 'chr_to_int': <function chr_to_int at 0x6fd9fcd080>,
1592
+ 'chunk_array': <function chunk_array at 0x6fd9fcd1c0>,
1593
+ 'create_folder': <function create_folder at 0x6fd9fcd3a0>,
1594
+ 'datetime_from_string': <function datetime_from_string at 0x6fd9fcd580>,
1595
+ 'datetime_now': <function datetime_now at 0x6fda075620>,
1596
+ 'dict_first': <function dict_first at 0x6fda075580>,
1597
+ 'dirname': <function dirname at 0x6fda0754e0>,
1598
+ 'exit_if_empty': <function exit_if_empty at 0x6fda0753a0>,
1599
+ 'filter_empty': <function filter_empty at 0x6fda0751c0>,
1600
+ 'get_by_index': <function get_by_index at 0x6fda074e00>,
1601
+ 'get_class_method': <function get_class_method at 0x6fda074cc0>,
1602
+ 'get_filemtime': <function get_filemtime at 0x6fda074b80>,
1603
+ 'get_filesize': <function get_filesize at 0x6fda0749a0>,
1604
+ 'int_to_chr': <function int_to_chr at 0x6fda074900>,
1605
+ 'is_empty': <function is_empty at 0x6fda075260>,
1606
+ 'is_iterable': <function is_iterable at 0x6fda074fe0>,
1607
+ 'is_valid_url': <function is_valid_url at 0x6fda0747c0>,
1608
+ 'password_generator': <function password_generator at 0x6fda074680>,
1609
+ 'random_bool': <function random_bool at 0x6fda0744a0>,
1610
+ 'restart': <function restart at 0x6fda0777e0>,
1611
+ 'set_timeout': <function set_timeout at 0x6fda077920>,
1612
+ 'sets_ordered': <function sets_ordered at 0x6fda077a60>,
1613
+ 'str_cmp': <function str_cmp at 0x6fda077b00>,
1614
+ 'to_str': <function to_str at 0x6fda074f40>,
1615
+ 'choices': <function choices at 0x6fda077ba0>,
1616
+ 'console_run': <function console_run at 0x6fda077e20>,
1617
+ 'input_char': <function input_char at 0x6fda077f60>,
1618
+ 'log': <function log at 0x6fda098180>,
1619
+ 'print_colorize': <function print_colorize at 0x6fda098220>,
1620
+ 'print_dir': <function print_dir at 0x6fda098360>,
1621
+ 'print_log': <function print_log at 0x6fda098040>,
1622
+ 'print_to_last_line': <function print_to_last_line at 0x6fda077d80>,
1623
+ 'text_colorize': <function text_colorize at 0x6fda077ec0>,
1624
+ 'batch_calculate': <function batch_calculate at 0x6fd485d6c0>,
1625
+ 'batchmaker': <function batchmaker at 0x6fd485e160>,
1626
+ 'calculate': <function calculate at 0x6fd485e480>,
1627
+ 'auto_reload': <function auto_reload at 0x6fd485e700>,
1628
+ 'github_pull': <function github_pull at 0x6fd485e520>,
1629
+ 'github_push': <function github_push at 0x6fd45860c0>,
1630
+ 'github_user': <function github_user at 0x6fd4586160>,
1631
+ 'pip_freeze_without_version': <function pip_freeze_without_version at 0x6fd45862a0>,
1632
+ 'poetry_publish': <function poetry_publish at 0x6fd4586340>,
1633
+ 'poetry_update_version': <function poetry_update_version at 0x6fd45aac00>,
1634
+ 'iargv': <function iargv at 0x6fd2be4360>,
1635
+ 'idumps': <function idumps at 0x6fd2be44a0>,
1636
+ 'idumps_html': <function idumps_html at 0x6fd2c4cea0>,
1637
+ 'ienv': <function ienv at 0x6fd2be45e0>,
1638
+ 'iexec': <function iexec at 0x6fd2c4d120>,
1639
+ 'ijoin': <function ijoin at 0x6fd45863e0>,
1640
+ 'iloads': <function iloads at 0x6fd2c4d1c0>,
1641
+ 'iloads_html': <function iloads_html at 0x6fd2c4d440>,
1642
+ 'iopen': <function iopen at 0x6fd4586480>,
1643
+ 'iprint': <function iprint at 0x6fd2c4d300>,
1644
+ 'irange': <function irange at 0x6fd485e660>,
1645
+ 'ireplace': <function ireplace at 0x6fd2c4d4e0>,
1646
+ 'iscandir': <function iscandir at 0x6fd2c4f100>,
1647
+ 'isplit': <function isplit at 0x6fd2c4f1a0>,
1648
+ 'ivars': <function ivars at 0x6fd2c4f240>}}
1641
1649
  ```
1642
1650
 
1643
1651
  # CLASS
@@ -1677,7 +1685,7 @@ print(ExampleComparePerformance().compare_performance())
1677
1685
 
1678
1686
  Output:
1679
1687
  ```py
1680
- {'a': <generator object ExampleComparePerformance.a.<locals>.<genexpr> at 0x749e6ec2b0>,
1688
+ {'a': <generator object ExampleComparePerformance.a.<locals>.<genexpr> at 0x6fd29902b0>,
1681
1689
  'b': (0, 1, 2, 3, 4, 5, 6, 7, 8, 9),
1682
1690
  'c': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
1683
1691
  'd': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]}
@@ -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=DP9iJ5KBcYJDN2HKvH9EU17IA9uC22KUPE6Tr1Mg14w,1092
69
+ pypipr/ifunctions/irange.py,sha256=U5jNVx3s-YR2xYSi44mDXeQi0rVuAtBFFO7jnleU8MU,1487
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.100.dist-info/METADATA,sha256=Hag4Nlnqk7gi_fzuTj74QCdWblmLaz5A8B0yclbn8tI,49615
78
- pypipr-1.0.100.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
79
- pypipr-1.0.100.dist-info/entry_points.txt,sha256=ikcrTRCn3jaySem1mM9uhYEPDq2PVOs48CyEqLUkY38,47
80
- pypipr-1.0.100.dist-info/RECORD,,
77
+ pypipr-1.0.102.dist-info/METADATA,sha256=IXjsXyHCBtaTcHrUCjBPjouLegttosjaWnc8nunCl_o,49749
78
+ pypipr-1.0.102.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
79
+ pypipr-1.0.102.dist-info/entry_points.txt,sha256=ikcrTRCn3jaySem1mM9uhYEPDq2PVOs48CyEqLUkY38,47
80
+ pypipr-1.0.102.dist-info/RECORD,,