pypipr 1.0.158__py3-none-any.whl → 1.0.159__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.
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pypipr
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.159
|
4
4
|
Summary: The Python Package Index Project
|
5
5
|
Author: ufiapjj
|
6
6
|
Author-email: ufiapjj@gmail.com
|
@@ -248,8 +248,8 @@ iprint(irange("z", "a", 4))
|
|
248
248
|
|
249
249
|
Output:
|
250
250
|
```py
|
251
|
-
<generator object int_range at
|
252
|
-
<generator object int_range at
|
251
|
+
<generator object int_range at 0x6f41bb6940>
|
252
|
+
<generator object int_range at 0x6f41bb6a40>
|
253
253
|
[13, 12, 11, 10, 9, 8, 7, 6]
|
254
254
|
[2, 5, 8]
|
255
255
|
[]
|
@@ -281,7 +281,7 @@ print(list(batchmaker(s)))
|
|
281
281
|
|
282
282
|
Output:
|
283
283
|
```py
|
284
|
-
<generator object batchmaker at
|
284
|
+
<generator object batchmaker at 0x6f41bc71c0>
|
285
285
|
['Urutan 1 dan 10 dan j dan Z saja.', 'Urutan 1 dan 10 dan j dan K saja.', 'Urutan 1 dan 10 dan j dan saja.']
|
286
286
|
```
|
287
287
|
|
@@ -335,7 +335,7 @@ print(list(batch_calculate("{1 10} m ** {1 3}")))
|
|
335
335
|
|
336
336
|
Output:
|
337
337
|
```py
|
338
|
-
<generator object batch_calculate at
|
338
|
+
<generator object batch_calculate at 0x6f41bd7300>
|
339
339
|
[('1 m ** 1', <Quantity(1, 'meter')>), ('1 m ** 2', <Quantity(1, 'meter ** 2')>), ('1 m ** 3', <Quantity(1, 'meter ** 3')>)]
|
340
340
|
```
|
341
341
|
|
@@ -441,7 +441,7 @@ print(list(chunk_array(arr, 5)))
|
|
441
441
|
|
442
442
|
Output:
|
443
443
|
```py
|
444
|
-
<generator object chunk_array at
|
444
|
+
<generator object chunk_array at 0x6f41bc2e30>
|
445
445
|
[[2, 3, 12, 3, 3], [42, 42, 1, 43, 2], [42, 41, 4, 24, 32], [42, 3, 12, 32, 42], [42]]
|
446
446
|
```
|
447
447
|
|
@@ -492,9 +492,9 @@ print(datetime_now("Etc/GMT+7"))
|
|
492
492
|
|
493
493
|
Output:
|
494
494
|
```py
|
495
|
-
2025-04-03 18:
|
496
|
-
2025-04-03 11:
|
497
|
-
2025-04-03 04:
|
495
|
+
2025-04-03 18:55:20.099037+07:00
|
496
|
+
2025-04-03 11:55:20.100713+00:00
|
497
|
+
2025-04-03 04:55:20.102452-07:00
|
498
498
|
```
|
499
499
|
|
500
500
|
## dict_first
|
@@ -608,7 +608,7 @@ iprint(filter_empty(var))
|
|
608
608
|
|
609
609
|
Output:
|
610
610
|
```py
|
611
|
-
<generator object filter_empty at
|
611
|
+
<generator object filter_empty at 0x6f41bc3010>
|
612
612
|
[1, '0', True, {}, ['eee']]
|
613
613
|
```
|
614
614
|
|
@@ -655,8 +655,8 @@ print(list(get_class_method(ExampleGetClassMethod)))
|
|
655
655
|
|
656
656
|
Output:
|
657
657
|
```py
|
658
|
-
<generator object get_class_method at
|
659
|
-
[<function ExampleGetClassMethod.a at
|
658
|
+
<generator object get_class_method at 0x6f41bd7e60>
|
659
|
+
[<function ExampleGetClassMethod.a at 0x6f41a32980>, <function ExampleGetClassMethod.b at 0x6f41a32a20>, <function ExampleGetClassMethod.c at 0x6f41a328e0>, <function ExampleGetClassMethod.d at 0x6f41a32ac0>]
|
660
660
|
```
|
661
661
|
|
662
662
|
## get_filesize
|
@@ -1080,7 +1080,7 @@ Output:
|
|
1080
1080
|
|
1081
1081
|
## ienumerate
|
1082
1082
|
|
1083
|
-
`ienumerate(iterator, start=0, key=<function int_to_int at
|
1083
|
+
`ienumerate(iterator, start=0, key=<function int_to_int at 0x6f484be480>)`
|
1084
1084
|
|
1085
1085
|
meningkatkan fungsi enumerate() pada python
|
1086
1086
|
untuk key menggunakan huruf dan basis angka lainnya.
|
@@ -1093,7 +1093,7 @@ iprint(ienumerate(it, key=int_to_chr))
|
|
1093
1093
|
|
1094
1094
|
Output:
|
1095
1095
|
```py
|
1096
|
-
<generator object ienumerate at
|
1096
|
+
<generator object ienumerate at 0x6f41bc3010>
|
1097
1097
|
[('a', 'ini'), ('b', 'contoh'), ('c', 'enumerator')]
|
1098
1098
|
```
|
1099
1099
|
|
@@ -1206,9 +1206,9 @@ Output:
|
|
1206
1206
|
```py
|
1207
1207
|
(['Home', 'Emas 1 Gram', 'History', 'Trend', 'Perak 1 Gram', 'Pluang'],
|
1208
1208
|
[['Harga Emas Hari Ini - Kamis, 03 April 2025'],
|
1209
|
-
['Spot Emas USD↓3.
|
1209
|
+
['Spot Emas USD↓3.095,39 (-35,07) / oz',
|
1210
1210
|
'Kurs IDR1,00 / USD',
|
1211
|
-
'Emas IDR↓
|
1211
|
+
'Emas IDR↓100 (-1) / gr'],
|
1212
1212
|
['LM Antam (Jual)↓1.513.000 (-30.000) / gr',
|
1213
1213
|
'LM Antam (Beli)↓1.366.000 (-30.000) / gr']],
|
1214
1214
|
[['Harga Emas Hari Ini'],
|
@@ -1231,10 +1231,10 @@ Output:
|
|
1231
1231
|
'Update harga LM Pegadaian :31 Desember 1969']],
|
1232
1232
|
[['Spot Harga Emas Hari Ini (Market Open)'],
|
1233
1233
|
['Satuan', 'USD', 'Kurs\xa0Dollar', 'IDR'],
|
1234
|
-
['Ounce\xa0(oz)', '3.
|
1235
|
-
['Gram\xa0(gr)', '99,
|
1236
|
-
['Kilogram\xa0(kg)', '99.
|
1237
|
-
['Update harga emas :03 April 2025, pukul 18:
|
1234
|
+
['Ounce\xa0(oz)', '3.095,39 (-35,07)', '1,00', '3.095'],
|
1235
|
+
['Gram\xa0(gr)', '99,52', '1,00', '100 (-1)'],
|
1236
|
+
['Kilogram\xa0(kg)', '99.519,10', '1,00', '99.519'],
|
1237
|
+
['Update harga emas :03 April 2025, pukul 18:55Update kurs :14 Maret 2025, '
|
1238
1238
|
'pukul 10:13']],
|
1239
1239
|
[['Gram', 'UBS Gold 99.99%'],
|
1240
1240
|
['Jual', 'Beli'],
|
@@ -1272,36 +1272,36 @@ Output:
|
|
1272
1272
|
['Unit', 'USD', 'IDR'],
|
1273
1273
|
['Angka', '+/-', 'Angka', '+/-'],
|
1274
1274
|
['Hari Ini', 'Kurs', '', '', '1', '%'],
|
1275
|
-
['oz', '3.130,46', '-
|
1276
|
-
['gr', '100,65', '-1,
|
1275
|
+
['oz', '3.130,46', '-35,07-1,12%', '3.130', '-35-1,12%'],
|
1276
|
+
['gr', '100,65', '-1,13-1,12%', '101', '-1-1,12%'],
|
1277
1277
|
['30 Hari', 'Kurs', '', '', '16.506', '-16.505-99,99%'],
|
1278
|
-
['oz', '2.915,26', '+
|
1279
|
-
['gr', '93,73', '+5,
|
1278
|
+
['oz', '2.915,26', '+180,13+6,18%', '48.119.282', '-48.116.186-99,99%'],
|
1279
|
+
['gr', '93,73', '+5,79+6,18%', '1.547.071', '-1.546.971-99,99%'],
|
1280
1280
|
['2 Bulan', 'Kurs', '', '', '16.259', '-16.258-99,99%'],
|
1281
|
-
['oz', '2.798,49', '+
|
1282
|
-
['gr', '89,97', '+9,
|
1281
|
+
['oz', '2.798,49', '+296,90+10,61%', '45.500.649', '-45.497.554-99,99%'],
|
1282
|
+
['gr', '89,97', '+9,55+10,61', '1.462.880', '-1.462.780-99,99%'],
|
1283
1283
|
['6 Bulan', 'Kurs', '', '', '15.394', '-15.393-99,99%'],
|
1284
|
-
['oz', '2.653,25', '+
|
1285
|
-
['gr', '85,30', '+14,
|
1284
|
+
['oz', '2.653,25', '+442,14+16,66%', '40.844.131', '-40.841.035-99,99%'],
|
1285
|
+
['gr', '85,30', '+14,22+16,66%', '1.313.169', '-1.313.070-99,99%'],
|
1286
1286
|
['1 Tahun', 'Kurs', '', '', '15.934', '-15.933-99,99%'],
|
1287
|
-
['oz', '2.292,15', '+
|
1288
|
-
['gr', '73,69', '+25,
|
1287
|
+
['oz', '2.292,15', '+803,24+35,04%', '36.523.118', '-36.520.023-99,99%'],
|
1288
|
+
['gr', '73,69', '+25,82+35,04%', '1.174.246', '-1.174.146-99,99%'],
|
1289
1289
|
['2 Tahun', 'Kurs', '', '', '15.731', '-15.730-99,99%'],
|
1290
|
-
['oz', '1.823,86', '+1.
|
1291
|
-
['gr', '58,64', '+40,
|
1290
|
+
['oz', '1.823,86', '+1.271,53+69,72%', '28.691.142', '-28.688.046-99,99%'],
|
1291
|
+
['gr', '58,64', '+40,88+69,72%', '922.442', '-922.342-99,99%'],
|
1292
1292
|
['3 Tahun', 'Kurs', '', '', '14.364', '-14.363-99,99%'],
|
1293
|
-
['oz', '1.931,33', '+1.
|
1294
|
-
['gr', '62,09', '+37,
|
1293
|
+
['oz', '1.931,33', '+1.164,06+60,27%', '27.741.624', '-27.738.529-99,99%'],
|
1294
|
+
['gr', '62,09', '+37,43+60,27%', '891.914', '-891.814-99,99%'],
|
1295
1295
|
['5 Tahun', 'Kurs', '', '', '16.464', '-16.463-99,99%'],
|
1296
|
-
['oz', '1.618,13', '+1.
|
1297
|
-
['gr', '52,02', '+47,
|
1296
|
+
['oz', '1.618,13', '+1.477,26+91,29%', '26.640.892', '-26.637.797-99,99%'],
|
1297
|
+
['gr', '52,02', '+47,50+91,29%', '856.525', '-856.425-99,99%']])
|
1298
1298
|
(['Home', 'Emas 1 Gram', 'History', 'Trend', 'Perak 1 Gram', 'Pluang'],
|
1299
1299
|
[[''],
|
1300
1300
|
['Emas 24 KaratHarga Emas 1 Gram', ''],
|
1301
|
-
['USD', '99,
|
1301
|
+
['USD', '99,52↓', '-1,13-1,12%'],
|
1302
1302
|
['KURS', '16.355,25↓', '%'],
|
1303
|
-
['IDR', '1.
|
1304
|
-
['Kamis, 03 April 2025 18:
|
1303
|
+
['IDR', '1.627.659,75↓', '-18.440,98-1,12%'],
|
1304
|
+
['Kamis, 03 April 2025 18:55']],
|
1305
1305
|
[[''],
|
1306
1306
|
['Emas 1 Gram (IDR)Emas 1 Gram (USD)Kurs USD-IDR',
|
1307
1307
|
'Hari Ini',
|
@@ -1312,25 +1312,25 @@ Output:
|
|
1312
1312
|
'']],
|
1313
1313
|
[['Pergerakkan Harga Emas 1 Gram'],
|
1314
1314
|
['', 'Penutupan Kemarin', 'Pergerakkan Hari Ini', 'Rata-rata'],
|
1315
|
-
['USD', '100,65', '99,
|
1315
|
+
['USD', '100,65', '99,52 - 100,65', '100,09'],
|
1316
1316
|
['KURS', '16.355,25', '16.355,25 - 16.355,25', '16.355,25'],
|
1317
|
-
['IDR', '1.646.100,73', '1.
|
1317
|
+
['IDR', '1.646.100,73', '1.627.659,75 - 1.646.100,73', '1.636.880,24'],
|
1318
1318
|
[''],
|
1319
1319
|
['', 'Awal Tahun', 'Pergerakkan YTD', '+/- YTD'],
|
1320
|
-
['USD', '84,42', '84,38 - 100,65', '+
|
1320
|
+
['USD', '84,42', '84,38 - 100,65', '+15,10 (17,89%)'],
|
1321
1321
|
['KURS', '16.220,76', '16.156,70 - 16.387,00', '+134,49 (0,83%)'],
|
1322
1322
|
['IDR',
|
1323
1323
|
'1.369.306,75',
|
1324
1324
|
'1.368.695,74 - 1.646.100,73',
|
1325
|
-
'+
|
1325
|
+
'+258.353,00 (18,87%)'],
|
1326
1326
|
[''],
|
1327
1327
|
['', 'Tahun Lalu / 52 Minggu', 'Pergerakkan 52 Minggu', '+/- 52 Minggu'],
|
1328
|
-
['USD', '72,67', '73,56 - 100,65', '+26,
|
1328
|
+
['USD', '72,67', '73,56 - 100,65', '+26,85 (36,95%)'],
|
1329
1329
|
['KURS', '15.946,00', '15.100,00 - 16.509,65', '+409,25 (2,57%)'],
|
1330
1330
|
['IDR',
|
1331
1331
|
'1.158.816,50',
|
1332
1332
|
'1.167.120,22 - 1.646.100,73',
|
1333
|
-
'+
|
1333
|
+
'+468.843,25 (40,46%)']])
|
1334
1334
|
```
|
1335
1335
|
|
1336
1336
|
## iloads
|
@@ -1460,7 +1460,7 @@ Output:
|
|
1460
1460
|
```py
|
1461
1461
|
8
|
1462
1462
|
['mana', 'aja']
|
1463
|
-
[<Element a at
|
1463
|
+
[<Element a at 0x6f41a3d680>, <Element a at 0x6f41a73c50>, <Element a at 0x6f41a73ca0>, <Element a at 0x6f41a73cf0>, <Element a at 0x6f41a73d40>, <Element a at 0x6f41a73d90>, <Element a at 0x6f41a73de0>, <Element a at 0x6f41a73e30>, <Element a at 0x6f41a73e80>, <Element a at 0x6f41a73ed0>, <Element a at 0x6f41a73f20>, <Element a at 0x6f41a73f70>, <Element a at 0x6f41a73fc0>, <Element a at 0x6f41a90050>, <Element a at 0x6f41a900a0>, <Element a at 0x6f41a900f0>, <Element a at 0x6f41a90140>, <Element a at 0x6f41a90190>]
|
1464
1464
|
False
|
1465
1465
|
```
|
1466
1466
|
|
@@ -1530,8 +1530,8 @@ print(list(iscandir("./", recursive=False, scan_file=False)))
|
|
1530
1530
|
|
1531
1531
|
Output:
|
1532
1532
|
```py
|
1533
|
-
<generator object iscandir at
|
1534
|
-
[PosixPath('.git'), PosixPath('.vscode'), PosixPath('pypipr')]
|
1533
|
+
<generator object iscandir at 0x6f41bc2f20>
|
1534
|
+
[PosixPath('.git'), PosixPath('.vscode'), PosixPath('pypipr'), PosixPath('__pycache__'), PosixPath('dist')]
|
1535
1535
|
```
|
1536
1536
|
|
1537
1537
|
## isplit
|
@@ -1563,94 +1563,94 @@ iprint(ivars(__import__('pypipr')))
|
|
1563
1563
|
|
1564
1564
|
Output:
|
1565
1565
|
```py
|
1566
|
-
{'function': {'avg': <function avg at
|
1567
|
-
'get_filemtime': <function get_filemtime at
|
1568
|
-
'print_colorize': <function print_colorize at
|
1569
|
-
'print_log': <function print_log at
|
1570
|
-
'console_run': <function console_run at
|
1571
|
-
'auto_reload': <function auto_reload at
|
1572
|
-
'basename': <function basename at
|
1573
|
-
'chr_to_int': <function chr_to_int at
|
1574
|
-
'int_to_chr': <function int_to_chr at
|
1575
|
-
'irange': <function irange at
|
1576
|
-
'batchmaker': <function batchmaker at
|
1577
|
-
'calculate': <function calculate at
|
1578
|
-
'batch_calculate': <function batch_calculate at
|
1579
|
-
'bin_to_int': <function bin_to_int at
|
1580
|
-
'is_empty': <function is_empty at
|
1581
|
-
'exit_if_empty': <function exit_if_empty at
|
1582
|
-
'input_char': <function input_char at
|
1583
|
-
'choices': <function choices at
|
1584
|
-
'chunk_array': <function chunk_array at
|
1585
|
-
'create_folder': <function create_folder at
|
1586
|
-
'datetime_from_string': <function datetime_from_string at
|
1587
|
-
'datetime_now': <function datetime_now at
|
1588
|
-
'dict_first': <function dict_first at
|
1589
|
-
'dirname': <function dirname at
|
1590
|
-
'django_clear_migrations': <function django_clear_migrations at
|
1591
|
-
'django_runserver': <function django_runserver at
|
1592
|
-
'is_iterable': <function is_iterable at
|
1593
|
-
'to_str': <function to_str at
|
1594
|
-
'filter_empty': <function filter_empty at
|
1595
|
-
'get_by_index': <function get_by_index at
|
1596
|
-
'get_class_method': <function get_class_method at
|
1597
|
-
'get_filesize': <function get_filesize at
|
1598
|
-
'github_init': <function github_init at
|
1599
|
-
'github_pull': <function github_pull at
|
1600
|
-
'github_push': <function github_push at
|
1601
|
-
'github_user': <function github_user at
|
1602
|
-
'hex_to_int': <function hex_to_int at
|
1603
|
-
'iargv': <function iargv at
|
1604
|
-
'idir': <function idir at
|
1605
|
-
'idumps_html': <function idumps_html at
|
1606
|
-
'idumps': <function idumps at
|
1607
|
-
'int_to_int': <function int_to_int at
|
1608
|
-
'ienumerate': <function ienumerate at
|
1609
|
-
'ienv': <function ienv at
|
1610
|
-
'iexec': <function iexec at
|
1611
|
-
'ijoin': <function ijoin at
|
1612
|
-
'iloads_html': <function iloads_html at
|
1613
|
-
'iloads': <function iloads at
|
1614
|
-
'int_to_bin': <function int_to_bin at
|
1615
|
-
'int_to_hex': <function int_to_hex at
|
1616
|
-
'int_to_oct': <function int_to_oct at
|
1617
|
-
'is_valid_url': <function is_valid_url at
|
1618
|
-
'iopen': <function iopen at
|
1619
|
-
'iprint': <function iprint at
|
1620
|
-
'is_raw_string': <function is_raw_string at
|
1621
|
-
'ireplace': <function ireplace at
|
1622
|
-
'is_html': <function is_html at
|
1623
|
-
'iscandir': <function iscandir at
|
1624
|
-
'isplit': <function isplit at
|
1625
|
-
'ivars': <function ivars at
|
1626
|
-
'log': <function log at
|
1627
|
-
'oct_to_int': <function oct_to_int at
|
1628
|
-
'password_generator': <function password_generator at
|
1629
|
-
'pip_freeze_without_version': <function pip_freeze_without_version at
|
1630
|
-
'pip_update_pypipr': <function pip_update_pypipr at
|
1631
|
-
'poetry_publish': <function poetry_publish at
|
1632
|
-
'poetry_update_version': <function poetry_update_version at
|
1633
|
-
'print_dir': <function print_dir at
|
1634
|
-
'print_to_last_line': <function print_to_last_line at
|
1635
|
-
'random_bool': <function random_bool at
|
1636
|
-
'repath': <function repath at
|
1637
|
-
'restart': <function restart at
|
1638
|
-
'set_timeout': <function set_timeout at
|
1639
|
-
'sets_ordered': <function sets_ordered at
|
1640
|
-
'sqlite_backup': <function sqlite_backup at
|
1641
|
-
'sqlite_delete_table': <function sqlite_delete_table at
|
1642
|
-
'sqlite_get_all_tables': <function sqlite_get_all_tables at
|
1643
|
-
'sqlite_get_data_table': <function sqlite_get_data_table at
|
1644
|
-
'str_cmp': <function str_cmp at
|
1645
|
-
'text_colorize': <function text_colorize at
|
1646
|
-
'traceback_filename': <function traceback_filename at
|
1647
|
-
'traceback_framename': <function traceback_framename at
|
1566
|
+
{'function': {'avg': <function avg at 0x6f4c5f0680>,
|
1567
|
+
'get_filemtime': <function get_filemtime at 0x6f4840d260>,
|
1568
|
+
'print_colorize': <function print_colorize at 0x6f4840d440>,
|
1569
|
+
'print_log': <function print_log at 0x6f48b1f380>,
|
1570
|
+
'console_run': <function console_run at 0x6f4840d300>,
|
1571
|
+
'auto_reload': <function auto_reload at 0x6f4840cc20>,
|
1572
|
+
'basename': <function basename at 0x6f4840d4e0>,
|
1573
|
+
'chr_to_int': <function chr_to_int at 0x6f4840da80>,
|
1574
|
+
'int_to_chr': <function int_to_chr at 0x6f4840db20>,
|
1575
|
+
'irange': <function irange at 0x6f4840e020>,
|
1576
|
+
'batchmaker': <function batchmaker at 0x6f4840d800>,
|
1577
|
+
'calculate': <function calculate at 0x6f4840d3a0>,
|
1578
|
+
'batch_calculate': <function batch_calculate at 0x6f4840d580>,
|
1579
|
+
'bin_to_int': <function bin_to_int at 0x6f4840d760>,
|
1580
|
+
'is_empty': <function is_empty at 0x6f4840e8e0>,
|
1581
|
+
'exit_if_empty': <function exit_if_empty at 0x6f4840e7a0>,
|
1582
|
+
'input_char': <function input_char at 0x6f4840e840>,
|
1583
|
+
'choices': <function choices at 0x6f4840eb60>,
|
1584
|
+
'chunk_array': <function chunk_array at 0x6f4840ec00>,
|
1585
|
+
'create_folder': <function create_folder at 0x6f4840eca0>,
|
1586
|
+
'datetime_from_string': <function datetime_from_string at 0x6f4840ed40>,
|
1587
|
+
'datetime_now': <function datetime_now at 0x6f4840ede0>,
|
1588
|
+
'dict_first': <function dict_first at 0x6f4842d080>,
|
1589
|
+
'dirname': <function dirname at 0x6f4842d120>,
|
1590
|
+
'django_clear_migrations': <function django_clear_migrations at 0x6f4842d1c0>,
|
1591
|
+
'django_runserver': <function django_runserver at 0x6f4842d4e0>,
|
1592
|
+
'is_iterable': <function is_iterable at 0x6f4842d8a0>,
|
1593
|
+
'to_str': <function to_str at 0x6f4842d9e0>,
|
1594
|
+
'filter_empty': <function filter_empty at 0x6f4842d760>,
|
1595
|
+
'get_by_index': <function get_by_index at 0x6f4842d940>,
|
1596
|
+
'get_class_method': <function get_class_method at 0x6f4842da80>,
|
1597
|
+
'get_filesize': <function get_filesize at 0x6f4842dbc0>,
|
1598
|
+
'github_init': <function github_init at 0x6f4842dc60>,
|
1599
|
+
'github_pull': <function github_pull at 0x6f4842dd00>,
|
1600
|
+
'github_push': <function github_push at 0x6f4842de40>,
|
1601
|
+
'github_user': <function github_user at 0x6f4842dee0>,
|
1602
|
+
'hex_to_int': <function hex_to_int at 0x6f4842df80>,
|
1603
|
+
'iargv': <function iargv at 0x6f4842e020>,
|
1604
|
+
'idir': <function idir at 0x6f4842e0c0>,
|
1605
|
+
'idumps_html': <function idumps_html at 0x6f484bdf80>,
|
1606
|
+
'idumps': <function idumps at 0x6f4842e160>,
|
1607
|
+
'int_to_int': <function int_to_int at 0x6f484be480>,
|
1608
|
+
'ienumerate': <function ienumerate at 0x6f484987c0>,
|
1609
|
+
'ienv': <function ienv at 0x6f484be340>,
|
1610
|
+
'iexec': <function iexec at 0x6f484be520>,
|
1611
|
+
'ijoin': <function ijoin at 0x6f484be5c0>,
|
1612
|
+
'iloads_html': <function iloads_html at 0x6f484be8e0>,
|
1613
|
+
'iloads': <function iloads at 0x6f4d049260>,
|
1614
|
+
'int_to_bin': <function int_to_bin at 0x6f484be660>,
|
1615
|
+
'int_to_hex': <function int_to_hex at 0x6f484be700>,
|
1616
|
+
'int_to_oct': <function int_to_oct at 0x6f484be980>,
|
1617
|
+
'is_valid_url': <function is_valid_url at 0x6f484bec00>,
|
1618
|
+
'iopen': <function iopen at 0x6f4824a7a0>,
|
1619
|
+
'iprint': <function iprint at 0x6f484beac0>,
|
1620
|
+
'is_raw_string': <function is_raw_string at 0x6f41d38040>,
|
1621
|
+
'ireplace': <function ireplace at 0x6f41d2e520>,
|
1622
|
+
'is_html': <function is_html at 0x6f41d2ff60>,
|
1623
|
+
'iscandir': <function iscandir at 0x6f41d380e0>,
|
1624
|
+
'isplit': <function isplit at 0x6f41d38180>,
|
1625
|
+
'ivars': <function ivars at 0x6f41d38220>,
|
1626
|
+
'log': <function log at 0x6f41d382c0>,
|
1627
|
+
'oct_to_int': <function oct_to_int at 0x6f41d38360>,
|
1628
|
+
'password_generator': <function password_generator at 0x6f41d38400>,
|
1629
|
+
'pip_freeze_without_version': <function pip_freeze_without_version at 0x6f41d384a0>,
|
1630
|
+
'pip_update_pypipr': <function pip_update_pypipr at 0x6f41d38540>,
|
1631
|
+
'poetry_publish': <function poetry_publish at 0x6f41d385e0>,
|
1632
|
+
'poetry_update_version': <function poetry_update_version at 0x6f41d38720>,
|
1633
|
+
'print_dir': <function print_dir at 0x6f41d38860>,
|
1634
|
+
'print_to_last_line': <function print_to_last_line at 0x6f41d38900>,
|
1635
|
+
'random_bool': <function random_bool at 0x6f41d389a0>,
|
1636
|
+
'repath': <function repath at 0x6f41d38ae0>,
|
1637
|
+
'restart': <function restart at 0x6f41d38b80>,
|
1638
|
+
'set_timeout': <function set_timeout at 0x6f41d38c20>,
|
1639
|
+
'sets_ordered': <function sets_ordered at 0x6f41d38cc0>,
|
1640
|
+
'sqlite_backup': <function sqlite_backup at 0x6f41d38d60>,
|
1641
|
+
'sqlite_delete_table': <function sqlite_delete_table at 0x6f41d38e00>,
|
1642
|
+
'sqlite_get_all_tables': <function sqlite_get_all_tables at 0x6f41d38ea0>,
|
1643
|
+
'sqlite_get_data_table': <function sqlite_get_data_table at 0x6f41d38f40>,
|
1644
|
+
'str_cmp': <function str_cmp at 0x6f41d39800>,
|
1645
|
+
'text_colorize': <function text_colorize at 0x6f41d398a0>,
|
1646
|
+
'traceback_filename': <function traceback_filename at 0x6f41d39940>,
|
1647
|
+
'traceback_framename': <function traceback_framename at 0x6f41d399e0>},
|
1648
1648
|
'class': {'ComparePerformance': <class 'pypipr.ComparePerformance.ComparePerformance'>,
|
1649
1649
|
'PintUregQuantity': <class 'pint.Quantity'>,
|
1650
1650
|
'RunParallel': <class 'pypipr.RunParallel.RunParallel'>,
|
1651
1651
|
'TextCase': <class 'pypipr.TextCase.TextCase'>},
|
1652
1652
|
'variable': {'LINUX': True,
|
1653
|
-
'PintUreg': <pint.registry.UnitRegistry object at
|
1653
|
+
'PintUreg': <pint.registry.UnitRegistry object at 0x6f4c5e9640>,
|
1654
1654
|
'WINDOWS': False},
|
1655
1655
|
'module': {'asyncio': <module 'asyncio' from '/data/data/com.termux/files/usr/lib/python3.12/asyncio/__init__.py'>,
|
1656
1656
|
'colorama': <module 'colorama' from '/data/data/com.termux/files/home/.cache/pypoetry/virtualenvs/pypipr-ZoJyDxLL-py3.12/lib/python3.12/site-packages/colorama/__init__.py'>,
|
@@ -1741,7 +1741,7 @@ print(password_generator())
|
|
1741
1741
|
|
1742
1742
|
Output:
|
1743
1743
|
```py
|
1744
|
-
|
1744
|
+
3'4NL1bl
|
1745
1745
|
```
|
1746
1746
|
|
1747
1747
|
## pip_freeze_without_version
|
@@ -1803,7 +1803,7 @@ Output:
|
|
1803
1803
|
__enter__ : https:/www.google.com
|
1804
1804
|
__fspath__ : https:/www.google.com
|
1805
1805
|
__getstate__ : (None, {'_raw_paths': ['https://www.google.com/'], '_drv': '', '_root': '', '_tail_cached': ['https:', 'www.google.com'], '_str': 'https:/www.google.com'})
|
1806
|
-
__hash__ :
|
1806
|
+
__hash__ : 7609249668406487037
|
1807
1807
|
__init__ : None
|
1808
1808
|
__init_subclass__ : None
|
1809
1809
|
__module__ : pathlib
|
@@ -1815,7 +1815,7 @@ Output:
|
|
1815
1815
|
__subclasshook__ : NotImplemented
|
1816
1816
|
_drv :
|
1817
1817
|
_flavour : <module 'posixpath' (frozen)>
|
1818
|
-
_hash :
|
1818
|
+
_hash : 7609249668406487037
|
1819
1819
|
_lines : https:
|
1820
1820
|
www.google.com
|
1821
1821
|
_lines_cached : https:
|
@@ -1849,7 +1849,7 @@ _parts_normcase_cached : ['https:', 'www.google.com']
|
|
1849
1849
|
is_reserved : False
|
1850
1850
|
is_socket : False
|
1851
1851
|
is_symlink : False
|
1852
|
-
iterdir : <generator object Path.iterdir at
|
1852
|
+
iterdir : <generator object Path.iterdir at 0x6f41bcfd30>
|
1853
1853
|
joinpath : .
|
1854
1854
|
name :
|
1855
1855
|
parent : https:/www.google.com
|
@@ -1860,7 +1860,7 @@ _parts_normcase_cached : ['https:', 'www.google.com']
|
|
1860
1860
|
stem :
|
1861
1861
|
suffix :
|
1862
1862
|
suffixes : []
|
1863
|
-
walk : <generator object Path.walk at
|
1863
|
+
walk : <generator object Path.walk at 0x6f41e0bd80>
|
1864
1864
|
with_segments : .
|
1865
1865
|
```
|
1866
1866
|
|
@@ -1940,7 +1940,7 @@ x.cancel()
|
|
1940
1940
|
|
1941
1941
|
Output:
|
1942
1942
|
```py
|
1943
|
-
<Timer(Thread-2, started
|
1943
|
+
<Timer(Thread-2, started 477806324976)>
|
1944
1944
|
menghentikan timeout 7
|
1945
1945
|
```
|
1946
1946
|
|
@@ -1958,7 +1958,7 @@ print(list(sets_ordered(array)))
|
|
1958
1958
|
|
1959
1959
|
Output:
|
1960
1960
|
```py
|
1961
|
-
<generator object sets_ordered at
|
1961
|
+
<generator object sets_ordered at 0x6f41a56b50>
|
1962
1962
|
[2, 3, 12, 42, 1, 43, 41, 4, 24, 32]
|
1963
1963
|
```
|
1964
1964
|
|
@@ -2076,15 +2076,15 @@ print(ExampleComparePerformance().compare_performance())
|
|
2076
2076
|
|
2077
2077
|
Output:
|
2078
2078
|
```py
|
2079
|
-
{'a': <generator object ExampleComparePerformance.a.<locals>.<genexpr> at
|
2079
|
+
{'a': <generator object ExampleComparePerformance.a.<locals>.<genexpr> at 0x6f41c18ac0>,
|
2080
2080
|
'b': (0, 1, 2, 3, 4, 5, 6, 7, 8, 9),
|
2081
2081
|
'c': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
|
2082
2082
|
'd': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]}
|
2083
|
-
{'a':
|
2084
|
-
{'a':
|
2085
|
-
{'a':
|
2086
|
-
{'a':
|
2087
|
-
{'a':
|
2083
|
+
{'a': 180, 'b': 190, 'c': 100, 'd': 168}
|
2084
|
+
{'a': 124, 'b': 158, 'c': 100, 'd': 164}
|
2085
|
+
{'a': 122, 'b': 162, 'c': 99, 'd': 175}
|
2086
|
+
{'a': 123, 'b': 174, 'c': 99, 'd': 176}
|
2087
|
+
{'a': 126, 'b': 159, 'c': 100, 'd': 169}
|
2088
2088
|
```
|
2089
2089
|
|
2090
2090
|
## PintUregQuantity
|
@@ -90,7 +90,7 @@ pypipr/tiles.py,sha256=uSEYqvjBQHIz7pZKtdta1XwFhGrMFieMHOH2DKrlcXc,328
|
|
90
90
|
pypipr/to_str.py,sha256=vSuspf-ZQldf4enkssa9XH0WMjkmWug51G9ia0K5occ,597
|
91
91
|
pypipr/traceback_filename.py,sha256=4o85J0N8clI0cM6NTGcKZ4zxR9yS7W2NS_bz3J2_PnY,288
|
92
92
|
pypipr/traceback_framename.py,sha256=_mullrAZzMhBFEFVCgdsmkYQmYUkd58o-J-HuMntKyc,291
|
93
|
-
pypipr-1.0.
|
94
|
-
pypipr-1.0.
|
95
|
-
pypipr-1.0.
|
96
|
-
pypipr-1.0.
|
93
|
+
pypipr-1.0.159.dist-info/METADATA,sha256=N3uofyP1nEndnb2Hg77xqIrN2wCUm4vd4xr2W93xw9k,56801
|
94
|
+
pypipr-1.0.159.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
95
|
+
pypipr-1.0.159.dist-info/entry_points.txt,sha256=XEBtOa61BCVW4cVvoqYQnyTcenJ1tzFFB09YnuqlKBY,51
|
96
|
+
pypipr-1.0.159.dist-info/RECORD,,
|
File without changes
|
File without changes
|