pypipr 1.0.139__py3-none-any.whl → 1.0.141__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/__init__.py +3 -0
- pypipr/print_to_last_line.py +4 -3
- pypipr/traceback_filename.py +13 -0
- pypipr/traceback_framename.py +13 -0
- {pypipr-1.0.139.dist-info → pypipr-1.0.141.dist-info}/METADATA +219 -213
- {pypipr-1.0.139.dist-info → pypipr-1.0.141.dist-info}/RECORD +8 -6
- {pypipr-1.0.139.dist-info → pypipr-1.0.141.dist-info}/WHEEL +0 -0
- {pypipr-1.0.139.dist-info → pypipr-1.0.141.dist-info}/entry_points.txt +0 -0
pypipr/__init__.py
CHANGED
@@ -77,6 +77,8 @@ from .sqlite_get_data_table import sqlite_get_data_table
|
|
77
77
|
from .str_cmp import str_cmp
|
78
78
|
from .text_colorize import text_colorize
|
79
79
|
from .to_str import to_str
|
80
|
+
from .traceback_filename import traceback_filename
|
81
|
+
from .traceback_framename import traceback_framename
|
80
82
|
import asyncio
|
81
83
|
import colorama
|
82
84
|
import csv
|
@@ -103,6 +105,7 @@ import sys
|
|
103
105
|
import textwrap
|
104
106
|
import threading
|
105
107
|
import time
|
108
|
+
import traceback
|
106
109
|
import tzdata
|
107
110
|
import uuid
|
108
111
|
import webbrowser
|
pypipr/print_to_last_line.py
CHANGED
@@ -3,9 +3,10 @@ def print_to_last_line(text: str, latest=1, clear=True):
|
|
3
3
|
Melakukan print ke konsol tetapi akan menimpa baris terakhir.
|
4
4
|
Berguna untuk memberikan progress secara interaktif.
|
5
5
|
|
6
|
-
```
|
7
|
-
|
8
|
-
|
6
|
+
```python
|
7
|
+
for i in range(5):
|
8
|
+
print(str(i) * 10)
|
9
|
+
print_to_last_line(f" === last ===")
|
9
10
|
```
|
10
11
|
"""
|
11
12
|
t = ""
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import traceback
|
2
|
+
|
3
|
+
|
4
|
+
def traceback_filename():
|
5
|
+
"""
|
6
|
+
Mendapatkan filename dimana fungsi yg memanggil
|
7
|
+
fungsi dimana fungsi ini diletakkan dipanggil.
|
8
|
+
|
9
|
+
```py
|
10
|
+
print(traceback_filename())
|
11
|
+
```
|
12
|
+
"""
|
13
|
+
return traceback.extract_stack()[-3].filename
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import traceback
|
2
|
+
|
3
|
+
|
4
|
+
def traceback_framename():
|
5
|
+
"""
|
6
|
+
Mendapatkan frame name dimana fungsi yg memanggil
|
7
|
+
fungsi dimana fungsi ini diletakan ini dipanggil.
|
8
|
+
|
9
|
+
```py
|
10
|
+
print(traceback_framename())
|
11
|
+
```
|
12
|
+
"""
|
13
|
+
return traceback.extract_stack()[-3].name
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pypipr
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.141
|
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 0x7d7a623940>
|
252
|
+
<generator object int_range at 0x7d7a623940>
|
253
253
|
[13, 12, 11, 10, 9, 8, 7, 6]
|
254
254
|
[2, 5, 8]
|
255
255
|
[2, 5, 8]
|
@@ -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 0x7d7a6ad480>
|
285
285
|
['Urutan 1 dan 10 dan j dan Z saja.', 'Urutan 1 dan 10 dan j dan K saja.', 'Urutan 4 dan 10 dan j dan Z saja.', 'Urutan 4 dan 10 dan j dan K 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 0x7d7a6b6110>
|
339
339
|
[('1 m ** 1', <Quantity(1, 'meter')>), ('1 m ** 2', <Quantity(1, 'meter ** 2')>), ('2 m ** 1', <Quantity(2, 'meter')>), ('2 m ** 2', <Quantity(2, 'meter ** 2')>), ('3 m ** 1', <Quantity(3, 'meter')>), ('3 m ** 2', <Quantity(3, 'meter ** 2')>), ('4 m ** 1', <Quantity(4, 'meter')>), ('4 m ** 2', <Quantity(4, 'meter ** 2')>), ('5 m ** 1', <Quantity(5, 'meter')>), ('5 m ** 2', <Quantity(5, 'meter ** 2')>), ('6 m ** 1', <Quantity(6, 'meter')>), ('6 m ** 2', <Quantity(6, 'meter ** 2')>), ('7 m ** 1', <Quantity(7, 'meter')>), ('7 m ** 2', <Quantity(7, 'meter ** 2')>), ('8 m ** 1', <Quantity(8, 'meter')>), ('8 m ** 2', <Quantity(8, 'meter ** 2')>), ('9 m ** 1', <Quantity(9, 'meter')>), ('9 m ** 2', <Quantity(9, 'meter ** 2')>)]
|
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 0x7d7a623a40>
|
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
|
-
2024-05-
|
496
|
-
2024-05-
|
497
|
-
2024-05-
|
495
|
+
2024-05-25 11:45:23.044774+07:00
|
496
|
+
2024-05-25 04:45:23.045852+00:00
|
497
|
+
2024-05-24 21:45:23.049871-07:00
|
498
498
|
```
|
499
499
|
|
500
500
|
## dict_first
|
@@ -600,7 +600,7 @@ iprint(filter_empty(var))
|
|
600
600
|
|
601
601
|
Output:
|
602
602
|
```py
|
603
|
-
<generator object filter_empty at
|
603
|
+
<generator object filter_empty at 0x7d7a6b5e40>
|
604
604
|
[1, '0', True, {}, ['eee']]
|
605
605
|
```
|
606
606
|
|
@@ -647,8 +647,8 @@ print(list(get_class_method(ExampleGetClassMethod)))
|
|
647
647
|
|
648
648
|
Output:
|
649
649
|
```py
|
650
|
-
<generator object get_class_method at
|
651
|
-
[<function ExampleGetClassMethod.a at
|
650
|
+
<generator object get_class_method at 0x7d7a6b63e0>
|
651
|
+
[<function ExampleGetClassMethod.a at 0x7d7a6f3060>, <function ExampleGetClassMethod.b at 0x7d7a6f2fc0>, <function ExampleGetClassMethod.c at 0x7d7a6f31a0>, <function ExampleGetClassMethod.d at 0x7d7a6f3240>]
|
652
652
|
```
|
653
653
|
|
654
654
|
## get_filesize
|
@@ -866,6 +866,9 @@ Output:
|
|
866
866
|
'threading',
|
867
867
|
'time',
|
868
868
|
'to_str',
|
869
|
+
'traceback',
|
870
|
+
'traceback_filename',
|
871
|
+
'traceback_framename',
|
869
872
|
'tzdata',
|
870
873
|
'uuid',
|
871
874
|
'webbrowser',
|
@@ -1061,7 +1064,7 @@ Output:
|
|
1061
1064
|
|
1062
1065
|
## ienumerate
|
1063
1066
|
|
1064
|
-
`ienumerate(iterator, start=0, key=<function int_to_int at
|
1067
|
+
`ienumerate(iterator, start=0, key=<function int_to_int at 0x7d882bb9c0>)`
|
1065
1068
|
|
1066
1069
|
meningkatkan fungsi enumerate() pada python
|
1067
1070
|
untuk key menggunakan huruf dan basis angka lainnya.
|
@@ -1074,7 +1077,7 @@ iprint(ienumerate(it, key=int_to_chr))
|
|
1074
1077
|
|
1075
1078
|
Output:
|
1076
1079
|
```py
|
1077
|
-
<generator object ienumerate at
|
1080
|
+
<generator object ienumerate at 0x7d7a6b64d0>
|
1078
1081
|
[('a', 'ini'), ('b', 'contoh'), ('c', 'enumerator')]
|
1079
1082
|
```
|
1080
1083
|
|
@@ -1141,7 +1144,7 @@ print(ijoin(10, ' '))
|
|
1141
1144
|
|
1142
1145
|
Output:
|
1143
1146
|
```py
|
1144
|
-
|
1147
|
+
qweqw, asd, dfs, weq
|
1145
1148
|
,ini,path,seperti,url,
|
1146
1149
|
ini,path,seperti,url
|
1147
1150
|
<li>satu</li>
|
@@ -1186,95 +1189,62 @@ pprint.pprint(iloads_html(iopen("https://harga-emas.org/1-gram/")), depth=10)
|
|
1186
1189
|
Output:
|
1187
1190
|
```py
|
1188
1191
|
(['Home', 'Emas 1 Gram', 'History', 'Trend', 'Perak 1 Gram', 'Pluang'],
|
1189
|
-
[['Harga Emas Hari Ini -
|
1190
|
-
['Spot Emas USD
|
1191
|
-
'Kurs IDR16.
|
1192
|
-
'Emas IDR
|
1193
|
-
['LM Antam (Jual)
|
1194
|
-
'LM Antam (Beli)↑1.223.000 (+8.000) / gr']],
|
1192
|
+
[['Harga Emas Hari Ini - Sabtu, 25 Mei 2024'],
|
1193
|
+
['Spot Emas USD↓2.334,20 (-0,64) / oz',
|
1194
|
+
'Kurs IDR16.024,00 / USD',
|
1195
|
+
'Emas IDR↓1.202.541 (-330) / gr'],
|
1196
|
+
['LM Antam (Jual)1.325.000 / gr', 'LM Antam (Beli)1.211.000 / gr']],
|
1195
1197
|
[['Harga Emas Hari Ini'],
|
1196
1198
|
['Gram', 'Gedung Antam Jakarta', 'Pegadaian'],
|
1197
1199
|
['per Gram (Rp)', 'per Batangan (Rp)', 'per Gram (Rp)', 'per Batangan (Rp)'],
|
1198
1200
|
['1000',
|
1199
|
-
'1.
|
1200
|
-
'1.
|
1201
|
+
'1.266',
|
1202
|
+
'1.265.600',
|
1201
1203
|
'1.043.040 (+8.200)',
|
1202
1204
|
'1.043.040.000 (+8.200.000)'],
|
1203
1205
|
['500',
|
1204
|
-
'2.
|
1205
|
-
'1.
|
1206
|
+
'2.531',
|
1207
|
+
'1.265.640',
|
1206
1208
|
'1.043.082 (+8.200)',
|
1207
1209
|
'521.541.000 (+4.100.000)'],
|
1208
1210
|
['250',
|
1209
|
-
'5.
|
1210
|
-
'1.
|
1211
|
+
'5.064',
|
1212
|
+
'1.266.060',
|
1211
1213
|
'1.043.512 (+8.200)',
|
1212
1214
|
'260.878.000 (+2.050.000)'],
|
1213
1215
|
['100',
|
1214
|
-
'12.
|
1215
|
-
'1.
|
1216
|
+
'12.671',
|
1217
|
+
'1.267.120',
|
1216
1218
|
'1.044.600 (+8.200)',
|
1217
1219
|
'104.460.000 (+820.000)'],
|
1218
|
-
['50',
|
1219
|
-
|
1220
|
-
|
1221
|
-
|
1222
|
-
|
1223
|
-
['
|
1224
|
-
|
1225
|
-
|
1226
|
-
|
1227
|
-
'
|
1228
|
-
['10',
|
1229
|
-
'128.150 (+800)',
|
1230
|
-
'1.281.500 (+8.000)',
|
1231
|
-
'1.052.200 (+8.200)',
|
1232
|
-
'10.522.000 (+82.000)'],
|
1233
|
-
['5',
|
1234
|
-
'257.400 (+1.600)',
|
1235
|
-
'1.287.000 (+8.000)',
|
1236
|
-
'1.057.800 (+8.200)',
|
1237
|
-
'5.289.000 (+41.000)'],
|
1238
|
-
['3',
|
1239
|
-
'431.222 (+2.667)',
|
1240
|
-
'1.293.667 (+8.000)',
|
1241
|
-
'1.064.667 (+8.000)',
|
1242
|
-
'3.194.000 (+24.000)'],
|
1243
|
-
['2',
|
1244
|
-
'651.000 (+4.000)',
|
1245
|
-
'1.302.000 (+8.000)',
|
1246
|
-
'1.073.500 (+8.500)',
|
1247
|
-
'2.147.000 (+17.000)'],
|
1248
|
-
['1',
|
1249
|
-
'1.332.000 (+8.000)',
|
1250
|
-
'1.332.000 (+8.000)',
|
1251
|
-
'1.104.000 (+8.000)',
|
1252
|
-
'1.104.000 (+8.000)'],
|
1253
|
-
['0.5',
|
1254
|
-
'2.864.000 (+16.000)',
|
1255
|
-
'1.432.000 (+8.000)',
|
1256
|
-
'1.208.000 (+8.000)',
|
1257
|
-
'604.000 (+4.000)'],
|
1258
|
-
['Update harga LM Antam :15 Mei 2024, pukul 08:33Harga pembelian kembali '
|
1259
|
-
':Rp. 1.223.000/gram (+8.000)',
|
1220
|
+
['50', '25.358', '1.267.900', '1.045.400 (+8.200)', '52.270.000 (+410.000)'],
|
1221
|
+
['25', '50.779', '1.269.480', '1.047.040 (+8.200)', '26.176.000 (+205.000)'],
|
1222
|
+
['10', '127.450', '1.274.500', '1.052.200 (+8.200)', '10.522.000 (+82.000)'],
|
1223
|
+
['5', '256.000', '1.280.000', '1.057.800 (+8.200)', '5.289.000 (+41.000)'],
|
1224
|
+
['3', '428.889', '1.286.667', '1.064.667 (+8.000)', '3.194.000 (+24.000)'],
|
1225
|
+
['2', '647.500', '1.295.000', '1.073.500 (+8.500)', '2.147.000 (+17.000)'],
|
1226
|
+
['1', '1.325.000', '1.325.000', '1.104.000 (+8.000)', '1.104.000 (+8.000)'],
|
1227
|
+
['0.5', '2.850.000', '1.425.000', '1.208.000 (+8.000)', '604.000 (+4.000)'],
|
1228
|
+
['Update harga LM Antam :25 Mei 2024, pukul 08:25Harga pembelian kembali '
|
1229
|
+
':Rp. 1.211.000/gram',
|
1260
1230
|
'Update harga LM Pegadaian :31 Agustus 2023']],
|
1261
|
-
[['Spot Harga Emas Hari Ini (Market
|
1231
|
+
[['Spot Harga Emas Hari Ini (Market Close)'],
|
1262
1232
|
['Satuan', 'USD', 'Kurs\xa0Dollar', 'IDR'],
|
1263
|
-
['Ounce\xa0(oz)', '2.
|
1264
|
-
['Gram\xa0(gr)', '
|
1265
|
-
['Kilogram\xa0(kg)', '
|
1266
|
-
['Update harga emas :
|
1233
|
+
['Ounce\xa0(oz)', '2.334,20 (-0,64)', '16.024,00', '37.403.221'],
|
1234
|
+
['Gram\xa0(gr)', '75,05', '16.024,00', '1.202.541 (-330)'],
|
1235
|
+
['Kilogram\xa0(kg)', '75.046,27', '16.024,00', '1.202.541.474'],
|
1236
|
+
['Update harga emas :25 Mei 2024, pukul 11:45Update kurs :24 Mei 2024, pukul '
|
1267
1237
|
'13:10']],
|
1268
1238
|
[['Gram', 'UBS Gold 99.99%'],
|
1269
1239
|
['Jual', 'Beli'],
|
1270
1240
|
['/ Batang', '/ Gram', '/ Batang', '/ Gram'],
|
1271
|
-
['100', '
|
1272
|
-
['50', '63.
|
1273
|
-
['25', '31.
|
1274
|
-
['10', '12.
|
1275
|
-
['5', '6.
|
1276
|
-
['1', '1.
|
1277
|
-
['', 'Update :
|
1241
|
+
['100', '126.300.000', '1.263.000', '124.285.000', '1.242.850'],
|
1242
|
+
['50', '63.300.000', '1.266.000', '62.195.000', '1.243.900'],
|
1243
|
+
['25', '31.700.000', '1.268.000', '31.200.000', '1.248.000'],
|
1244
|
+
['10', '12.720.000', '1.272.000', '12.530.000', '1.253.000'],
|
1245
|
+
['5', '6.385.000', '1.277.000', '6.317.000', '1.263.400'],
|
1246
|
+
['1', '1.325.000', '1.325.000', '1.296.000', '1.296.000'],
|
1247
|
+
['', 'Update :24 Mei 2024, pukul 11:40']],
|
1278
1248
|
[['Konversi Satuan'],
|
1279
1249
|
['Satuan', 'Ounce (oz)', 'Gram (gr)', 'Kilogram (kg)'],
|
1280
1250
|
['Ounce\xa0(oz)', '1', '31,1034767696', '0,0311034768'],
|
@@ -1284,37 +1254,37 @@ Output:
|
|
1284
1254
|
['Waktu', 'Emas'],
|
1285
1255
|
['Unit', 'USD', 'IDR'],
|
1286
1256
|
['Angka', '+/-', 'Angka', '+/-'],
|
1287
|
-
['Hari Ini', 'Kurs', '', '', '16.
|
1288
|
-
['oz', '2.
|
1289
|
-
['gr', '
|
1290
|
-
['30 Hari', 'Kurs', '', '', '
|
1291
|
-
['oz', '2.
|
1292
|
-
['gr', '
|
1293
|
-
['2 Bulan', 'Kurs', '', '', '15.
|
1294
|
-
['oz', '2.
|
1295
|
-
['gr', '
|
1296
|
-
['6 Bulan', 'Kurs', '', '', '15.
|
1297
|
-
['oz', '
|
1298
|
-
['gr', '63
|
1299
|
-
['1 Tahun', 'Kurs', '', '', '15.731', '+
|
1300
|
-
['oz', '1.823,86', '+
|
1301
|
-
['gr', '58,64', '+
|
1302
|
-
['2 Tahun', 'Kurs', '', '', '14.
|
1303
|
-
['oz', '1.
|
1304
|
-
['gr', '
|
1305
|
-
['3 Tahun', 'Kurs', '', '', '14.
|
1306
|
-
['oz', '1.
|
1307
|
-
['gr', '
|
1308
|
-
['5 Tahun', 'Kurs', '', '', '14.
|
1309
|
-
['oz', '1.
|
1310
|
-
['gr', '41,
|
1257
|
+
['Hari Ini', 'Kurs', '', '', '16.024', '%'],
|
1258
|
+
['oz', '2.334,84', '-0,64-0,03%', '37.413.476', '-10.255-0,03%'],
|
1259
|
+
['gr', '75,07', '-0,02-0,03%', '1.202.871', '-330-0,03%'],
|
1260
|
+
['30 Hari', 'Kurs', '', '', '16.161', '-137-0,85%'],
|
1261
|
+
['oz', '2.329,41', '+4,79+0,21%', '37.645.595', '-242.374-0,64%'],
|
1262
|
+
['gr', '74,89', '+0,15+0,21%', '1.210.334', '-7.793-0,64%'],
|
1263
|
+
['2 Bulan', 'Kurs', '', '', '15.795', '+229+1,45%'],
|
1264
|
+
['oz', '2.177,78', '+156,42+7,18%', '34.398.035', '+3.005.186+8,74%'],
|
1265
|
+
['gr', '70,02', '+5,03+7,18', '1.105.923', '+96.619+8,74%'],
|
1266
|
+
['6 Bulan', 'Kurs', '', '', '15.587', '+437+2,80%'],
|
1267
|
+
['oz', '2.010,31', '+323,89+16,11%', '31.334.702', '+6.068.519+19,37%'],
|
1268
|
+
['gr', '64,63', '+10,41+16,11%', '1.007.434', '+195.107+19,37%'],
|
1269
|
+
['1 Tahun', 'Kurs', '', '', '15.731', '+293+1,86%'],
|
1270
|
+
['oz', '1.823,86', '+510,34+27,98%', '28.691.142', '+8.712.079+30,37%'],
|
1271
|
+
['gr', '58,64', '+16,41+27,98%', '922.442', '+280.100+30,37%'],
|
1272
|
+
['2 Tahun', 'Kurs', '', '', '14.653', '+1.371+9,36%'],
|
1273
|
+
['oz', '1.846,77', '+487,43+26,39%', '27.060.739', '+10.342.482+38,22%'],
|
1274
|
+
['gr', '59,38', '+15,67+26,39%', '870.023', '+332.519+38,22%'],
|
1275
|
+
['3 Tahun', 'Kurs', '', '', '14.362', '+1.662+11,57%'],
|
1276
|
+
['oz', '1.902,81', '+431,39+22,67%', '27.328.157', '+10.075.064+36,87%'],
|
1277
|
+
['gr', '61,18', '+13,87+22,67%', '878.621', '+323.921+36,87%'],
|
1278
|
+
['5 Tahun', 'Kurs', '', '', '14.360', '+1.664+11,59%'],
|
1279
|
+
['oz', '1.285,23', '+1.048,97+81,62%', '18.455.903', '+18.947.318+102,66%'],
|
1280
|
+
['gr', '41,32', '+33,73+81,62%', '593.371', '+609.170+102,66%']])
|
1311
1281
|
(['Home', 'Emas 1 Gram', 'History', 'Trend', 'Perak 1 Gram', 'Pluang'],
|
1312
1282
|
[[''],
|
1313
1283
|
['Emas 24 KaratHarga Emas 1 Gram', ''],
|
1314
|
-
['USD', '
|
1315
|
-
['KURS', '
|
1316
|
-
['IDR', '1.
|
1317
|
-
['
|
1284
|
+
['USD', '75,05↓', '-0,02-0,03%'],
|
1285
|
+
['KURS', '16.045,00↑', '+12,60+0,08%'],
|
1286
|
+
['IDR', '1.204.117,45↑', '+615,70+0,05%'],
|
1287
|
+
['Sabtu, 25 Mei 2024 11:45']],
|
1318
1288
|
[[''],
|
1319
1289
|
['Emas 1 Gram (IDR)Emas 1 Gram (USD)Kurs USD-IDR',
|
1320
1290
|
'Hari Ini',
|
@@ -1325,19 +1295,19 @@ Output:
|
|
1325
1295
|
'']],
|
1326
1296
|
[['Pergerakkan Harga Emas 1 Gram'],
|
1327
1297
|
['', 'Penutupan Kemarin', 'Pergerakkan Hari Ini', 'Rata-rata'],
|
1328
|
-
['USD', '
|
1329
|
-
['KURS', '
|
1330
|
-
['IDR', '1.
|
1298
|
+
['USD', '75,07', '75,05 - 75,07', '75,06'],
|
1299
|
+
['KURS', '16.032,40', '16.032,40 - 16.045,00', '16.038,70'],
|
1300
|
+
['IDR', '1.203.501,75', '1.203.501,75 - 1.204.117,45', '1.203.809,60'],
|
1331
1301
|
[''],
|
1332
1302
|
['', 'Awal Tahun', 'Pergerakkan YTD', '+/- YTD'],
|
1333
|
-
['USD', '66,32', '64,07 - 77,
|
1334
|
-
['KURS', '15.390,10', '15.390,00 - 16.307,80', '+
|
1335
|
-
['IDR', '1.020.729,53', '997.660,12 - 1.256.829,06', '+
|
1303
|
+
['USD', '66,32', '64,07 - 77,97', '+8,73 (13,16%)'],
|
1304
|
+
['KURS', '15.390,10', '15.390,00 - 16.307,80', '+654,90 (4,26%)'],
|
1305
|
+
['IDR', '1.020.729,53', '997.660,12 - 1.256.829,06', '+183.387,92 (17,97%)'],
|
1336
1306
|
[''],
|
1337
1307
|
['', 'Tahun Lalu / 52 Minggu', 'Pergerakkan 52 Minggu', '+/- 52 Minggu'],
|
1338
|
-
['USD', '
|
1339
|
-
['KURS', '14.
|
1340
|
-
['IDR', '
|
1308
|
+
['USD', '63,01', '58,43 - 77,97', '+12,04 (19,11%)'],
|
1309
|
+
['KURS', '14.942,00', '14.833,15 - 16.307,80', '+1.103,00 (7,38%)'],
|
1310
|
+
['IDR', '941.495,39', '912.925,68 - 1.256.829,06', '+262.622,06 (27,89%)']])
|
1341
1311
|
```
|
1342
1312
|
|
1343
1313
|
## iloads
|
@@ -1467,7 +1437,7 @@ Output:
|
|
1467
1437
|
```py
|
1468
1438
|
8
|
1469
1439
|
['mana', 'aja']
|
1470
|
-
[<Element a at
|
1440
|
+
[<Element a at 0x7d7a6fe8f0>, <Element a at 0x7d7a204960>, <Element a at 0x7d7a204a00>, <Element a at 0x7d7a204a50>, <Element a at 0x7d7a204aa0>, <Element a at 0x7d7a204af0>, <Element a at 0x7d7a204b40>, <Element a at 0x7d7a204b90>, <Element a at 0x7d7a204be0>, <Element a at 0x7d7a204c30>, <Element a at 0x7d7a204c80>, <Element a at 0x7d7a204cd0>, <Element a at 0x7d7a204d20>, <Element a at 0x7d7a204d70>, <Element a at 0x7d7a204dc0>, <Element a at 0x7d7a204e10>, <Element a at 0x7d7a204e60>, <Element a at 0x7d7a204eb0>]
|
1471
1441
|
False
|
1472
1442
|
```
|
1473
1443
|
|
@@ -1529,7 +1499,7 @@ print(list(iscandir("./", recursive=False, scan_file=False)))
|
|
1529
1499
|
|
1530
1500
|
Output:
|
1531
1501
|
```py
|
1532
|
-
<generator object iscandir at
|
1502
|
+
<generator object iscandir at 0x7d7a623b40>
|
1533
1503
|
[PosixPath('.git'), PosixPath('.vscode'), PosixPath('pypipr'), PosixPath('__pycache__'), PosixPath('dist')]
|
1534
1504
|
```
|
1535
1505
|
|
@@ -1562,84 +1532,86 @@ iprint(ivars(__import__('pypipr')))
|
|
1562
1532
|
|
1563
1533
|
Output:
|
1564
1534
|
```py
|
1565
|
-
{'function': {'avg': <function avg at
|
1566
|
-
'get_filemtime': <function get_filemtime at
|
1567
|
-
'print_colorize': <function print_colorize at
|
1568
|
-
'print_log': <function print_log at
|
1569
|
-
'console_run': <function console_run at
|
1570
|
-
'auto_reload': <function auto_reload at
|
1571
|
-
'basename': <function basename at
|
1572
|
-
'chr_to_int': <function chr_to_int at
|
1573
|
-
'int_to_chr': <function int_to_chr at
|
1574
|
-
'irange': <function irange at
|
1575
|
-
'batchmaker': <function batchmaker at
|
1576
|
-
'calculate': <function calculate at
|
1577
|
-
'batch_calculate': <function batch_calculate at
|
1578
|
-
'bin_to_int': <function bin_to_int at
|
1579
|
-
'is_empty': <function is_empty at
|
1580
|
-
'exit_if_empty': <function exit_if_empty at
|
1581
|
-
'input_char': <function input_char at
|
1582
|
-
'choices': <function choices at
|
1583
|
-
'chunk_array': <function chunk_array at
|
1584
|
-
'create_folder': <function create_folder at
|
1585
|
-
'datetime_from_string': <function datetime_from_string at
|
1586
|
-
'datetime_now': <function datetime_now at
|
1587
|
-
'dict_first': <function dict_first at
|
1588
|
-
'dirname': <function dirname at
|
1589
|
-
'is_iterable': <function is_iterable at
|
1590
|
-
'to_str': <function to_str at
|
1591
|
-
'filter_empty': <function filter_empty at
|
1592
|
-
'get_by_index': <function get_by_index at
|
1593
|
-
'get_class_method': <function get_class_method at
|
1594
|
-
'get_filesize': <function get_filesize at
|
1595
|
-
'github_init': <function github_init at
|
1596
|
-
'github_pull': <function github_pull at
|
1597
|
-
'github_push': <function github_push at
|
1598
|
-
'github_user': <function github_user at
|
1599
|
-
'hex_to_int': <function hex_to_int at
|
1600
|
-
'iargv': <function iargv at
|
1601
|
-
'idir': <function idir at
|
1602
|
-
'idumps_html': <function idumps_html at
|
1603
|
-
'idumps': <function idumps at
|
1604
|
-
'int_to_int': <function int_to_int at
|
1605
|
-
'ienumerate': <function ienumerate at
|
1606
|
-
'ienv': <function ienv at
|
1607
|
-
'iexec': <function iexec at
|
1608
|
-
'ijoin': <function ijoin at
|
1609
|
-
'iloads_html': <function iloads_html at
|
1610
|
-
'iloads': <function iloads at
|
1611
|
-
'int_to_bin': <function int_to_bin at
|
1612
|
-
'int_to_hex': <function int_to_hex at
|
1613
|
-
'int_to_oct': <function int_to_oct at
|
1614
|
-
'is_valid_url': <function is_valid_url at
|
1615
|
-
'iopen': <function iopen at
|
1616
|
-
'iprint': <function iprint at
|
1617
|
-
'ireplace': <function ireplace at
|
1618
|
-
'iscandir': <function iscandir at
|
1619
|
-
'isplit': <function isplit at
|
1620
|
-
'ivars': <function ivars at
|
1621
|
-
'log': <function log at
|
1622
|
-
'oct_to_int': <function oct_to_int at
|
1623
|
-
'password_generator': <function password_generator at
|
1624
|
-
'pip_freeze_without_version': <function pip_freeze_without_version at
|
1625
|
-
'poetry_publish': <function poetry_publish at
|
1626
|
-
'poetry_update_version': <function poetry_update_version at
|
1627
|
-
'print_dir': <function print_dir at
|
1628
|
-
'print_to_last_line': <function print_to_last_line at
|
1629
|
-
'random_bool': <function random_bool at
|
1630
|
-
'restart': <function restart at
|
1631
|
-
'set_timeout': <function set_timeout at
|
1632
|
-
'sets_ordered': <function sets_ordered at
|
1633
|
-
'sqlite_delete_table': <function sqlite_delete_table at
|
1634
|
-
'sqlite_get_all_tables': <function sqlite_get_all_tables at
|
1635
|
-
'sqlite_get_data_table': <function sqlite_get_data_table at
|
1636
|
-
'str_cmp': <function str_cmp at
|
1637
|
-
'text_colorize': <function text_colorize at
|
1535
|
+
{'function': {'avg': <function avg at 0x7d89fe0040>,
|
1536
|
+
'get_filemtime': <function get_filemtime at 0x7d88473060>,
|
1537
|
+
'print_colorize': <function print_colorize at 0x7d88473240>,
|
1538
|
+
'print_log': <function print_log at 0x7d88473100>,
|
1539
|
+
'console_run': <function console_run at 0x7d884731a0>,
|
1540
|
+
'auto_reload': <function auto_reload at 0x7d88d9cf40>,
|
1541
|
+
'basename': <function basename at 0x7d8840e980>,
|
1542
|
+
'chr_to_int': <function chr_to_int at 0x7d884737e0>,
|
1543
|
+
'int_to_chr': <function int_to_chr at 0x7d88473880>,
|
1544
|
+
'irange': <function irange at 0x7d88473b00>,
|
1545
|
+
'batchmaker': <function batchmaker at 0x7d884734c0>,
|
1546
|
+
'calculate': <function calculate at 0x7d88473600>,
|
1547
|
+
'batch_calculate': <function batch_calculate at 0x7d88473380>,
|
1548
|
+
'bin_to_int': <function bin_to_int at 0x7d88d9cea0>,
|
1549
|
+
'is_empty': <function is_empty at 0x7d884802c0>,
|
1550
|
+
'exit_if_empty': <function exit_if_empty at 0x7d88480180>,
|
1551
|
+
'input_char': <function input_char at 0x7d88480220>,
|
1552
|
+
'choices': <function choices at 0x7d88480540>,
|
1553
|
+
'chunk_array': <function chunk_array at 0x7d884805e0>,
|
1554
|
+
'create_folder': <function create_folder at 0x7d88480680>,
|
1555
|
+
'datetime_from_string': <function datetime_from_string at 0x7d88480720>,
|
1556
|
+
'datetime_now': <function datetime_now at 0x7d884800e0>,
|
1557
|
+
'dict_first': <function dict_first at 0x7d88482a20>,
|
1558
|
+
'dirname': <function dirname at 0x7d88482ac0>,
|
1559
|
+
'is_iterable': <function is_iterable at 0x7d88482ca0>,
|
1560
|
+
'to_str': <function to_str at 0x7d88482d40>,
|
1561
|
+
'filter_empty': <function filter_empty at 0x7d884732e0>,
|
1562
|
+
'get_by_index': <function get_by_index at 0x7d88482b60>,
|
1563
|
+
'get_class_method': <function get_class_method at 0x7d88482de0>,
|
1564
|
+
'get_filesize': <function get_filesize at 0x7d88482f20>,
|
1565
|
+
'github_init': <function github_init at 0x7d88482fc0>,
|
1566
|
+
'github_pull': <function github_pull at 0x7d88483060>,
|
1567
|
+
'github_push': <function github_push at 0x7d884831a0>,
|
1568
|
+
'github_user': <function github_user at 0x7d88483240>,
|
1569
|
+
'hex_to_int': <function hex_to_int at 0x7d884832e0>,
|
1570
|
+
'iargv': <function iargv at 0x7d88483380>,
|
1571
|
+
'idir': <function idir at 0x7d88483420>,
|
1572
|
+
'idumps_html': <function idumps_html at 0x7d88483b00>,
|
1573
|
+
'idumps': <function idumps at 0x7d88483560>,
|
1574
|
+
'int_to_int': <function int_to_int at 0x7d882bb9c0>,
|
1575
|
+
'ienumerate': <function ienumerate at 0x7d882ae020>,
|
1576
|
+
'ienv': <function ienv at 0x7d882bb6a0>,
|
1577
|
+
'iexec': <function iexec at 0x7d882bba60>,
|
1578
|
+
'ijoin': <function ijoin at 0x7d882bbba0>,
|
1579
|
+
'iloads_html': <function iloads_html at 0x7d882bbd80>,
|
1580
|
+
'iloads': <function iloads at 0x7d8a9e2020>,
|
1581
|
+
'int_to_bin': <function int_to_bin at 0x7d882bbb00>,
|
1582
|
+
'int_to_hex': <function int_to_hex at 0x7d882bbce0>,
|
1583
|
+
'int_to_oct': <function int_to_oct at 0x7d882bbe20>,
|
1584
|
+
'is_valid_url': <function is_valid_url at 0x7d880efba0>,
|
1585
|
+
'iopen': <function iopen at 0x7d882cc040>,
|
1586
|
+
'iprint': <function iprint at 0x7d880ef6a0>,
|
1587
|
+
'ireplace': <function ireplace at 0x7d880ef7e0>,
|
1588
|
+
'iscandir': <function iscandir at 0x7d881b49a0>,
|
1589
|
+
'isplit': <function isplit at 0x7d881b4a40>,
|
1590
|
+
'ivars': <function ivars at 0x7d881b4ae0>,
|
1591
|
+
'log': <function log at 0x7d881b4b80>,
|
1592
|
+
'oct_to_int': <function oct_to_int at 0x7d881b4c20>,
|
1593
|
+
'password_generator': <function password_generator at 0x7d881b4cc0>,
|
1594
|
+
'pip_freeze_without_version': <function pip_freeze_without_version at 0x7d881b4e00>,
|
1595
|
+
'poetry_publish': <function poetry_publish at 0x7d881b4ea0>,
|
1596
|
+
'poetry_update_version': <function poetry_update_version at 0x7d881b4fe0>,
|
1597
|
+
'print_dir': <function print_dir at 0x7d881b51c0>,
|
1598
|
+
'print_to_last_line': <function print_to_last_line at 0x7d881b5260>,
|
1599
|
+
'random_bool': <function random_bool at 0x7d881b5300>,
|
1600
|
+
'restart': <function restart at 0x7d881b53a0>,
|
1601
|
+
'set_timeout': <function set_timeout at 0x7d881b5440>,
|
1602
|
+
'sets_ordered': <function sets_ordered at 0x7d881b54e0>,
|
1603
|
+
'sqlite_delete_table': <function sqlite_delete_table at 0x7d881b5580>,
|
1604
|
+
'sqlite_get_all_tables': <function sqlite_get_all_tables at 0x7d881b5120>,
|
1605
|
+
'sqlite_get_data_table': <function sqlite_get_data_table at 0x7d881b5ee0>,
|
1606
|
+
'str_cmp': <function str_cmp at 0x7d881b5f80>,
|
1607
|
+
'text_colorize': <function text_colorize at 0x7d881b6020>,
|
1608
|
+
'traceback_filename': <function traceback_filename at 0x7d881b60c0>,
|
1609
|
+
'traceback_framename': <function traceback_framename at 0x7d881b6160>},
|
1638
1610
|
'class': {'ComparePerformance': <class 'pypipr.ComparePerformance.ComparePerformance'>,
|
1639
1611
|
'PintUregQuantity': <class 'pint.Quantity'>,
|
1640
1612
|
'RunParallel': <class 'pypipr.RunParallel.RunParallel'>},
|
1641
1613
|
'variable': {'LINUX': True,
|
1642
|
-
'PintUreg': <pint.registry.UnitRegistry object at
|
1614
|
+
'PintUreg': <pint.registry.UnitRegistry object at 0x7d89feeed0>,
|
1643
1615
|
'WINDOWS': False},
|
1644
1616
|
'module': {'asyncio': <module 'asyncio' from '/data/data/com.termux/files/usr/lib/python3.11/asyncio/__init__.py'>,
|
1645
1617
|
'colorama': <module 'colorama' from '/data/data/com.termux/files/home/.cache/pypoetry/virtualenvs/pypipr-ZoJyDxLL-py3.11/lib/python3.11/site-packages/colorama/__init__.py'>,
|
@@ -1667,6 +1639,7 @@ Output:
|
|
1667
1639
|
'textwrap': <module 'textwrap' from '/data/data/com.termux/files/usr/lib/python3.11/textwrap.py'>,
|
1668
1640
|
'threading': <module 'threading' from '/data/data/com.termux/files/usr/lib/python3.11/threading.py'>,
|
1669
1641
|
'time': <module 'time' (built-in)>,
|
1642
|
+
'traceback': <module 'traceback' from '/data/data/com.termux/files/usr/lib/python3.11/traceback.py'>,
|
1670
1643
|
'tzdata': <module 'tzdata' from '/data/data/com.termux/files/home/.cache/pypoetry/virtualenvs/pypipr-ZoJyDxLL-py3.11/lib/python3.11/site-packages/tzdata/__init__.py'>,
|
1671
1644
|
'uuid': <module 'uuid' from '/data/data/com.termux/files/usr/lib/python3.11/uuid.py'>,
|
1672
1645
|
'webbrowser': <module 'webbrowser' from '/data/data/com.termux/files/usr/lib/python3.11/webbrowser.py'>,
|
@@ -1729,7 +1702,7 @@ print(password_generator())
|
|
1729
1702
|
|
1730
1703
|
Output:
|
1731
1704
|
```py
|
1732
|
-
|
1705
|
+
0Sq1@_3r
|
1733
1706
|
```
|
1734
1707
|
|
1735
1708
|
## pip_freeze_without_version
|
@@ -1787,7 +1760,7 @@ Output:
|
|
1787
1760
|
__enter__ : https:/www.google.com
|
1788
1761
|
__fspath__ : https:/www.google.com
|
1789
1762
|
__getstate__ : (None, {'_drv': '', '_root': '', '_parts': ['https:', 'www.google.com'], '_str': 'https:/www.google.com'})
|
1790
|
-
__hash__ : -
|
1763
|
+
__hash__ : -3587593220110788256
|
1791
1764
|
__init__ : None
|
1792
1765
|
__init_subclass__ : None
|
1793
1766
|
__module__ : pathlib
|
@@ -1800,8 +1773,8 @@ Output:
|
|
1800
1773
|
_cached_cparts : ['https:', 'www.google.com']
|
1801
1774
|
_cparts : ['https:', 'www.google.com']
|
1802
1775
|
_drv :
|
1803
|
-
_flavour : <pathlib._PosixFlavour object at
|
1804
|
-
_hash : -
|
1776
|
+
_flavour : <pathlib._PosixFlavour object at 0x7d89e31550>
|
1777
|
+
_hash : -3587593220110788256
|
1805
1778
|
_parts : ['https:', 'www.google.com']
|
1806
1779
|
_root :
|
1807
1780
|
_str : https:/www.google.com
|
@@ -1823,7 +1796,7 @@ Output:
|
|
1823
1796
|
is_reserved : False
|
1824
1797
|
is_socket : False
|
1825
1798
|
is_symlink : False
|
1826
|
-
iterdir : <generator object Path.iterdir at
|
1799
|
+
iterdir : <generator object Path.iterdir at 0x7d7a6ab060>
|
1827
1800
|
joinpath : https:/www.google.com
|
1828
1801
|
name : www.google.com
|
1829
1802
|
parent : https:
|
@@ -1843,9 +1816,20 @@ Output:
|
|
1843
1816
|
Melakukan print ke konsol tetapi akan menimpa baris terakhir.
|
1844
1817
|
Berguna untuk memberikan progress secara interaktif.
|
1845
1818
|
|
1846
|
-
```
|
1847
|
-
|
1848
|
-
|
1819
|
+
```python
|
1820
|
+
for i in range(5):
|
1821
|
+
print(str(i) * 10)
|
1822
|
+
print_to_last_line(f" === last ===")
|
1823
|
+
```
|
1824
|
+
|
1825
|
+
Output:
|
1826
|
+
```py
|
1827
|
+
0000000000
|
1828
|
+
1111111111
|
1829
|
+
2222222222
|
1830
|
+
3333333333
|
1831
|
+
4444444444
|
1832
|
+
[1A[K === last ===
|
1849
1833
|
```
|
1850
1834
|
|
1851
1835
|
## random_bool
|
@@ -1863,7 +1847,7 @@ print(random_bool())
|
|
1863
1847
|
|
1864
1848
|
Output:
|
1865
1849
|
```py
|
1866
|
-
|
1850
|
+
True
|
1867
1851
|
```
|
1868
1852
|
|
1869
1853
|
## restart
|
@@ -1897,7 +1881,7 @@ x.cancel()
|
|
1897
1881
|
|
1898
1882
|
Output:
|
1899
1883
|
```py
|
1900
|
-
<Timer(Thread-2, started
|
1884
|
+
<Timer(Thread-2, started 538896743664)>
|
1901
1885
|
menghentikan timeout 7
|
1902
1886
|
```
|
1903
1887
|
|
@@ -1915,7 +1899,7 @@ print(list(sets_ordered(array)))
|
|
1915
1899
|
|
1916
1900
|
Output:
|
1917
1901
|
```py
|
1918
|
-
<generator object sets_ordered at
|
1902
|
+
<generator object sets_ordered at 0x7d7a709b10>
|
1919
1903
|
[2, 3, 12, 42, 1, 43, 41, 4, 24, 32]
|
1920
1904
|
```
|
1921
1905
|
|
@@ -1970,6 +1954,28 @@ text_colorize("Print some text")
|
|
1970
1954
|
text_colorize("Print some text", color=colorama.Fore.RED)
|
1971
1955
|
```
|
1972
1956
|
|
1957
|
+
## traceback_filename
|
1958
|
+
|
1959
|
+
`traceback_filename()`
|
1960
|
+
|
1961
|
+
Mendapatkan filename dimana fungsi yg memanggil
|
1962
|
+
fungsi dimana fungsi ini diletakkan dipanggil.
|
1963
|
+
|
1964
|
+
```py
|
1965
|
+
print(traceback_filename())
|
1966
|
+
```
|
1967
|
+
|
1968
|
+
## traceback_framename
|
1969
|
+
|
1970
|
+
`traceback_framename()`
|
1971
|
+
|
1972
|
+
Mendapatkan frame name dimana fungsi yg memanggil
|
1973
|
+
fungsi dimana fungsi ini diletakan ini dipanggil.
|
1974
|
+
|
1975
|
+
```py
|
1976
|
+
print(traceback_framename())
|
1977
|
+
```
|
1978
|
+
|
1973
1979
|
# CLASS
|
1974
1980
|
|
1975
1981
|
## ComparePerformance
|
@@ -2007,15 +2013,15 @@ print(ExampleComparePerformance().compare_performance())
|
|
2007
2013
|
|
2008
2014
|
Output:
|
2009
2015
|
```py
|
2010
|
-
{'a': <generator object ExampleComparePerformance.a.<locals>.<genexpr> at
|
2016
|
+
{'a': <generator object ExampleComparePerformance.a.<locals>.<genexpr> at 0x7d7a708d40>,
|
2011
2017
|
'b': (0, 1, 2, 3, 4, 5, 6, 7, 8, 9),
|
2012
2018
|
'c': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
|
2013
2019
|
'd': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]}
|
2014
|
-
{'a':
|
2015
|
-
{'a':
|
2016
|
-
{'a':
|
2017
|
-
{'a':
|
2018
|
-
{'a':
|
2020
|
+
{'a': 100, 'b': 115, 'c': 112, 'd': 171}
|
2021
|
+
{'a': 124, 'b': 128, 'c': 100, 'd': 177}
|
2022
|
+
{'a': 107, 'b': 124, 'c': 100, 'd': 157}
|
2023
|
+
{'a': 112, 'b': 129, 'c': 100, 'd': 154}
|
2024
|
+
{'a': 112, 'b': 124, 'c': 100, 'd': 147}
|
2019
2025
|
```
|
2020
2026
|
|
2021
2027
|
## PintUregQuantity
|
@@ -4,7 +4,7 @@ pypipr/PintUreg.py,sha256=_jmHZhUn8AcgFkXvZ6OTsWnjtp-CYcXUJ-dG_QdcARY,222
|
|
4
4
|
pypipr/PintUregQuantity.py,sha256=ErSZKB-GHShi1zKac30XgFdBwAUrxMo80IQzIjQ2HVc,118
|
5
5
|
pypipr/RunParallel.py,sha256=3H6sVSeUSATQQsWBcDGTtaXuc-12Yc0XmDyVtsg3PMA,5992
|
6
6
|
pypipr/WINDOWS.py,sha256=NMW-94lzdqwfEWv2lF_i2GcSHJFDwWjccFufpymg4-E,83
|
7
|
-
pypipr/__init__.py,sha256=
|
7
|
+
pypipr/__init__.py,sha256=xCFo9AQA5Weng8UxY7xfPOSsWFaRxn3rQlygPWskBXc,3416
|
8
8
|
pypipr/__terminal__.py,sha256=N_NEXa0V5QLb-dkP1Vp_fYKNjE4jGTqkiYNwPPOXZtw,1412
|
9
9
|
pypipr/auto_reload.py,sha256=FGchFBjQs_eT7CmOMLNYoch-17q7ySFOnPx5z1kbH3E,918
|
10
10
|
pypipr/avg.py,sha256=wUtX3x8dgLoODhQLyMB-HRMVo8Ha2yz3cp7lgcUNbr0,218
|
@@ -68,7 +68,7 @@ pypipr/poetry_update_version.py,sha256=iFA0DIz5_h7_v3PmWRzR5Ayu5h3ikNciTw_zI_3d3
|
|
68
68
|
pypipr/print_colorize.py,sha256=Ld4cjI9E7C8NDLCOkJLtwiV7WYBjizJ6dvmE__lN2GY,541
|
69
69
|
pypipr/print_dir.py,sha256=kO-YruOQ_gCaN7gsSXfcTbufWqAqtRemW8KrUqIijC8,919
|
70
70
|
pypipr/print_log.py,sha256=Oct2xfcMv_8iK2ySioQYrtlTYou6Cd671PqgPL9IGUE,282
|
71
|
-
pypipr/print_to_last_line.py,sha256=
|
71
|
+
pypipr/print_to_last_line.py,sha256=ym25h5MbjIaexcczDEGjNbr3dciS6_Vq8hFyMWo73PE,915
|
72
72
|
pypipr/random_bool.py,sha256=OkvQqpusHGc5mt2nHCycA7-s2I0gbN6UxI7opMOFppE,352
|
73
73
|
pypipr/restart.py,sha256=jUhsjZACAAcItYzCuiULHLFikoVyYDJWj16hCLARmAw,272
|
74
74
|
pypipr/set_timeout.py,sha256=heg1J3jSArgG5_75BNLrujjh7I9meTyAzHpuAY_4IBc,698
|
@@ -79,7 +79,9 @@ pypipr/sqlite_get_data_table.py,sha256=_GeaakCezPEmCB6cgTqgc1bKK_AMzjuxRGYZdOKA-
|
|
79
79
|
pypipr/str_cmp.py,sha256=2kavWiT4VTddXcBotF1CxDOWSygk5rFrbllKxBjw9dc,377
|
80
80
|
pypipr/text_colorize.py,sha256=IVjaCnXBSBu4Rh8pTO3CxDvxpA265HVwyKX_-PRXCcI,396
|
81
81
|
pypipr/to_str.py,sha256=vSuspf-ZQldf4enkssa9XH0WMjkmWug51G9ia0K5occ,597
|
82
|
-
pypipr
|
83
|
-
pypipr
|
84
|
-
pypipr-1.0.
|
85
|
-
pypipr-1.0.
|
82
|
+
pypipr/traceback_filename.py,sha256=AIdUWHD7tKl8pSP30vLIsqiPCgfzQxqdwQaT93BW7_0,265
|
83
|
+
pypipr/traceback_framename.py,sha256=zKtOUIxFX812-TUnRFvF5XLT2fUPEEbakapoOcmjaxQ,268
|
84
|
+
pypipr-1.0.141.dist-info/METADATA,sha256=uy_afATB94hcRTMADBsy1cltjUZL9-OTeeaalK6eRLc,55679
|
85
|
+
pypipr-1.0.141.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
86
|
+
pypipr-1.0.141.dist-info/entry_points.txt,sha256=XEBtOa61BCVW4cVvoqYQnyTcenJ1tzFFB09YnuqlKBY,51
|
87
|
+
pypipr-1.0.141.dist-info/RECORD,,
|
File without changes
|
File without changes
|