pypipr 1.0.138__py3-none-any.whl → 1.0.140__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/sqlite_delete_table.py +4 -0
- pypipr/sqlite_get_all_tables.py +5 -0
- pypipr/sqlite_get_data_table.py +4 -0
- pypipr/traceback_filename.py +13 -0
- pypipr/traceback_framename.py +13 -0
- {pypipr-1.0.138.dist-info → pypipr-1.0.140.dist-info}/METADATA +246 -184
- {pypipr-1.0.138.dist-info → pypipr-1.0.140.dist-info}/RECORD +10 -8
- {pypipr-1.0.138.dist-info → pypipr-1.0.140.dist-info}/WHEEL +0 -0
- {pypipr-1.0.138.dist-info → pypipr-1.0.140.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/sqlite_delete_table.py
CHANGED
pypipr/sqlite_get_all_tables.py
CHANGED
@@ -2,6 +2,11 @@ import sqlite3
|
|
2
2
|
|
3
3
|
|
4
4
|
def sqlite_get_all_tables(filename):
|
5
|
+
"""
|
6
|
+
Perintah SQLite untuk menampilkan seluruh tabel
|
7
|
+
yang ada pada database.
|
8
|
+
Hanya akan mengembalikan kolom nama tabel saja.
|
9
|
+
"""
|
5
10
|
con = sqlite3.connect(filename)
|
6
11
|
cur = con.cursor()
|
7
12
|
cur.execute("SELECT name FROM sqlite_master WHERE type='table' order by name;")
|
pypipr/sqlite_get_data_table.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pypipr
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.140
|
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 0x7ca8b8f940>
|
252
|
+
<generator object int_range at 0x7ca8b8f940>
|
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 0x7ca8c19480>
|
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 0x7ca8c22110>
|
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 0x7ca8b8fa40>
|
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-16
|
496
|
-
2024-05-
|
497
|
-
2024-05-
|
495
|
+
2024-05-16 20:25:15.306953+07:00
|
496
|
+
2024-05-16 13:25:15.309291+00:00
|
497
|
+
2024-05-16 06:25:15.314793-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 0x7ca8c21e40>
|
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 0x7ca8c223e0>
|
651
|
+
[<function ExampleGetClassMethod.a at 0x7ca8c5f060>, <function ExampleGetClassMethod.b at 0x7ca8c5efc0>, <function ExampleGetClassMethod.c at 0x7ca8c5f1a0>, <function ExampleGetClassMethod.d at 0x7ca8c5f240>]
|
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 0x7cb38879c0>)`
|
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 0x7ca8c224d0>
|
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
|
+
weq, dfs, asd, qweqw
|
1145
1148
|
,ini,path,seperti,url,
|
1146
1149
|
ini,path,seperti,url
|
1147
1150
|
<li>satu</li>
|
@@ -1187,94 +1190,118 @@ Output:
|
|
1187
1190
|
```py
|
1188
1191
|
(['Home', 'Emas 1 Gram', 'History', 'Trend', 'Perak 1 Gram', 'Pluang'],
|
1189
1192
|
[['Harga Emas Hari Ini - Kamis, 16 Mei 2024'],
|
1190
|
-
['Spot Emas
|
1191
|
-
'Kurs
|
1192
|
-
'Emas
|
1193
|
-
['LM Antam (Jual)↑1.
|
1194
|
-
'LM Antam (Beli)↑1.
|
1193
|
+
['Spot Emas USD↓2.378,53 (-7,50) / oz',
|
1194
|
+
'Kurs IDR↓16.070,00 (-61,00) / USD',
|
1195
|
+
'Emas IDR↓1.228.897 (-8.554) / gr'],
|
1196
|
+
['LM Antam (Jual)↑1.354.000 (+22.000) / gr',
|
1197
|
+
'LM Antam (Beli)↑1.245.000 (+22.000) / gr']],
|
1195
1198
|
[['Harga Emas Hari Ini'],
|
1196
1199
|
['Gram', 'Gedung Antam Jakarta', 'Pegadaian'],
|
1197
1200
|
['per Gram (Rp)', 'per Batangan (Rp)', 'per Gram (Rp)', 'per Batangan (Rp)'],
|
1198
1201
|
['1000',
|
1199
|
-
'1.
|
1200
|
-
'1.
|
1202
|
+
'1.295 (+22)',
|
1203
|
+
'1.294.600 (+22.000)',
|
1201
1204
|
'1.043.040 (+8.200)',
|
1202
1205
|
'1.043.040.000 (+8.200.000)'],
|
1203
1206
|
['500',
|
1204
|
-
'2.
|
1205
|
-
'1.
|
1207
|
+
'2.589 (+44)',
|
1208
|
+
'1.294.640 (+22.000)',
|
1206
1209
|
'1.043.082 (+8.200)',
|
1207
1210
|
'521.541.000 (+4.100.000)'],
|
1208
1211
|
['250',
|
1209
|
-
'5.
|
1210
|
-
'1.
|
1212
|
+
'5.180 (+88)',
|
1213
|
+
'1.295.060 (+22.000)',
|
1211
1214
|
'1.043.512 (+8.200)',
|
1212
1215
|
'260.878.000 (+2.050.000)'],
|
1213
1216
|
['100',
|
1214
|
-
'12.
|
1215
|
-
'1.
|
1217
|
+
'12.961 (+220)',
|
1218
|
+
'1.296.120 (+22.000)',
|
1216
1219
|
'1.044.600 (+8.200)',
|
1217
1220
|
'104.460.000 (+820.000)'],
|
1218
1221
|
['50',
|
1219
|
-
'25.
|
1220
|
-
'1.
|
1222
|
+
'25.938 (+440)',
|
1223
|
+
'1.296.900 (+22.000)',
|
1221
1224
|
'1.045.400 (+8.200)',
|
1222
1225
|
'52.270.000 (+410.000)'],
|
1223
1226
|
['25',
|
1224
|
-
'51.
|
1225
|
-
'1.
|
1227
|
+
'51.939 (+880)',
|
1228
|
+
'1.298.480 (+22.000)',
|
1226
1229
|
'1.047.040 (+8.200)',
|
1227
1230
|
'26.176.000 (+205.000)'],
|
1228
1231
|
['10',
|
1229
|
-
'
|
1230
|
-
'1.
|
1232
|
+
'130.350 (+2.200)',
|
1233
|
+
'1.303.500 (+22.000)',
|
1231
1234
|
'1.052.200 (+8.200)',
|
1232
1235
|
'10.522.000 (+82.000)'],
|
1233
1236
|
['5',
|
1234
|
-
'
|
1235
|
-
'1.
|
1237
|
+
'261.800 (+4.400)',
|
1238
|
+
'1.309.000 (+22.000)',
|
1236
1239
|
'1.057.800 (+8.200)',
|
1237
1240
|
'5.289.000 (+41.000)'],
|
1238
1241
|
['3',
|
1239
|
-
'
|
1240
|
-
'1.
|
1242
|
+
'438.556 (+7.333)',
|
1243
|
+
'1.315.667 (+22.000)',
|
1241
1244
|
'1.064.667 (+8.000)',
|
1242
1245
|
'3.194.000 (+24.000)'],
|
1243
1246
|
['2',
|
1244
|
-
'
|
1245
|
-
'1.
|
1247
|
+
'662.000 (+11.000)',
|
1248
|
+
'1.324.000 (+22.000)',
|
1246
1249
|
'1.073.500 (+8.500)',
|
1247
1250
|
'2.147.000 (+17.000)'],
|
1248
1251
|
['1',
|
1249
|
-
'1.
|
1250
|
-
'1.
|
1252
|
+
'1.354.000 (+22.000)',
|
1253
|
+
'1.354.000 (+22.000)',
|
1251
1254
|
'1.104.000 (+8.000)',
|
1252
1255
|
'1.104.000 (+8.000)'],
|
1253
1256
|
['0.5',
|
1254
|
-
'2.
|
1255
|
-
'1.
|
1257
|
+
'2.908.000 (+44.000)',
|
1258
|
+
'1.454.000 (+22.000)',
|
1256
1259
|
'1.208.000 (+8.000)',
|
1257
1260
|
'604.000 (+4.000)'],
|
1258
|
-
['Update harga LM Antam :
|
1259
|
-
':Rp. 1.
|
1261
|
+
['Update harga LM Antam :16 Mei 2024, pukul 08:18Harga pembelian kembali '
|
1262
|
+
':Rp. 1.245.000/gram (+22.000)',
|
1260
1263
|
'Update harga LM Pegadaian :31 Agustus 2023']],
|
1261
1264
|
[['Spot Harga Emas Hari Ini (Market Open)'],
|
1262
1265
|
['Satuan', 'USD', 'Kurs\xa0Dollar', 'IDR'],
|
1263
|
-
['Ounce\xa0(oz)', '2.
|
1264
|
-
['Gram\xa0(gr)', '76,
|
1265
|
-
['Kilogram\xa0(kg)', '76.
|
1266
|
-
['Update harga emas :16 Mei 2024, pukul
|
1266
|
+
['Ounce\xa0(oz)', '2.378,53 (-7,50)', '16.070,00 (-61,00)', '38.222.977'],
|
1267
|
+
['Gram\xa0(gr)', '76,47', '16.070,00', '1.228.897 (-8.554)'],
|
1268
|
+
['Kilogram\xa0(kg)', '76.471,52', '16.070,00', '1.228.897.251'],
|
1269
|
+
['Update harga emas :16 Mei 2024, pukul 20:23Update kurs :16 Mei 2024, pukul '
|
1267
1270
|
'13:10']],
|
1268
1271
|
[['Gram', 'UBS Gold 99.99%'],
|
1269
1272
|
['Jual', 'Beli'],
|
1270
1273
|
['/ Batang', '/ Gram', '/ Batang', '/ Gram'],
|
1271
|
-
['100',
|
1272
|
-
|
1273
|
-
|
1274
|
-
|
1275
|
-
|
1276
|
-
['
|
1277
|
-
|
1274
|
+
['100',
|
1275
|
+
'129.600.000 (+2.188.000)',
|
1276
|
+
'1.296.000 (+21.880)',
|
1277
|
+
'125.685.000 (+500.000)',
|
1278
|
+
'1.256.850 (+5.000)'],
|
1279
|
+
['50',
|
1280
|
+
'64.700.000 (+1.100.000)',
|
1281
|
+
'1.294.000 (+22.000)',
|
1282
|
+
'62.895.000 (+250.000)',
|
1283
|
+
'1.257.900 (+5.000)'],
|
1284
|
+
['25',
|
1285
|
+
'32.400.000 (+550.000)',
|
1286
|
+
'1.296.000 (+22.000)',
|
1287
|
+
'31.550.000 (+125.000)',
|
1288
|
+
'1.262.000 (+5.000)'],
|
1289
|
+
['10',
|
1290
|
+
'13.000.000 (+210.000)',
|
1291
|
+
'1.300.000 (+21.000)',
|
1292
|
+
'12.670.000 (+50.000)',
|
1293
|
+
'1.267.000 (+5.000)'],
|
1294
|
+
['5',
|
1295
|
+
'6.525.000 (+105.000)',
|
1296
|
+
'1.305.000 (+21.000)',
|
1297
|
+
'6.387.000 (+25.000)',
|
1298
|
+
'1.277.400 (+5.000)'],
|
1299
|
+
['1',
|
1300
|
+
'1.350.000 (+20.000)',
|
1301
|
+
'1.350.000 (+20.000)',
|
1302
|
+
'1.310.000 (+5.000)',
|
1303
|
+
'1.310.000 (+5.000)'],
|
1304
|
+
['', 'Update :16 Mei 2024, pukul 11:10']],
|
1278
1305
|
[['Konversi Satuan'],
|
1279
1306
|
['Satuan', 'Ounce (oz)', 'Gram (gr)', 'Kilogram (kg)'],
|
1280
1307
|
['Ounce\xa0(oz)', '1', '31,1034767696', '0,0311034768'],
|
@@ -1284,37 +1311,37 @@ Output:
|
|
1284
1311
|
['Waktu', 'Emas'],
|
1285
1312
|
['Unit', 'USD', 'IDR'],
|
1286
1313
|
['Angka', '+/-', 'Angka', '+/-'],
|
1287
|
-
['Hari Ini', 'Kurs', '', '', '16.131', '%'],
|
1288
|
-
['oz', '2.386,03', '%', '38.489.050', '%'],
|
1289
|
-
['gr', '76,71', '%', '1.237.452', '%'],
|
1290
|
-
['30 Hari', 'Kurs', '', '', '15.873', '+
|
1291
|
-
['oz', '2.397,12', '-
|
1292
|
-
['gr', '77,07', '-0,
|
1293
|
-
['2 Bulan', 'Kurs', '', '', '15.582', '+
|
1294
|
-
['oz', '2.156,08', '+
|
1295
|
-
['gr', '69,32', '+7,
|
1296
|
-
['6 Bulan', 'Kurs', '', '', '15.595', '+
|
1297
|
-
['oz', '1.980,79', '+
|
1298
|
-
['gr', '63,68', '+
|
1299
|
-
['1 Tahun', 'Kurs', '', '', '15.731', '+
|
1300
|
-
['oz', '1.823,86', '+
|
1301
|
-
['gr', '58,64', '+
|
1302
|
-
['2 Tahun', 'Kurs', '', '', '14.619', '+1.
|
1303
|
-
['oz', '1.821,43', '+
|
1304
|
-
['gr', '58,56', '+
|
1305
|
-
['3 Tahun', 'Kurs', '', '', '14.203', '+1.
|
1306
|
-
['oz', '1.867,94', '+
|
1307
|
-
['gr', '60,06', '+16,
|
1308
|
-
['5 Tahun', 'Kurs', '', '', '14.469', '+1.
|
1309
|
-
['oz', '1.277,78', '+1.
|
1310
|
-
['gr', '41,08', '+35,
|
1314
|
+
['Hari Ini', 'Kurs', '', '', '16.131', '-61-0,38%'],
|
1315
|
+
['oz', '2.386,03', '-7,50-0,31%', '38.489.050', '-266.073-0,69%'],
|
1316
|
+
['gr', '76,71', '-0,24-0,31%', '1.237.452', '-8.554-0,69%'],
|
1317
|
+
['30 Hari', 'Kurs', '', '', '15.873', '+197+1,24%'],
|
1318
|
+
['oz', '2.397,12', '-18,59-0,78%', '38.049.486', '+173.491+0,46%'],
|
1319
|
+
['gr', '77,07', '-0,60-0,78%', '1.223.319', '+5.578+0,46%'],
|
1320
|
+
['2 Bulan', 'Kurs', '', '', '15.582', '+488+3,13%'],
|
1321
|
+
['oz', '2.156,08', '+222,45+10,32%', '33.596.039', '+4.626.939+13,77%'],
|
1322
|
+
['gr', '69,32', '+7,15+10,32', '1.080.138', '+148.760+13,77%'],
|
1323
|
+
['6 Bulan', 'Kurs', '', '', '15.595', '+475+3,05%'],
|
1324
|
+
['oz', '1.980,79', '+397,74+20,08%', '30.890.420', '+7.332.557+23,74%'],
|
1325
|
+
['gr', '63,68', '+12,79+20,08%', '993.150', '+235.747+23,74%'],
|
1326
|
+
['1 Tahun', 'Kurs', '', '', '15.731', '+339+2,15%'],
|
1327
|
+
['oz', '1.823,86', '+554,67+30,41%', '28.691.142', '+9.531.835+33,22%'],
|
1328
|
+
['gr', '58,64', '+17,83+30,41%', '922.442', '+306.456+33,22%'],
|
1329
|
+
['2 Tahun', 'Kurs', '', '', '14.619', '+1.451+9,93%'],
|
1330
|
+
['oz', '1.821,43', '+557,10+30,59%', '26.627.503', '+11.595.474+43,55%'],
|
1331
|
+
['gr', '58,56', '+17,91+30,59%', '856.094', '+372.803+43,55%'],
|
1332
|
+
['3 Tahun', 'Kurs', '', '', '14.203', '+1.867+13,15%'],
|
1333
|
+
['oz', '1.867,94', '+510,59+27,33%', '26.530.370', '+11.692.607+44,07%'],
|
1334
|
+
['gr', '60,06', '+16,42+27,33%', '852.971', '+375.926+44,07%'],
|
1335
|
+
['5 Tahun', 'Kurs', '', '', '14.469', '+1.601+11,07%'],
|
1336
|
+
['oz', '1.277,78', '+1.100,75+86,15%', '18.488.199', '+19.734.778+106,74%'],
|
1337
|
+
['gr', '41,08', '+35,39+86,15%', '594.409', '+634.488+106,74%']])
|
1311
1338
|
(['Home', 'Emas 1 Gram', 'History', 'Trend', 'Perak 1 Gram', 'Pluang'],
|
1312
1339
|
[[''],
|
1313
1340
|
['Emas 24 KaratHarga Emas 1 Gram', ''],
|
1314
|
-
['USD', '76,
|
1315
|
-
['KURS', '15.
|
1316
|
-
['IDR', '1.
|
1317
|
-
['Kamis, 16 Mei 2024
|
1341
|
+
['USD', '76,50↓', '-0,21-0,27%'],
|
1342
|
+
['KURS', '15.937,35↑', '+6,40+0,04%'],
|
1343
|
+
['IDR', '1.219.152,97↓', '-2.952,36-0,24%'],
|
1344
|
+
['Kamis, 16 Mei 2024 20:25']],
|
1318
1345
|
[[''],
|
1319
1346
|
['Emas 1 Gram (IDR)Emas 1 Gram (USD)Kurs USD-IDR',
|
1320
1347
|
'Hari Ini',
|
@@ -1325,19 +1352,19 @@ Output:
|
|
1325
1352
|
'']],
|
1326
1353
|
[['Pergerakkan Harga Emas 1 Gram'],
|
1327
1354
|
['', 'Penutupan Kemarin', 'Pergerakkan Hari Ini', 'Rata-rata'],
|
1328
|
-
['USD', '76,71', '76,
|
1329
|
-
['KURS', '15.930,95', '15.
|
1330
|
-
['IDR', '1.222.105,33', '1.
|
1355
|
+
['USD', '76,71', '76,50 - 76,71', '76,61'],
|
1356
|
+
['KURS', '15.930,95', '15.930,95 - 15.937,35', '15.934,15'],
|
1357
|
+
['IDR', '1.222.105,33', '1.219.152,97 - 1.222.105,33', '1.220.629,15'],
|
1331
1358
|
[''],
|
1332
1359
|
['', 'Awal Tahun', 'Pergerakkan YTD', '+/- YTD'],
|
1333
|
-
['USD', '66,32', '64,07 - 77,14', '+10,
|
1334
|
-
['KURS', '15.390,10', '15.390,00 - 16.307,80', '+
|
1335
|
-
['IDR', '1.020.729,53', '997.660,12 - 1.256.829,06', '+
|
1360
|
+
['USD', '66,32', '64,07 - 77,14', '+10,18 (15,35%)'],
|
1361
|
+
['KURS', '15.390,10', '15.390,00 - 16.307,80', '+547,25 (3,56%)'],
|
1362
|
+
['IDR', '1.020.729,53', '997.660,12 - 1.256.829,06', '+198.423,44 (19,44%)'],
|
1336
1363
|
[''],
|
1337
1364
|
['', 'Tahun Lalu / 52 Minggu', 'Pergerakkan 52 Minggu', '+/- 52 Minggu'],
|
1338
|
-
['USD', '64,94', '58,43 - 77,14', '+11,
|
1339
|
-
['KURS', '14.796,95', '14.833,15 - 16.307,80', '+1.
|
1340
|
-
['IDR', '960.842,68', '912.925,68 - 1.256.829,06', '+
|
1365
|
+
['USD', '64,94', '58,43 - 77,14', '+11,56 (17,80%)'],
|
1366
|
+
['KURS', '14.796,95', '14.833,15 - 16.307,80', '+1.140,40 (7,71%)'],
|
1367
|
+
['IDR', '960.842,68', '912.925,68 - 1.256.829,06', '+258.310,29 (26,88%)']])
|
1341
1368
|
```
|
1342
1369
|
|
1343
1370
|
## iloads
|
@@ -1467,7 +1494,7 @@ Output:
|
|
1467
1494
|
```py
|
1468
1495
|
8
|
1469
1496
|
['mana', 'aja']
|
1470
|
-
[<Element a at
|
1497
|
+
[<Element a at 0x7ca8c70730>, <Element a at 0x7ca8abc780>, <Element a at 0x7ca8abc820>, <Element a at 0x7ca8abc870>, <Element a at 0x7ca8abc8c0>, <Element a at 0x7ca8abc910>, <Element a at 0x7ca8abc960>, <Element a at 0x7ca8abc9b0>, <Element a at 0x7ca8abca00>, <Element a at 0x7ca8abca50>, <Element a at 0x7ca8abcaa0>, <Element a at 0x7ca8abcaf0>, <Element a at 0x7ca8abcb40>, <Element a at 0x7ca8abcb90>, <Element a at 0x7ca8abcbe0>, <Element a at 0x7ca8abcc30>, <Element a at 0x7ca8abcc80>, <Element a at 0x7ca8abccd0>]
|
1471
1498
|
False
|
1472
1499
|
```
|
1473
1500
|
|
@@ -1529,7 +1556,7 @@ print(list(iscandir("./", recursive=False, scan_file=False)))
|
|
1529
1556
|
|
1530
1557
|
Output:
|
1531
1558
|
```py
|
1532
|
-
<generator object iscandir at
|
1559
|
+
<generator object iscandir at 0x7ca8b8fb40>
|
1533
1560
|
[PosixPath('.git'), PosixPath('.vscode'), PosixPath('pypipr'), PosixPath('__pycache__'), PosixPath('dist')]
|
1534
1561
|
```
|
1535
1562
|
|
@@ -1562,84 +1589,86 @@ iprint(ivars(__import__('pypipr')))
|
|
1562
1589
|
|
1563
1590
|
Output:
|
1564
1591
|
```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
|
1592
|
+
{'function': {'avg': <function avg at 0x7cbc5e0040>,
|
1593
|
+
'get_filemtime': <function get_filemtime at 0x7cb3a03060>,
|
1594
|
+
'print_colorize': <function print_colorize at 0x7cb3a03240>,
|
1595
|
+
'print_log': <function print_log at 0x7cb3a03100>,
|
1596
|
+
'console_run': <function console_run at 0x7cb3a031a0>,
|
1597
|
+
'auto_reload': <function auto_reload at 0x7cb79dcf40>,
|
1598
|
+
'basename': <function basename at 0x7cb399e980>,
|
1599
|
+
'chr_to_int': <function chr_to_int at 0x7cb3a037e0>,
|
1600
|
+
'int_to_chr': <function int_to_chr at 0x7cb3a03880>,
|
1601
|
+
'irange': <function irange at 0x7cb3a03b00>,
|
1602
|
+
'batchmaker': <function batchmaker at 0x7cb3a034c0>,
|
1603
|
+
'calculate': <function calculate at 0x7cb3a03600>,
|
1604
|
+
'batch_calculate': <function batch_calculate at 0x7cb3a03380>,
|
1605
|
+
'bin_to_int': <function bin_to_int at 0x7cb79dcea0>,
|
1606
|
+
'is_empty': <function is_empty at 0x7cb3a102c0>,
|
1607
|
+
'exit_if_empty': <function exit_if_empty at 0x7cb3a10180>,
|
1608
|
+
'input_char': <function input_char at 0x7cb3a10220>,
|
1609
|
+
'choices': <function choices at 0x7cb3a10540>,
|
1610
|
+
'chunk_array': <function chunk_array at 0x7cb3a105e0>,
|
1611
|
+
'create_folder': <function create_folder at 0x7cb3a10680>,
|
1612
|
+
'datetime_from_string': <function datetime_from_string at 0x7cb3a10720>,
|
1613
|
+
'datetime_now': <function datetime_now at 0x7cb3a100e0>,
|
1614
|
+
'dict_first': <function dict_first at 0x7cb3a12a20>,
|
1615
|
+
'dirname': <function dirname at 0x7cb3a12ac0>,
|
1616
|
+
'is_iterable': <function is_iterable at 0x7cb3a12ca0>,
|
1617
|
+
'to_str': <function to_str at 0x7cb3a12d40>,
|
1618
|
+
'filter_empty': <function filter_empty at 0x7cb3a032e0>,
|
1619
|
+
'get_by_index': <function get_by_index at 0x7cb3a12b60>,
|
1620
|
+
'get_class_method': <function get_class_method at 0x7cb3a12de0>,
|
1621
|
+
'get_filesize': <function get_filesize at 0x7cb3a12f20>,
|
1622
|
+
'github_init': <function github_init at 0x7cb3a12fc0>,
|
1623
|
+
'github_pull': <function github_pull at 0x7cb3a13060>,
|
1624
|
+
'github_push': <function github_push at 0x7cb3a131a0>,
|
1625
|
+
'github_user': <function github_user at 0x7cb3a13240>,
|
1626
|
+
'hex_to_int': <function hex_to_int at 0x7cb3a132e0>,
|
1627
|
+
'iargv': <function iargv at 0x7cb3a13380>,
|
1628
|
+
'idir': <function idir at 0x7cb3a13420>,
|
1629
|
+
'idumps_html': <function idumps_html at 0x7cb3a13b00>,
|
1630
|
+
'idumps': <function idumps at 0x7cb3a13560>,
|
1631
|
+
'int_to_int': <function int_to_int at 0x7cb38879c0>,
|
1632
|
+
'ienumerate': <function ienumerate at 0x7cb387a020>,
|
1633
|
+
'ienv': <function ienv at 0x7cb38876a0>,
|
1634
|
+
'iexec': <function iexec at 0x7cb3887a60>,
|
1635
|
+
'ijoin': <function ijoin at 0x7cb3887ba0>,
|
1636
|
+
'iloads_html': <function iloads_html at 0x7cb3887d80>,
|
1637
|
+
'iloads': <function iloads at 0x7cbcf72020>,
|
1638
|
+
'int_to_bin': <function int_to_bin at 0x7cb3887b00>,
|
1639
|
+
'int_to_hex': <function int_to_hex at 0x7cb3887ce0>,
|
1640
|
+
'int_to_oct': <function int_to_oct at 0x7cb3887e20>,
|
1641
|
+
'is_valid_url': <function is_valid_url at 0x7cb36bbba0>,
|
1642
|
+
'iopen': <function iopen at 0x7cb389c040>,
|
1643
|
+
'iprint': <function iprint at 0x7cb36bb6a0>,
|
1644
|
+
'ireplace': <function ireplace at 0x7cb36bb7e0>,
|
1645
|
+
'iscandir': <function iscandir at 0x7cb377c9a0>,
|
1646
|
+
'isplit': <function isplit at 0x7cb377ca40>,
|
1647
|
+
'ivars': <function ivars at 0x7cb377cae0>,
|
1648
|
+
'log': <function log at 0x7cb377cb80>,
|
1649
|
+
'oct_to_int': <function oct_to_int at 0x7cb377cc20>,
|
1650
|
+
'password_generator': <function password_generator at 0x7cb377ccc0>,
|
1651
|
+
'pip_freeze_without_version': <function pip_freeze_without_version at 0x7cb377ce00>,
|
1652
|
+
'poetry_publish': <function poetry_publish at 0x7cb377cea0>,
|
1653
|
+
'poetry_update_version': <function poetry_update_version at 0x7cb377cfe0>,
|
1654
|
+
'print_dir': <function print_dir at 0x7cb377d1c0>,
|
1655
|
+
'print_to_last_line': <function print_to_last_line at 0x7cb377d260>,
|
1656
|
+
'random_bool': <function random_bool at 0x7cb377d300>,
|
1657
|
+
'restart': <function restart at 0x7cb377d3a0>,
|
1658
|
+
'set_timeout': <function set_timeout at 0x7cb377d440>,
|
1659
|
+
'sets_ordered': <function sets_ordered at 0x7cb377d4e0>,
|
1660
|
+
'sqlite_delete_table': <function sqlite_delete_table at 0x7cb377d580>,
|
1661
|
+
'sqlite_get_all_tables': <function sqlite_get_all_tables at 0x7cb377d120>,
|
1662
|
+
'sqlite_get_data_table': <function sqlite_get_data_table at 0x7cb377dee0>,
|
1663
|
+
'str_cmp': <function str_cmp at 0x7cb377df80>,
|
1664
|
+
'text_colorize': <function text_colorize at 0x7cb377e020>,
|
1665
|
+
'traceback_filename': <function traceback_filename at 0x7cb377e160>,
|
1666
|
+
'traceback_framename': <function traceback_framename at 0x7cb377e200>},
|
1638
1667
|
'class': {'ComparePerformance': <class 'pypipr.ComparePerformance.ComparePerformance'>,
|
1639
1668
|
'PintUregQuantity': <class 'pint.Quantity'>,
|
1640
1669
|
'RunParallel': <class 'pypipr.RunParallel.RunParallel'>},
|
1641
1670
|
'variable': {'LINUX': True,
|
1642
|
-
'PintUreg': <pint.registry.UnitRegistry object at
|
1671
|
+
'PintUreg': <pint.registry.UnitRegistry object at 0x7cbc5ef090>,
|
1643
1672
|
'WINDOWS': False},
|
1644
1673
|
'module': {'asyncio': <module 'asyncio' from '/data/data/com.termux/files/usr/lib/python3.11/asyncio/__init__.py'>,
|
1645
1674
|
'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 +1696,7 @@ Output:
|
|
1667
1696
|
'textwrap': <module 'textwrap' from '/data/data/com.termux/files/usr/lib/python3.11/textwrap.py'>,
|
1668
1697
|
'threading': <module 'threading' from '/data/data/com.termux/files/usr/lib/python3.11/threading.py'>,
|
1669
1698
|
'time': <module 'time' (built-in)>,
|
1699
|
+
'traceback': <module 'traceback' from '/data/data/com.termux/files/usr/lib/python3.11/traceback.py'>,
|
1670
1700
|
'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
1701
|
'uuid': <module 'uuid' from '/data/data/com.termux/files/usr/lib/python3.11/uuid.py'>,
|
1672
1702
|
'webbrowser': <module 'webbrowser' from '/data/data/com.termux/files/usr/lib/python3.11/webbrowser.py'>,
|
@@ -1729,7 +1759,7 @@ print(password_generator())
|
|
1729
1759
|
|
1730
1760
|
Output:
|
1731
1761
|
```py
|
1732
|
-
|
1762
|
+
Z2Ifro/m
|
1733
1763
|
```
|
1734
1764
|
|
1735
1765
|
## pip_freeze_without_version
|
@@ -1787,7 +1817,7 @@ Output:
|
|
1787
1817
|
__enter__ : https:/www.google.com
|
1788
1818
|
__fspath__ : https:/www.google.com
|
1789
1819
|
__getstate__ : (None, {'_drv': '', '_root': '', '_parts': ['https:', 'www.google.com'], '_str': 'https:/www.google.com'})
|
1790
|
-
__hash__ : -
|
1820
|
+
__hash__ : -2991115719742224189
|
1791
1821
|
__init__ : None
|
1792
1822
|
__init_subclass__ : None
|
1793
1823
|
__module__ : pathlib
|
@@ -1800,8 +1830,8 @@ Output:
|
|
1800
1830
|
_cached_cparts : ['https:', 'www.google.com']
|
1801
1831
|
_cparts : ['https:', 'www.google.com']
|
1802
1832
|
_drv :
|
1803
|
-
_flavour : <pathlib._PosixFlavour object at
|
1804
|
-
_hash : -
|
1833
|
+
_flavour : <pathlib._PosixFlavour object at 0x7cbc309590>
|
1834
|
+
_hash : -2991115719742224189
|
1805
1835
|
_parts : ['https:', 'www.google.com']
|
1806
1836
|
_root :
|
1807
1837
|
_str : https:/www.google.com
|
@@ -1823,7 +1853,7 @@ Output:
|
|
1823
1853
|
is_reserved : False
|
1824
1854
|
is_socket : False
|
1825
1855
|
is_symlink : False
|
1826
|
-
iterdir : <generator object Path.iterdir at
|
1856
|
+
iterdir : <generator object Path.iterdir at 0x7ca8c16f80>
|
1827
1857
|
joinpath : https:/www.google.com
|
1828
1858
|
name : www.google.com
|
1829
1859
|
parent : https:
|
@@ -1863,7 +1893,7 @@ print(random_bool())
|
|
1863
1893
|
|
1864
1894
|
Output:
|
1865
1895
|
```py
|
1866
|
-
|
1896
|
+
False
|
1867
1897
|
```
|
1868
1898
|
|
1869
1899
|
## restart
|
@@ -1897,7 +1927,7 @@ x.cancel()
|
|
1897
1927
|
|
1898
1928
|
Output:
|
1899
1929
|
```py
|
1900
|
-
<Timer(Thread-2, started
|
1930
|
+
<Timer(Thread-2, started 535387704560)>
|
1901
1931
|
menghentikan timeout 7
|
1902
1932
|
```
|
1903
1933
|
|
@@ -1915,7 +1945,7 @@ print(list(sets_ordered(array)))
|
|
1915
1945
|
|
1916
1946
|
Output:
|
1917
1947
|
```py
|
1918
|
-
<generator object sets_ordered at
|
1948
|
+
<generator object sets_ordered at 0x7ca8c75a40>
|
1919
1949
|
[2, 3, 12, 42, 1, 43, 41, 4, 24, 32]
|
1920
1950
|
```
|
1921
1951
|
|
@@ -1923,14 +1953,24 @@ Output:
|
|
1923
1953
|
|
1924
1954
|
`sqlite_delete_table(filename, tablename)`
|
1925
1955
|
|
1956
|
+
Perintah sederhana untuk menghapus tabel
|
1957
|
+
dari database SQLite.
|
1958
|
+
|
1926
1959
|
## sqlite_get_all_tables
|
1927
1960
|
|
1928
1961
|
`sqlite_get_all_tables(filename)`
|
1929
1962
|
|
1963
|
+
Perintah SQLite untuk menampilkan seluruh tabel
|
1964
|
+
yang ada pada database.
|
1965
|
+
Hanya akan mengembalikan kolom nama tabel saja.
|
1966
|
+
|
1930
1967
|
## sqlite_get_data_table
|
1931
1968
|
|
1932
1969
|
`sqlite_get_data_table(filename, tablename)`
|
1933
1970
|
|
1971
|
+
Perintah SQLite untuk menampilkan seluruh data
|
1972
|
+
pada tabel database
|
1973
|
+
|
1934
1974
|
## str_cmp
|
1935
1975
|
|
1936
1976
|
`str_cmp(t1, t2)`
|
@@ -1960,6 +2000,28 @@ text_colorize("Print some text")
|
|
1960
2000
|
text_colorize("Print some text", color=colorama.Fore.RED)
|
1961
2001
|
```
|
1962
2002
|
|
2003
|
+
## traceback_filename
|
2004
|
+
|
2005
|
+
`traceback_filename()`
|
2006
|
+
|
2007
|
+
Mendapatkan filename dimana fungsi yg memanggil
|
2008
|
+
fungsi ini dipanggil.
|
2009
|
+
|
2010
|
+
```py
|
2011
|
+
print(traceback_filename())
|
2012
|
+
```
|
2013
|
+
|
2014
|
+
## traceback_framename
|
2015
|
+
|
2016
|
+
`traceback_framename()`
|
2017
|
+
|
2018
|
+
Mendapatkan frame name dimana fungsi yg memanggil
|
2019
|
+
fungsi ini dipanggil.
|
2020
|
+
|
2021
|
+
```py
|
2022
|
+
print(traceback_framename())
|
2023
|
+
```
|
2024
|
+
|
1963
2025
|
# CLASS
|
1964
2026
|
|
1965
2027
|
## ComparePerformance
|
@@ -1997,15 +2059,15 @@ print(ExampleComparePerformance().compare_performance())
|
|
1997
2059
|
|
1998
2060
|
Output:
|
1999
2061
|
```py
|
2000
|
-
{'a': <generator object ExampleComparePerformance.a.<locals>.<genexpr> at
|
2062
|
+
{'a': <generator object ExampleComparePerformance.a.<locals>.<genexpr> at 0x7ca8c74ba0>,
|
2001
2063
|
'b': (0, 1, 2, 3, 4, 5, 6, 7, 8, 9),
|
2002
2064
|
'c': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
|
2003
2065
|
'd': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]}
|
2004
|
-
{'a':
|
2005
|
-
{'a':
|
2006
|
-
{'a':
|
2007
|
-
{'a':
|
2008
|
-
{'a':
|
2066
|
+
{'a': 217, 'b': 1697, 'c': 100, 'd': 170}
|
2067
|
+
{'a': 100, 'b': 118, 'c': 138, 'd': 116}
|
2068
|
+
{'a': 100, 'b': 113, 'c': 110, 'd': 114}
|
2069
|
+
{'a': 100, 'b': 114, 'c': 106, 'd': 121}
|
2070
|
+
{'a': 100, 'b': 123, 'c': 108, 'd': 124}
|
2009
2071
|
```
|
2010
2072
|
|
2011
2073
|
## 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
|
@@ -73,13 +73,15 @@ 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
|
75
75
|
pypipr/sets_ordered.py,sha256=ve2Nc1eNYD_7QaTf_4otEAvzL1XpZP2MjX0KHSXF5nA,325
|
76
|
-
pypipr/sqlite_delete_table.py,sha256=
|
77
|
-
pypipr/sqlite_get_all_tables.py,sha256=
|
78
|
-
pypipr/sqlite_get_data_table.py,sha256=
|
76
|
+
pypipr/sqlite_delete_table.py,sha256=x385gVBHp1WkIdMpYEihOmFHglQ6yMl9H14W-ynKRHY,295
|
77
|
+
pypipr/sqlite_get_all_tables.py,sha256=RyRzVOEFkwHDaOkNWJ4zoR9KavFNmYneh8KDJyTzKD4,407
|
78
|
+
pypipr/sqlite_get_data_table.py,sha256=_GeaakCezPEmCB6cgTqgc1bKK_AMzjuxRGYZdOKA-DA,319
|
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=wWstvHpxuBmhCl77OrwHyjMHlib2bk6wAuFebKnUOeU,240
|
83
|
+
pypipr/traceback_framename.py,sha256=LeBTvnS0t2DwgAC_PAddmj4c59rnwAvw2L62HgPweEY,240
|
84
|
+
pypipr-1.0.140.dist-info/METADATA,sha256=4HEX4qm6Sanv4YVkByhCmVMGpZFUZOof6V6Bdw60y9k,56243
|
85
|
+
pypipr-1.0.140.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
86
|
+
pypipr-1.0.140.dist-info/entry_points.txt,sha256=XEBtOa61BCVW4cVvoqYQnyTcenJ1tzFFB09YnuqlKBY,51
|
87
|
+
pypipr-1.0.140.dist-info/RECORD,,
|
File without changes
|
File without changes
|