pypipr 1.0.180__py3-none-any.whl → 1.0.181__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,11 +1,16 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: pypipr
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.181
|
4
4
|
Summary: The Python Package Index Project
|
5
5
|
Author: ufiapjj
|
6
6
|
Author-email: ufiapjj@gmail.com
|
7
|
-
Requires-Python: >=3
|
7
|
+
Requires-Python: >=3,<4
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
9
|
+
Classifier: Programming Language :: Python :: 3.4
|
10
|
+
Classifier: Programming Language :: Python :: 3.5
|
11
|
+
Classifier: Programming Language :: Python :: 3.6
|
12
|
+
Classifier: Programming Language :: Python :: 3.7
|
13
|
+
Classifier: Programming Language :: Python :: 3.8
|
9
14
|
Classifier: Programming Language :: Python :: 3.9
|
10
15
|
Classifier: Programming Language :: Python :: 3.10
|
11
16
|
Classifier: Programming Language :: Python :: 3.11
|
@@ -249,8 +254,8 @@ iprint(irange("z", "a", 4))
|
|
249
254
|
|
250
255
|
Output:
|
251
256
|
```py
|
252
|
-
<generator object int_range at
|
253
|
-
<generator object int_range at
|
257
|
+
<generator object int_range at 0x707b63a940>
|
258
|
+
<generator object int_range at 0x707b63aa40>
|
254
259
|
[13, 12, 11, 10, 9, 8, 7, 6]
|
255
260
|
[2, 5, 8]
|
256
261
|
[]
|
@@ -282,7 +287,7 @@ print(list(batchmaker(s)))
|
|
282
287
|
|
283
288
|
Output:
|
284
289
|
```py
|
285
|
-
<generator object batchmaker at
|
290
|
+
<generator object batchmaker at 0x707b5e7d00>
|
286
291
|
['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.']
|
287
292
|
```
|
288
293
|
|
@@ -336,7 +341,7 @@ print(list(batch_calculate("{1 10} m ** {1 3}")))
|
|
336
341
|
|
337
342
|
Output:
|
338
343
|
```py
|
339
|
-
<generator object batch_calculate at
|
344
|
+
<generator object batch_calculate at 0x707b647e60>
|
340
345
|
[('1 m ** 1', <Quantity(1, 'meter')>), ('1 m ** 2', <Quantity(1, 'meter ** 2')>), ('1 m ** 3', <Quantity(1, 'meter ** 3')>)]
|
341
346
|
```
|
342
347
|
|
@@ -442,7 +447,7 @@ print(list(chunk_array(arr, 5)))
|
|
442
447
|
|
443
448
|
Output:
|
444
449
|
```py
|
445
|
-
<generator object chunk_array at
|
450
|
+
<generator object chunk_array at 0x707b63f2e0>
|
446
451
|
[[2, 3, 12, 3, 3], [42, 42, 1, 43, 2], [42, 41, 4, 24, 32], [42, 3, 12, 32, 42], [42]]
|
447
452
|
```
|
448
453
|
|
@@ -493,9 +498,9 @@ print(datetime_now("Etc/GMT+7"))
|
|
493
498
|
|
494
499
|
Output:
|
495
500
|
```py
|
496
|
-
2025-05-08
|
497
|
-
2025-05-08
|
498
|
-
2025-05-07
|
501
|
+
2025-05-08 12:39:39.010319+07:00
|
502
|
+
2025-05-08 05:39:39.011947+00:00
|
503
|
+
2025-05-07 22:39:39.016933-07:00
|
499
504
|
```
|
500
505
|
|
501
506
|
## dict_first
|
@@ -614,7 +619,7 @@ iprint(filter_empty(var))
|
|
614
619
|
|
615
620
|
Output:
|
616
621
|
```py
|
617
|
-
<generator object filter_empty at
|
622
|
+
<generator object filter_empty at 0x707b63f4c0>
|
618
623
|
[1, '0', True, {}, ['eee']]
|
619
624
|
```
|
620
625
|
|
@@ -661,8 +666,8 @@ print(list(get_class_method(ExampleGetClassMethod)))
|
|
661
666
|
|
662
667
|
Output:
|
663
668
|
```py
|
664
|
-
<generator object get_class_method at
|
665
|
-
[<function ExampleGetClassMethod.a at
|
669
|
+
<generator object get_class_method at 0x707b340d60>
|
670
|
+
[<function ExampleGetClassMethod.a at 0x707b333ba0>, <function ExampleGetClassMethod.b at 0x707b333a60>, <function ExampleGetClassMethod.c at 0x707b333b00>, <function ExampleGetClassMethod.d at 0x707b333ce0>]
|
666
671
|
```
|
667
672
|
|
668
673
|
## get_filesize
|
@@ -1090,7 +1095,7 @@ Output:
|
|
1090
1095
|
|
1091
1096
|
## ienumerate
|
1092
1097
|
|
1093
|
-
`ienumerate(iterator, start=0, key=<function int_to_int at
|
1098
|
+
`ienumerate(iterator, start=0, key=<function int_to_int at 0x707eafaf20>)`
|
1094
1099
|
|
1095
1100
|
meningkatkan fungsi enumerate() pada python
|
1096
1101
|
untuk key menggunakan huruf dan basis angka lainnya.
|
@@ -1103,7 +1108,7 @@ iprint(ienumerate(it, key=int_to_chr))
|
|
1103
1108
|
|
1104
1109
|
Output:
|
1105
1110
|
```py
|
1106
|
-
<generator object ienumerate at
|
1111
|
+
<generator object ienumerate at 0x707b63f4c0>
|
1107
1112
|
[('a', 'ini'), ('b', 'contoh'), ('c', 'enumerator')]
|
1108
1113
|
```
|
1109
1114
|
|
@@ -1180,7 +1185,7 @@ print(ijoin(10, ' '))
|
|
1180
1185
|
|
1181
1186
|
Output:
|
1182
1187
|
```py
|
1183
|
-
weq,
|
1188
|
+
asd, weq, dfs, qweqw
|
1184
1189
|
,ini,path,seperti,url,
|
1185
1190
|
ini,path,seperti,url
|
1186
1191
|
<li>satu</li>
|
@@ -1226,9 +1231,9 @@ Output:
|
|
1226
1231
|
```py
|
1227
1232
|
(['Home', 'Emas 1 Gram', 'History', 'Trend', 'Perak 1 Gram', 'Pluang'],
|
1228
1233
|
[['Harga Emas Hari Ini - Kamis, 08 Mei 2025'],
|
1229
|
-
['Spot Emas USD
|
1234
|
+
['Spot Emas USD↓3.376,41 (-11,83) / oz',
|
1230
1235
|
'Kurs IDR1,00 / USD',
|
1231
|
-
'Emas IDR
|
1236
|
+
'Emas IDR↓109 (-0) / gr'],
|
1232
1237
|
['LM Antam (Jual)↓1.513.000 (-30.000) / gr',
|
1233
1238
|
'LM Antam (Beli)↓1.366.000 (-30.000) / gr']],
|
1234
1239
|
[['Harga Emas Hari Ini'],
|
@@ -1251,10 +1256,10 @@ Output:
|
|
1251
1256
|
'Update harga LM Pegadaian :31 Desember 1969']],
|
1252
1257
|
[['Spot Harga Emas Hari Ini (Market Open)'],
|
1253
1258
|
['Satuan', 'USD', 'Kurs\xa0Dollar', 'IDR'],
|
1254
|
-
['Ounce\xa0(oz)', '3.
|
1255
|
-
['Gram\xa0(gr)', '
|
1256
|
-
['Kilogram\xa0(kg)', '
|
1257
|
-
['Update harga emas :08 Mei 2025, pukul
|
1259
|
+
['Ounce\xa0(oz)', '3.376,41 (-11,83)', '1,00', '3.376'],
|
1260
|
+
['Gram\xa0(gr)', '108,55', '1,00', '109 (-0)'],
|
1261
|
+
['Kilogram\xa0(kg)', '108.554,10', '1,00', '108.554'],
|
1262
|
+
['Update harga emas :08 Mei 2025, pukul 12:39Update kurs :14 Maret 2025, '
|
1258
1263
|
'pukul 10:13']],
|
1259
1264
|
[['Gram', 'UBS Gold 99.99%'],
|
1260
1265
|
['Jual', 'Beli'],
|
@@ -1292,36 +1297,36 @@ Output:
|
|
1292
1297
|
['Unit', 'USD', 'IDR'],
|
1293
1298
|
['Angka', '+/-', 'Angka', '+/-'],
|
1294
1299
|
['Hari Ini', 'Kurs', '', '', '1', '%'],
|
1295
|
-
['oz', '3.388,24', '
|
1296
|
-
['gr', '108,93', '
|
1300
|
+
['oz', '3.388,24', '-11,83-0,35%', '3.388', '-12-0,35%'],
|
1301
|
+
['gr', '108,93', '-0,38-0,35%', '109', '-0-0,35%'],
|
1297
1302
|
['30 Hari', 'Kurs', '', '', '1', '%'],
|
1298
|
-
['oz', '2.987,14', '+
|
1299
|
-
['gr', '96,04', '+
|
1303
|
+
['oz', '2.987,14', '+389,27+13,03%', '2.987', '+389+13,03%'],
|
1304
|
+
['gr', '96,04', '+12,52+13,03%', '96', '+13+13,03%'],
|
1300
1305
|
['2 Bulan', 'Kurs', '', '', '16.315', '-16.314-99,99%'],
|
1301
|
-
['oz', '2.911,17', '+
|
1302
|
-
['gr', '93,60', '+
|
1306
|
+
['oz', '2.911,17', '+465,24+15,98%', '47.495.739', '-47.492.362-99,99%'],
|
1307
|
+
['gr', '93,60', '+14,96+15,98', '1.527.023', '-1.526.915-99,99%'],
|
1303
1308
|
['6 Bulan', 'Kurs', '', '', '15.767', '-15.766-99,99%'],
|
1304
|
-
['oz', '2.684,64', '+
|
1305
|
-
['gr', '86,31', '+
|
1309
|
+
['oz', '2.684,64', '+691,77+25,77%', '42.328.719', '-42.325.342-99,99%'],
|
1310
|
+
['gr', '86,31', '+22,24+25,77%', '1.360.900', '-1.360.791-99,99%'],
|
1306
1311
|
['1 Tahun', 'Kurs', '', '', '16.054', '-16.053-99,99%'],
|
1307
|
-
['oz', '2.317,41', '+1.
|
1308
|
-
['gr', '74,51', '+
|
1312
|
+
['oz', '2.317,41', '+1.059,00+45,70%', '37.203.700', '-37.200.324-99,99%'],
|
1313
|
+
['gr', '74,51', '+34,05+45,70%', '1.196.127', '-1.196.018-99,99%'],
|
1309
1314
|
['2 Tahun', 'Kurs', '', '', '15.731', '-15.730-99,99%'],
|
1310
|
-
['oz', '1.823,86', '+1.
|
1311
|
-
['gr', '58,64', '+
|
1315
|
+
['oz', '1.823,86', '+1.552,55+85,12%', '28.691.142', '-28.687.765-99,99%'],
|
1316
|
+
['gr', '58,64', '+49,92+85,12%', '922.442', '-922.333-99,99%'],
|
1312
1317
|
['3 Tahun', 'Kurs', '', '', '14.480', '-14.479-99,99%'],
|
1313
|
-
['oz', '1.861,38', '+1.
|
1314
|
-
['gr', '59,84', '+
|
1318
|
+
['oz', '1.861,38', '+1.515,03+81,39%', '26.952.782', '-26.949.406-99,99%'],
|
1319
|
+
['gr', '59,84', '+48,71+81,39%', '866.552', '-866.444-99,99%'],
|
1315
1320
|
['5 Tahun', 'Kurs', '', '', '15.009', '-15.008-99,99%'],
|
1316
|
-
['oz', '1.702,22', '+1.
|
1317
|
-
['gr', '54,73', '+
|
1321
|
+
['oz', '1.702,22', '+1.674,19+98,35%', '25.548.637', '-25.545.261-99,99%'],
|
1322
|
+
['gr', '54,73', '+53,83+98,35%', '821.408', '-821.299-99,99%']])
|
1318
1323
|
(['Home', 'Emas 1 Gram', 'History', 'Trend', 'Perak 1 Gram', 'Pluang'],
|
1319
1324
|
[[''],
|
1320
1325
|
['Emas 24 KaratHarga Emas 1 Gram', ''],
|
1321
|
-
['USD', '
|
1322
|
-
['KURS', '16.
|
1323
|
-
['IDR', '1.
|
1324
|
-
['Kamis, 08 Mei 2025
|
1326
|
+
['USD', '108,55↓', '-0,38-0,35%'],
|
1327
|
+
['KURS', '16.475,60↑', '+7,10+0,04%'],
|
1328
|
+
['IDR', '1.788.493,97↓', '-5.492,95-0,31%'],
|
1329
|
+
['Kamis, 08 Mei 2025 12:39']],
|
1325
1330
|
[[''],
|
1326
1331
|
['Emas 1 Gram (IDR)Emas 1 Gram (USD)Kurs USD-IDR',
|
1327
1332
|
'Hari Ini',
|
@@ -1332,25 +1337,25 @@ Output:
|
|
1332
1337
|
'']],
|
1333
1338
|
[['Pergerakkan Harga Emas 1 Gram'],
|
1334
1339
|
['', 'Penutupan Kemarin', 'Pergerakkan Hari Ini', 'Rata-rata'],
|
1335
|
-
['USD', '108,93', '108,
|
1336
|
-
['KURS', '16.468,50', '16.468,50 - 16.
|
1337
|
-
['IDR', '1.793.986,92', '1.
|
1340
|
+
['USD', '108,93', '108,55 - 108,93', '108,74'],
|
1341
|
+
['KURS', '16.468,50', '16.468,50 - 16.475,60', '16.472,05'],
|
1342
|
+
['IDR', '1.793.986,92', '1.788.493,97 - 1.793.986,92', '1.791.240,45'],
|
1338
1343
|
[''],
|
1339
1344
|
['', 'Awal Tahun', 'Pergerakkan YTD', '+/- YTD'],
|
1340
|
-
['USD', '84,42', '84,38 - 109,73', '+
|
1341
|
-
['KURS', '16.220,76', '16.156,70 - 16.877,75', '+
|
1345
|
+
['USD', '84,42', '84,38 - 109,73', '+24,13 (28,58%)'],
|
1346
|
+
['KURS', '16.220,76', '16.156,70 - 16.877,75', '+254,84 (1,57%)'],
|
1342
1347
|
['IDR',
|
1343
1348
|
'1.369.306,75',
|
1344
1349
|
'1.368.695,74 - 1.850.462,40',
|
1345
|
-
'+
|
1350
|
+
'+419.187,22 (30,61%)'],
|
1346
1351
|
[''],
|
1347
1352
|
['', 'Tahun Lalu / 52 Minggu', 'Pergerakkan 52 Minggu', '+/- 52 Minggu'],
|
1348
|
-
['USD', '74,37', '73,75 - 109,73', '+
|
1349
|
-
['KURS', '16.067,00', '15.100,00 - 16.877,75', '+
|
1353
|
+
['USD', '74,37', '73,75 - 109,73', '+34,18 (45,96%)'],
|
1354
|
+
['KURS', '16.067,00', '15.100,00 - 16.877,75', '+408,60 (2,54%)'],
|
1350
1355
|
['IDR',
|
1351
1356
|
'1.194.982,56',
|
1352
1357
|
'1.197.616,87 - 1.850.462,40',
|
1353
|
-
'+
|
1358
|
+
'+593.511,41 (49,67%)']])
|
1354
1359
|
```
|
1355
1360
|
|
1356
1361
|
## iloads
|
@@ -1480,7 +1485,7 @@ Output:
|
|
1480
1485
|
```py
|
1481
1486
|
8
|
1482
1487
|
['m', 'a', 'n', 'a', 'a', 'j', 'a']
|
1483
|
-
|
1488
|
+
False
|
1484
1489
|
False
|
1485
1490
|
```
|
1486
1491
|
|
@@ -1550,7 +1555,7 @@ print(list(iscandir("./", recursive=False, scan_file=False)))
|
|
1550
1555
|
|
1551
1556
|
Output:
|
1552
1557
|
```py
|
1553
|
-
<generator object iscandir at
|
1558
|
+
<generator object iscandir at 0x707b63f2e0>
|
1554
1559
|
[PosixPath('.git'), PosixPath('.vscode'), PosixPath('pypipr'), PosixPath('__pycache__'), PosixPath('dist')]
|
1555
1560
|
```
|
1556
1561
|
|
@@ -1583,98 +1588,98 @@ iprint(ivars(__import__('pypipr')))
|
|
1583
1588
|
|
1584
1589
|
Output:
|
1585
1590
|
```py
|
1586
|
-
{'function': {'avg': <function avg at
|
1587
|
-
'get_filemtime': <function get_filemtime at
|
1588
|
-
'print_colorize': <function print_colorize at
|
1589
|
-
'print_log': <function print_log at
|
1590
|
-
'console_run': <function console_run at
|
1591
|
-
'auto_reload': <function auto_reload at
|
1592
|
-
'basename': <function basename at
|
1593
|
-
'chr_to_int': <function chr_to_int at
|
1594
|
-
'int_to_chr': <function int_to_chr at
|
1595
|
-
'irange': <function irange at
|
1596
|
-
'batchmaker': <function batchmaker at
|
1597
|
-
'calculate': <function calculate at
|
1598
|
-
'batch_calculate': <function batch_calculate at
|
1599
|
-
'bin_to_int': <function bin_to_int at
|
1600
|
-
'is_empty': <function is_empty at
|
1601
|
-
'exit_if_empty': <function exit_if_empty at
|
1602
|
-
'input_char': <function input_char at
|
1603
|
-
'choices': <function choices at
|
1604
|
-
'chunk_array': <function chunk_array at
|
1605
|
-
'create_folder': <function create_folder at
|
1606
|
-
'datetime_from_string': <function datetime_from_string at
|
1607
|
-
'datetime_now': <function datetime_now at
|
1608
|
-
'dict_first': <function dict_first at
|
1609
|
-
'dirname': <function dirname at
|
1610
|
-
'django_clear_migrations': <function django_clear_migrations at
|
1611
|
-
'django_runserver': <function django_runserver at
|
1612
|
-
'is_iterable': <function is_iterable at
|
1613
|
-
'to_str': <function to_str at
|
1614
|
-
'filter_empty': <function filter_empty at
|
1615
|
-
'get_by_index': <function get_by_index at
|
1616
|
-
'get_class_method': <function get_class_method at
|
1617
|
-
'get_filesize': <function get_filesize at
|
1618
|
-
'github_init': <function github_init at
|
1619
|
-
'github_pull': <function github_pull at
|
1620
|
-
'github_push': <function github_push at
|
1621
|
-
'github_user': <function github_user at
|
1622
|
-
'hex_to_int': <function hex_to_int at
|
1623
|
-
'iargv': <function iargv at
|
1624
|
-
'idir': <function idir at
|
1625
|
-
'idumps_html': <function idumps_html at
|
1626
|
-
'idumps': <function idumps at
|
1627
|
-
'int_to_int': <function int_to_int at
|
1628
|
-
'ienumerate': <function ienumerate at
|
1629
|
-
'ienv': <function ienv at
|
1630
|
-
'iexec': <function iexec at
|
1631
|
-
'iinput': <function iinput at
|
1632
|
-
'ijoin': <function ijoin at
|
1633
|
-
'iloads_html': <function iloads_html at
|
1634
|
-
'iloads': <function iloads at
|
1635
|
-
'int_to_bin': <function int_to_bin at
|
1636
|
-
'int_to_hex': <function int_to_hex at
|
1637
|
-
'int_to_oct': <function int_to_oct at
|
1638
|
-
'is_valid_url': <function is_valid_url at
|
1639
|
-
'iopen': <function iopen at
|
1640
|
-
'iprint': <function iprint at
|
1641
|
-
'is_raw_string': <function is_raw_string at
|
1642
|
-
'ireplace': <function ireplace at
|
1643
|
-
'is_html': <function is_html at
|
1644
|
-
'iscandir': <function iscandir at
|
1645
|
-
'isplit': <function isplit at
|
1646
|
-
'ivars': <function ivars at
|
1647
|
-
'log': <function log at
|
1648
|
-
'no_indent': <function no_indent at
|
1649
|
-
'oct_to_int': <function oct_to_int at
|
1650
|
-
'password_generator': <function password_generator at
|
1651
|
-
'path_to_module': <function path_to_module at
|
1652
|
-
'pip_freeze_without_version': <function pip_freeze_without_version at
|
1653
|
-
'pip_update_pypipr': <function pip_update_pypipr at
|
1654
|
-
'poetry_publish': <function poetry_publish at
|
1655
|
-
'poetry_shell': <function poetry_shell at
|
1656
|
-
'poetry_update_version': <function poetry_update_version at
|
1657
|
-
'print_dir': <function print_dir at
|
1658
|
-
'print_to_last_line': <function print_to_last_line at
|
1659
|
-
'random_bool': <function random_bool at
|
1660
|
-
'repath': <function repath at
|
1661
|
-
'restart': <function restart at
|
1662
|
-
'set_timeout': <function set_timeout at
|
1663
|
-
'sets_ordered': <function sets_ordered at
|
1664
|
-
'sqlite_backup': <function sqlite_backup at
|
1665
|
-
'sqlite_delete_table': <function sqlite_delete_table at
|
1666
|
-
'sqlite_get_all_tables': <function sqlite_get_all_tables at
|
1667
|
-
'sqlite_get_data_table': <function sqlite_get_data_table at
|
1668
|
-
'str_cmp': <function str_cmp at
|
1669
|
-
'text_colorize': <function text_colorize at
|
1670
|
-
'tiles': <function tiles at
|
1671
|
-
'traceback_filename': <function traceback_filename at
|
1672
|
-
'traceback_framename': <function traceback_framename at
|
1591
|
+
{'function': {'avg': <function avg at 0x70853e8720>,
|
1592
|
+
'get_filemtime': <function get_filemtime at 0x707ec020c0>,
|
1593
|
+
'print_colorize': <function print_colorize at 0x707ec022a0>,
|
1594
|
+
'print_log': <function print_log at 0x707ec02160>,
|
1595
|
+
'console_run': <function console_run at 0x707ec00720>,
|
1596
|
+
'auto_reload': <function auto_reload at 0x707eca3a60>,
|
1597
|
+
'basename': <function basename at 0x707ec02340>,
|
1598
|
+
'chr_to_int': <function chr_to_int at 0x707ec028e0>,
|
1599
|
+
'int_to_chr': <function int_to_chr at 0x707ec02980>,
|
1600
|
+
'irange': <function irange at 0x707ec02e80>,
|
1601
|
+
'batchmaker': <function batchmaker at 0x707ec02660>,
|
1602
|
+
'calculate': <function calculate at 0x707ec02200>,
|
1603
|
+
'batch_calculate': <function batch_calculate at 0x707ec023e0>,
|
1604
|
+
'bin_to_int': <function bin_to_int at 0x707ec025c0>,
|
1605
|
+
'is_empty': <function is_empty at 0x707ec03740>,
|
1606
|
+
'exit_if_empty': <function exit_if_empty at 0x707ec03600>,
|
1607
|
+
'input_char': <function input_char at 0x707ec036a0>,
|
1608
|
+
'choices': <function choices at 0x707ec039c0>,
|
1609
|
+
'chunk_array': <function chunk_array at 0x707ec03a60>,
|
1610
|
+
'create_folder': <function create_folder at 0x707ec03b00>,
|
1611
|
+
'datetime_from_string': <function datetime_from_string at 0x707ec03ba0>,
|
1612
|
+
'datetime_now': <function datetime_now at 0x707ec03c40>,
|
1613
|
+
'dict_first': <function dict_first at 0x707ebf1ee0>,
|
1614
|
+
'dirname': <function dirname at 0x707ebf2020>,
|
1615
|
+
'django_clear_migrations': <function django_clear_migrations at 0x707ebf20c0>,
|
1616
|
+
'django_runserver': <function django_runserver at 0x707ebf23e0>,
|
1617
|
+
'is_iterable': <function is_iterable at 0x707ebf27a0>,
|
1618
|
+
'to_str': <function to_str at 0x707ebf28e0>,
|
1619
|
+
'filter_empty': <function filter_empty at 0x707ebf2660>,
|
1620
|
+
'get_by_index': <function get_by_index at 0x707ebf2840>,
|
1621
|
+
'get_class_method': <function get_class_method at 0x707ebf2980>,
|
1622
|
+
'get_filesize': <function get_filesize at 0x707ebf2ac0>,
|
1623
|
+
'github_init': <function github_init at 0x707ebf2b60>,
|
1624
|
+
'github_pull': <function github_pull at 0x707ebf2c00>,
|
1625
|
+
'github_push': <function github_push at 0x707ebf2d40>,
|
1626
|
+
'github_user': <function github_user at 0x707ebf2de0>,
|
1627
|
+
'hex_to_int': <function hex_to_int at 0x707ebf2e80>,
|
1628
|
+
'iargv': <function iargv at 0x707ebf2f20>,
|
1629
|
+
'idir': <function idir at 0x707ebf2fc0>,
|
1630
|
+
'idumps_html': <function idumps_html at 0x707eafaa20>,
|
1631
|
+
'idumps': <function idumps at 0x707ebf3060>,
|
1632
|
+
'int_to_int': <function int_to_int at 0x707eafaf20>,
|
1633
|
+
'ienumerate': <function ienumerate at 0x707eae5260>,
|
1634
|
+
'ienv': <function ienv at 0x707eafade0>,
|
1635
|
+
'iexec': <function iexec at 0x707eafafc0>,
|
1636
|
+
'iinput': <function iinput at 0x707eafb060>,
|
1637
|
+
'ijoin': <function ijoin at 0x707eafb100>,
|
1638
|
+
'iloads_html': <function iloads_html at 0x707eafb420>,
|
1639
|
+
'iloads': <function iloads at 0x7085e61260>,
|
1640
|
+
'int_to_bin': <function int_to_bin at 0x707eafb1a0>,
|
1641
|
+
'int_to_hex': <function int_to_hex at 0x707eafb240>,
|
1642
|
+
'int_to_oct': <function int_to_oct at 0x707eafb4c0>,
|
1643
|
+
'is_valid_url': <function is_valid_url at 0x707eafb740>,
|
1644
|
+
'iopen': <function iopen at 0x707e89f2e0>,
|
1645
|
+
'iprint': <function iprint at 0x707e8f22a0>,
|
1646
|
+
'is_raw_string': <function is_raw_string at 0x707ca0cc20>,
|
1647
|
+
'ireplace': <function ireplace at 0x707ca03100>,
|
1648
|
+
'is_html': <function is_html at 0x707ca0cb80>,
|
1649
|
+
'iscandir': <function iscandir at 0x707ca0ccc0>,
|
1650
|
+
'isplit': <function isplit at 0x707ca0cd60>,
|
1651
|
+
'ivars': <function ivars at 0x707ca0ce00>,
|
1652
|
+
'log': <function log at 0x707ca0cea0>,
|
1653
|
+
'no_indent': <function no_indent at 0x707ca0cf40>,
|
1654
|
+
'oct_to_int': <function oct_to_int at 0x707ca0cfe0>,
|
1655
|
+
'password_generator': <function password_generator at 0x707ca0d080>,
|
1656
|
+
'path_to_module': <function path_to_module at 0x707ca0d120>,
|
1657
|
+
'pip_freeze_without_version': <function pip_freeze_without_version at 0x707ca0d1c0>,
|
1658
|
+
'pip_update_pypipr': <function pip_update_pypipr at 0x707ca0d260>,
|
1659
|
+
'poetry_publish': <function poetry_publish at 0x707ca0d300>,
|
1660
|
+
'poetry_shell': <function poetry_shell at 0x707ca0d3a0>,
|
1661
|
+
'poetry_update_version': <function poetry_update_version at 0x707ca0d4e0>,
|
1662
|
+
'print_dir': <function print_dir at 0x707ca0d620>,
|
1663
|
+
'print_to_last_line': <function print_to_last_line at 0x707ca0d6c0>,
|
1664
|
+
'random_bool': <function random_bool at 0x707ca0d760>,
|
1665
|
+
'repath': <function repath at 0x707ca0d8a0>,
|
1666
|
+
'restart': <function restart at 0x707ca0d940>,
|
1667
|
+
'set_timeout': <function set_timeout at 0x707ca0d9e0>,
|
1668
|
+
'sets_ordered': <function sets_ordered at 0x707ca0da80>,
|
1669
|
+
'sqlite_backup': <function sqlite_backup at 0x707ca0db20>,
|
1670
|
+
'sqlite_delete_table': <function sqlite_delete_table at 0x707ca0dbc0>,
|
1671
|
+
'sqlite_get_all_tables': <function sqlite_get_all_tables at 0x707ca0dc60>,
|
1672
|
+
'sqlite_get_data_table': <function sqlite_get_data_table at 0x707ca0dd00>,
|
1673
|
+
'str_cmp': <function str_cmp at 0x707ca0e5c0>,
|
1674
|
+
'text_colorize': <function text_colorize at 0x707ca0e660>,
|
1675
|
+
'tiles': <function tiles at 0x707ca0e700>,
|
1676
|
+
'traceback_filename': <function traceback_filename at 0x707ca0e7a0>,
|
1677
|
+
'traceback_framename': <function traceback_framename at 0x707ca0e840>},
|
1673
1678
|
'class': {'ComparePerformance': <class 'pypipr.ComparePerformance.ComparePerformance'>,
|
1674
1679
|
'PintUregQuantity': <class 'pint.Quantity'>,
|
1675
1680
|
'RunParallel': <class 'pypipr.RunParallel.RunParallel'>},
|
1676
1681
|
'variable': {'LINUX': True,
|
1677
|
-
'PintUreg': <pint.registry.UnitRegistry object at
|
1682
|
+
'PintUreg': <pint.registry.UnitRegistry object at 0x70853e0da0>,
|
1678
1683
|
'WINDOWS': False},
|
1679
1684
|
'module': {'asyncio': <module 'asyncio' from '/data/data/com.termux/files/usr/lib/python3.12/asyncio/__init__.py'>,
|
1680
1685
|
'colorama': <module 'colorama' from '/data/data/com.termux/files/home/.cache/pypoetry/virtualenvs/pypipr-C3uocabE-py3.12/lib/python3.12/site-packages/colorama/__init__.py'>,
|
@@ -1769,7 +1774,7 @@ print(password_generator())
|
|
1769
1774
|
|
1770
1775
|
Output:
|
1771
1776
|
```py
|
1772
|
-
|
1777
|
+
]qzaquc>
|
1773
1778
|
```
|
1774
1779
|
|
1775
1780
|
## path_to_module
|
@@ -1858,7 +1863,7 @@ Output:
|
|
1858
1863
|
__enter__ : https:/www.google.com
|
1859
1864
|
__fspath__ : https:/www.google.com
|
1860
1865
|
__getstate__ : (None, {'_raw_paths': ['https://www.google.com/'], '_drv': '', '_root': '', '_tail_cached': ['https:', 'www.google.com'], '_str': 'https:/www.google.com'})
|
1861
|
-
__hash__ :
|
1866
|
+
__hash__ : 9086608281243295535
|
1862
1867
|
__init__ : None
|
1863
1868
|
__init_subclass__ : None
|
1864
1869
|
__module__ : pathlib
|
@@ -1870,7 +1875,7 @@ Output:
|
|
1870
1875
|
__subclasshook__ : NotImplemented
|
1871
1876
|
_drv :
|
1872
1877
|
_flavour : <module 'posixpath' (frozen)>
|
1873
|
-
_hash :
|
1878
|
+
_hash : 9086608281243295535
|
1874
1879
|
_lines : https:
|
1875
1880
|
www.google.com
|
1876
1881
|
_lines_cached : https:
|
@@ -1904,7 +1909,7 @@ _parts_normcase_cached : ['https:', 'www.google.com']
|
|
1904
1909
|
is_reserved : False
|
1905
1910
|
is_socket : False
|
1906
1911
|
is_symlink : False
|
1907
|
-
iterdir : <generator object Path.iterdir at
|
1912
|
+
iterdir : <generator object Path.iterdir at 0x707b364040>
|
1908
1913
|
joinpath : .
|
1909
1914
|
name :
|
1910
1915
|
parent : https:/www.google.com
|
@@ -1915,7 +1920,7 @@ _parts_normcase_cached : ['https:', 'www.google.com']
|
|
1915
1920
|
stem :
|
1916
1921
|
suffix :
|
1917
1922
|
suffixes : []
|
1918
|
-
walk : <generator object Path.walk at
|
1923
|
+
walk : <generator object Path.walk at 0x707cad74c0>
|
1919
1924
|
with_segments : .
|
1920
1925
|
```
|
1921
1926
|
|
@@ -1957,7 +1962,7 @@ print(random_bool())
|
|
1957
1962
|
|
1958
1963
|
Output:
|
1959
1964
|
```py
|
1960
|
-
|
1965
|
+
True
|
1961
1966
|
```
|
1962
1967
|
|
1963
1968
|
## repath
|
@@ -1995,7 +2000,7 @@ x.cancel()
|
|
1995
2000
|
|
1996
2001
|
Output:
|
1997
2002
|
```py
|
1998
|
-
<Timer(Thread-2, started
|
2003
|
+
<Timer(Thread-2, started 483085069552)>
|
1999
2004
|
menghentikan timeout 7
|
2000
2005
|
```
|
2001
2006
|
|
@@ -2013,7 +2018,7 @@ print(list(sets_ordered(array)))
|
|
2013
2018
|
|
2014
2019
|
Output:
|
2015
2020
|
```py
|
2016
|
-
<generator object sets_ordered at
|
2021
|
+
<generator object sets_ordered at 0x707b3646c0>
|
2017
2022
|
[2, 3, 12, 42, 1, 43, 41, 4, 24, 32]
|
2018
2023
|
```
|
2019
2024
|
|
@@ -2135,15 +2140,15 @@ print(ExampleComparePerformance().compare_performance())
|
|
2135
2140
|
|
2136
2141
|
Output:
|
2137
2142
|
```py
|
2138
|
-
{'a': <generator object ExampleComparePerformance.a.<locals>.<genexpr> at
|
2143
|
+
{'a': <generator object ExampleComparePerformance.a.<locals>.<genexpr> at 0x707b324580>,
|
2139
2144
|
'b': (0, 1, 2, 3, 4, 5, 6, 7, 8, 9),
|
2140
2145
|
'c': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
|
2141
2146
|
'd': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]}
|
2142
|
-
{'a':
|
2143
|
-
{'a':
|
2144
|
-
{'a':
|
2145
|
-
{'a':
|
2146
|
-
{'a':
|
2147
|
+
{'a': 100, 'b': 221, 'c': 114, 'd': 159}
|
2148
|
+
{'a': 103, 'b': 191, 'c': 100, 'd': 168}
|
2149
|
+
{'a': 100, 'b': 183, 'c': 101, 'd': 171}
|
2150
|
+
{'a': 99, 'b': 185, 'c': 103, 'd': 167}
|
2151
|
+
{'a': 101, 'b': 186, 'c': 99, 'd': 171}
|
2147
2152
|
```
|
2148
2153
|
|
2149
2154
|
## PintUregQuantity
|
@@ -93,7 +93,7 @@ pypipr/tiles.py,sha256=uSEYqvjBQHIz7pZKtdta1XwFhGrMFieMHOH2DKrlcXc,328
|
|
93
93
|
pypipr/to_str.py,sha256=vSuspf-ZQldf4enkssa9XH0WMjkmWug51G9ia0K5occ,597
|
94
94
|
pypipr/traceback_filename.py,sha256=4o85J0N8clI0cM6NTGcKZ4zxR9yS7W2NS_bz3J2_PnY,288
|
95
95
|
pypipr/traceback_framename.py,sha256=_mullrAZzMhBFEFVCgdsmkYQmYUkd58o-J-HuMntKyc,291
|
96
|
-
pypipr-1.0.
|
97
|
-
pypipr-1.0.
|
98
|
-
pypipr-1.0.
|
99
|
-
pypipr-1.0.
|
96
|
+
pypipr-1.0.181.dist-info/METADATA,sha256=mtZX9BtrGxEVhkvvAwSzjGFLEVYb-FSHytvzXc945xU,58153
|
97
|
+
pypipr-1.0.181.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
98
|
+
pypipr-1.0.181.dist-info/entry_points.txt,sha256=XEBtOa61BCVW4cVvoqYQnyTcenJ1tzFFB09YnuqlKBY,51
|
99
|
+
pypipr-1.0.181.dist-info/RECORD,,
|
File without changes
|
File without changes
|