pypipr 1.0.166__py3-none-any.whl → 1.0.168__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 CHANGED
@@ -64,6 +64,7 @@ from .iscandir import iscandir
64
64
  from .isplit import isplit
65
65
  from .ivars import ivars
66
66
  from .log import log
67
+ from .no_indent import no_indent
67
68
  from .oct_to_int import oct_to_int
68
69
  from .password_generator import password_generator
69
70
  from .path_to_module import path_to_module
pypipr/dirname.py CHANGED
@@ -1,7 +1,9 @@
1
1
  import os
2
2
 
3
+ from .filter_empty import filter_empty
3
4
 
4
- def dirname(path, indeks=-1):
5
+
6
+ def dirname(path, indeks=-1, abs_path=None):
5
7
  """
6
8
  Mengembalikan nama folder dari path.
7
9
  Tanpa trailing slash di akhir.
@@ -10,8 +12,22 @@ def dirname(path, indeks=-1):
10
12
  print(dirname("/ini/nama/folder/ke/file.py"))
11
13
  ```
12
14
  """
15
+
13
16
  paths = path.split(os.sep)
17
+
18
+ paths = list(filter_empty(paths))
19
+
14
20
  if indeks < 0:
15
21
  paths = paths[: len(paths) + indeks]
16
- return os.sep.join(paths)
22
+
23
+ path = os.sep.join(paths)
24
+
25
+ if abs_path is None:
26
+ return path
27
+
28
+ if abs_path:
29
+ return os.path.abspath(path)
30
+
31
+ return os.path.relpath(path, os.getcwd())
32
+
17
33
  return os.path.dirname(path)
pypipr/no_indent.py ADDED
@@ -0,0 +1,5 @@
1
+ from textwrap import dedent
2
+
3
+
4
+ def no_indent(teks):
5
+ return dedent(teks)
pypipr/path_to_module.py CHANGED
@@ -1,7 +1,9 @@
1
1
  import os
2
2
 
3
+ from pypipr.dirname import dirname
3
4
 
4
- def path_to_module(abs_path, indeks=0):
5
+
6
+ def path_to_module(path, indeks=0):
5
7
  """
6
8
  Mengubah absolute path file menjadi path modul relatif terhadap cwd (current working directory),
7
9
  dengan opsi untuk memangkas bagian akhir path berdasarkan indeks.
@@ -16,6 +18,9 @@ def path_to_module(abs_path, indeks=0):
16
18
  Returns:
17
19
  str: Path bergaya modul Python (dipisah dengan ".")
18
20
  """
21
+ path = dirname(path, abs_path=False)
22
+ return path.replace(os.sep, ".")
23
+
19
24
  cwd = os.getcwd()
20
25
  rel_path = os.path.relpath(abs_path, cwd)
21
26
  rel_path_no_ext = os.path.splitext(rel_path)[0]
pypipr/repath.py CHANGED
@@ -2,7 +2,7 @@ from pathlib import Path
2
2
 
3
3
 
4
4
  def repath(
5
- path: Path,
5
+ path,
6
6
  folder_name=None,
7
7
  prepand_folder=None,
8
8
  append_folder=None,
@@ -13,6 +13,8 @@ def repath(
13
13
  prepand_extension=None,
14
14
  append_extension=None,
15
15
  ):
16
+ path = Path(path)
17
+
16
18
  # Handle the directory (folder) part
17
19
  parent = path.parent
18
20
  if folder_name is not None:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pypipr
3
- Version: 1.0.166
3
+ Version: 1.0.168
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 0x76205f6840>
252
- <generator object int_range at 0x76205f6940>
251
+ <generator object int_range at 0x7b91b92840>
252
+ <generator object int_range at 0x7b91b92940>
253
253
  [13, 12, 11, 10, 9, 8, 7, 6]
254
254
  [2, 5, 8]
255
255
  []
@@ -281,7 +281,7 @@ print(list(batchmaker(s)))
281
281
 
282
282
  Output:
283
283
  ```py
284
- <generator object batchmaker at 0x762060b1c0>
284
+ <generator object batchmaker at 0x7b91ba32e0>
285
285
  ['Urutan 1 dan 10 dan j dan Z saja.', 'Urutan 1 dan 10 dan j dan K saja.', 'Urutan 1 dan 10 dan j dan saja.']
286
286
  ```
287
287
 
@@ -335,7 +335,7 @@ print(list(batch_calculate("{1 10} m ** {1 3}")))
335
335
 
336
336
  Output:
337
337
  ```py
338
- <generator object batch_calculate at 0x762061f220>
338
+ <generator object batch_calculate at 0x7b91bbb300>
339
339
  [('1 m ** 1', <Quantity(1, 'meter')>), ('1 m ** 2', <Quantity(1, 'meter ** 2')>), ('1 m ** 3', <Quantity(1, 'meter ** 3')>)]
340
340
  ```
341
341
 
@@ -441,7 +441,7 @@ print(list(chunk_array(arr, 5)))
441
441
 
442
442
  Output:
443
443
  ```py
444
- <generator object chunk_array at 0x7620603100>
444
+ <generator object chunk_array at 0x7b91b9f100>
445
445
  [[2, 3, 12, 3, 3], [42, 42, 1, 43, 2], [42, 41, 4, 24, 32], [42, 3, 12, 32, 42], [42]]
446
446
  ```
447
447
 
@@ -492,9 +492,9 @@ print(datetime_now("Etc/GMT+7"))
492
492
 
493
493
  Output:
494
494
  ```py
495
- 2025-04-10 21:33:07.217306+07:00
496
- 2025-04-10 14:33:07.218966+00:00
497
- 2025-04-10 07:33:07.225080-07:00
495
+ 2025-04-10 22:17:53.887676+07:00
496
+ 2025-04-10 15:17:53.889758+00:00
497
+ 2025-04-10 08:17:53.893586-07:00
498
498
  ```
499
499
 
500
500
  ## dict_first
@@ -519,30 +519,6 @@ Output:
519
519
  ('key3', 'value3')
520
520
  ```
521
521
 
522
- ## dirname
523
-
524
- `dirname(path, indeks=-1)`
525
-
526
- Mengembalikan nama folder dari path.
527
- Tanpa trailing slash di akhir.
528
-
529
- ```python
530
- print(dirname("/ini/nama/folder/ke/file.py"))
531
- ```
532
-
533
- Output:
534
- ```py
535
- /ini/nama/folder/ke
536
- ```
537
-
538
- ## django_clear_migrations
539
-
540
- `django_clear_migrations(appname)`
541
-
542
- ## django_runserver
543
-
544
- `django_runserver()`
545
-
546
522
  ## is_iterable
547
523
 
548
524
  `is_iterable(var, str_is_iterable=False)`
@@ -608,10 +584,34 @@ iprint(filter_empty(var))
608
584
 
609
585
  Output:
610
586
  ```py
611
- <generator object filter_empty at 0x76206032e0>
587
+ <generator object filter_empty at 0x7b91b9f2e0>
612
588
  [1, '0', True, {}, ['eee']]
613
589
  ```
614
590
 
591
+ ## dirname
592
+
593
+ `dirname(path, indeks=-1, abs_path=None)`
594
+
595
+ Mengembalikan nama folder dari path.
596
+ Tanpa trailing slash di akhir.
597
+
598
+ ```python
599
+ print(dirname("/ini/nama/folder/ke/file.py"))
600
+ ```
601
+
602
+ Output:
603
+ ```py
604
+ ini/nama/folder/ke
605
+ ```
606
+
607
+ ## django_clear_migrations
608
+
609
+ `django_clear_migrations(appname)`
610
+
611
+ ## django_runserver
612
+
613
+ `django_runserver()`
614
+
615
615
  ## get_by_index
616
616
 
617
617
  `get_by_index(obj, index, on_error=None)`
@@ -655,8 +655,8 @@ print(list(get_class_method(ExampleGetClassMethod)))
655
655
 
656
656
  Output:
657
657
  ```py
658
- <generator object get_class_method at 0x762061fe60>
659
- [<function ExampleGetClassMethod.a at 0x762032ede0>, <function ExampleGetClassMethod.b at 0x762032ec00>, <function ExampleGetClassMethod.c at 0x762032eca0>, <function ExampleGetClassMethod.d at 0x762032ee80>]
658
+ <generator object get_class_method at 0x7b91bbbe60>
659
+ [<function ExampleGetClassMethod.a at 0x7b91a12de0>, <function ExampleGetClassMethod.b at 0x7b91a12c00>, <function ExampleGetClassMethod.c at 0x7b91a12ca0>, <function ExampleGetClassMethod.d at 0x7b91a12e80>]
660
660
  ```
661
661
 
662
662
  ## get_filesize
@@ -846,6 +846,7 @@ Output:
846
846
  'lxml',
847
847
  'math',
848
848
  'multiprocessing',
849
+ 'no_indent',
849
850
  'oct_to_int',
850
851
  'operator',
851
852
  'os',
@@ -1083,7 +1084,7 @@ Output:
1083
1084
 
1084
1085
  ## ienumerate
1085
1086
 
1086
- `ienumerate(iterator, start=0, key=<function int_to_int at 0x76249765c0>)`
1087
+ `ienumerate(iterator, start=0, key=<function int_to_int at 0x7b980da5c0>)`
1087
1088
 
1088
1089
  meningkatkan fungsi enumerate() pada python
1089
1090
  untuk key menggunakan huruf dan basis angka lainnya.
@@ -1096,7 +1097,7 @@ iprint(ienumerate(it, key=int_to_chr))
1096
1097
 
1097
1098
  Output:
1098
1099
  ```py
1099
- <generator object ienumerate at 0x76206032e0>
1100
+ <generator object ienumerate at 0x7b91b9f2e0>
1100
1101
  [('a', 'ini'), ('b', 'contoh'), ('c', 'enumerator')]
1101
1102
  ```
1102
1103
 
@@ -1173,7 +1174,7 @@ print(ijoin(10, ' '))
1173
1174
 
1174
1175
  Output:
1175
1176
  ```py
1176
- asd, weq, qweqw, dfs
1177
+ dfs, qweqw, asd, weq
1177
1178
  ,ini,path,seperti,url,
1178
1179
  ini,path,seperti,url
1179
1180
  <li>satu</li>
@@ -1219,9 +1220,9 @@ Output:
1219
1220
  ```py
1220
1221
  (['Home', 'Emas 1 Gram', 'History', 'Trend', 'Perak 1 Gram', 'Pluang'],
1221
1222
  [['Harga Emas Hari Ini - Kamis, 10 April 2025'],
1222
- ['Spot Emas USD↑3.145,75 (+54,71) / oz',
1223
+ ['Spot Emas USD↑3.158,05 (+67,01) / oz',
1223
1224
  'Kurs IDR1,00 / USD',
1224
- 'Emas IDR↑101 (+2) / gr'],
1225
+ 'Emas IDR↑102 (+2) / gr'],
1225
1226
  ['LM Antam (Jual)↓1.513.000 (-30.000) / gr',
1226
1227
  'LM Antam (Beli)↓1.366.000 (-30.000) / gr']],
1227
1228
  [['Harga Emas Hari Ini'],
@@ -1244,10 +1245,10 @@ Output:
1244
1245
  'Update harga LM Pegadaian :31 Desember 1969']],
1245
1246
  [['Spot Harga Emas Hari Ini (Market Open)'],
1246
1247
  ['Satuan', 'USD', 'Kurs\xa0Dollar', 'IDR'],
1247
- ['Ounce\xa0(oz)', '3.145,75 (+54,71)', '1,00', '3.146'],
1248
- ['Gram\xa0(gr)', '101,14', '1,00', '101 (+2)'],
1249
- ['Kilogram\xa0(kg)', '101.138,21', '1,00', '101.138'],
1250
- ['Update harga emas :10 April 2025, pukul 21:33Update kurs :14 Maret 2025, '
1248
+ ['Ounce\xa0(oz)', '3.158,05 (+67,01)', '1,00', '3.158'],
1249
+ ['Gram\xa0(gr)', '101,53', '1,00', '102 (+2)'],
1250
+ ['Kilogram\xa0(kg)', '101.533,67', '1,00', '101.534'],
1251
+ ['Update harga emas :10 April 2025, pukul 22:17Update kurs :14 Maret 2025, '
1251
1252
  'pukul 10:13']],
1252
1253
  [['Gram', 'UBS Gold 99.99%'],
1253
1254
  ['Jual', 'Beli'],
@@ -1285,36 +1286,36 @@ Output:
1285
1286
  ['Unit', 'USD', 'IDR'],
1286
1287
  ['Angka', '+/-', 'Angka', '+/-'],
1287
1288
  ['Hari Ini', 'Kurs', '', '', '1', '%'],
1288
- ['oz', '3.091,04', '+54,71+1,77%', '3.091', '+55+1,77%'],
1289
- ['gr', '99,38', '+1,76+1,77%', '99', '+2+1,77%'],
1289
+ ['oz', '3.091,04', '+67,01+2,17%', '3.091', '+67+2,17%'],
1290
+ ['gr', '99,38', '+2,15+2,17%', '99', '+2+2,17%'],
1290
1291
  ['30 Hari', 'Kurs', '', '', '16.326', '-16.325-99,99%'],
1291
- ['oz', '2.916,73', '+229,02+7,85%', '47.618.534', '-47.615.388-99,99%'],
1292
- ['gr', '93,78', '+7,36+7,85%', '1.530.971', '-1.530.870-99,99%'],
1292
+ ['oz', '2.916,73', '+241,32+8,27%', '47.618.534', '-47.615.376-99,99%'],
1293
+ ['gr', '93,78', '+7,76+8,27%', '1.530.971', '-1.530.870-99,99%'],
1293
1294
  ['2 Bulan', 'Kurs', '', '', '16.330', '-16.329-99,99%'],
1294
- ['oz', '2.861,26', '+284,49+9,94%', '46.724.376', '-46.721.230-99,99%'],
1295
- ['gr', '91,99', '+9,15+9,94', '1.502.224', '-1.502.122-99,99%'],
1295
+ ['oz', '2.861,26', '+296,79+10,37%', '46.724.376', '-46.721.218-99,99%'],
1296
+ ['gr', '91,99', '+9,54+10,37', '1.502.224', '-1.502.122-99,99%'],
1296
1297
  ['6 Bulan', 'Kurs', '', '', '15.658', '-15.657-99,99%'],
1297
- ['oz', '2.656,78', '+488,97+18,40%', '41.599.861', '-41.596.715-99,99%'],
1298
- ['gr', '85,42', '+15,72+18,40%', '1.337.467', '-1.337.365-99,99%'],
1298
+ ['oz', '2.656,78', '+501,27+18,87%', '41.599.861', '-41.596.703-99,99%'],
1299
+ ['gr', '85,42', '+16,12+18,87%', '1.337.467', '-1.337.365-99,99%'],
1299
1300
  ['1 Tahun', 'Kurs', '', '', '15.907', '-15.906-99,99%'],
1300
- ['oz', '2.338,57', '+807,18+34,52%', '37.199.633', '-37.196.487-99,99%'],
1301
- ['gr', '75,19', '+25,95+34,52%', '1.195.996', '-1.195.895-99,99%'],
1301
+ ['oz', '2.338,57', '+819,48+35,04%', '37.199.633', '-37.196.475-99,99%'],
1302
+ ['gr', '75,19', '+26,35+35,04%', '1.195.996', '-1.195.894-99,99%'],
1302
1303
  ['2 Tahun', 'Kurs', '', '', '15.731', '-15.730-99,99%'],
1303
- ['oz', '1.823,86', '+1.321,89+72,48%', '28.691.142', '-28.687.996-99,99%'],
1304
- ['gr', '58,64', '+42,50+72,48%', '922.442', '-922.340-99,99%'],
1304
+ ['oz', '1.823,86', '+1.334,19+73,15%', '28.691.142', '-28.687.984-99,99%'],
1305
+ ['gr', '58,64', '+42,90+73,15%', '922.442', '-922.340-99,99%'],
1305
1306
  ['3 Tahun', 'Kurs', '', '', '14.365', '-14.364-99,99%'],
1306
- ['oz', '1.942,64', '+1.203,11+61,93%', '27.906.043', '-27.902.897-99,99%'],
1307
- ['gr', '62,46', '+38,68+61,93%', '897.200', '-897.099-99,99%'],
1307
+ ['oz', '1.942,64', '+1.215,41+62,56%', '27.906.043', '-27.902.885-99,99%'],
1308
+ ['gr', '62,46', '+39,08+62,56%', '897.200', '-897.099-99,99%'],
1308
1309
  ['5 Tahun', 'Kurs', '', '', '16.241', '-16.240-99,99%'],
1309
- ['oz', '1.688,78', '+1.456,97+86,27%', '27.427.493', '-27.424.347-99,99%'],
1310
- ['gr', '54,30', '+46,84+86,27%', '881.814', '-881.713-99,99%']])
1310
+ ['oz', '1.688,78', '+1.469,27+87,00%', '27.427.493', '-27.424.335-99,99%'],
1311
+ ['gr', '54,30', '+47,24+87,00%', '881.814', '-881.713-99,99%']])
1311
1312
  (['Home', 'Emas 1 Gram', 'History', 'Trend', 'Perak 1 Gram', 'Pluang'],
1312
1313
  [[''],
1313
1314
  ['Emas 24 KaratHarga Emas 1 Gram', ''],
1314
- ['USD', '101,14↑', '+1,76+1,77%'],
1315
+ ['USD', '101,53↑', '+2,15+2,16%'],
1315
1316
  ['KURS', '16.355,25↓', '%'],
1316
- ['IDR', '1.654.140,73↑', '+28.768,35+1,77%'],
1317
- ['Kamis, 10 April 2025 21:33']],
1317
+ ['IDR', '1.660.608,48↑', '+35.236,10+2,17%'],
1318
+ ['Kamis, 10 April 2025 22:17']],
1318
1319
  [[''],
1319
1320
  ['Emas 1 Gram (IDR)Emas 1 Gram (USD)Kurs USD-IDR',
1320
1321
  'Hari Ini',
@@ -1325,25 +1326,25 @@ Output:
1325
1326
  '']],
1326
1327
  [['Pergerakkan Harga Emas 1 Gram'],
1327
1328
  ['', 'Penutupan Kemarin', 'Pergerakkan Hari Ini', 'Rata-rata'],
1328
- ['USD', '99,38', '99,38 - 101,14', '100,26'],
1329
+ ['USD', '99,38', '99,38 - 101,53', '100,46'],
1329
1330
  ['KURS', '16.355,25', '16.355,25 - 16.355,25', '16.355,25'],
1330
- ['IDR', '1.625.372,38', '1.625.372,38 - 1.654.140,73', '1.639.756,56'],
1331
+ ['IDR', '1.625.372,38', '1.625.372,38 - 1.660.608,48', '1.642.990,43'],
1331
1332
  [''],
1332
1333
  ['', 'Awal Tahun', 'Pergerakkan YTD', '+/- YTD'],
1333
- ['USD', '84,42', '84,38 - 101,14', '+16,72 (19,81%)'],
1334
+ ['USD', '84,42', '84,38 - 101,53', '+17,11 (20,27%)'],
1334
1335
  ['KURS', '16.220,76', '16.156,70 - 16.387,00', '+134,49 (0,83%)'],
1335
1336
  ['IDR',
1336
1337
  '1.369.306,75',
1337
- '1.368.695,74 - 1.654.140,73',
1338
- '+284.833,98 (20,80%)'],
1338
+ '1.368.695,74 - 1.660.608,48',
1339
+ '+291.301,73 (21,27%)'],
1339
1340
  [''],
1340
1341
  ['', 'Tahun Lalu / 52 Minggu', 'Pergerakkan 52 Minggu', '+/- 52 Minggu'],
1341
- ['USD', '75,37', '73,75 - 101,14', '+25,77 (34,19%)'],
1342
+ ['USD', '75,37', '73,75 - 101,53', '+26,16 (34,71%)'],
1342
1343
  ['KURS', '15.877,00', '15.100,00 - 16.509,65', '+478,25 (3,01%)'],
1343
1344
  ['IDR',
1344
1345
  '1.196.609,14',
1345
- '1.181.943,88 - 1.654.140,73',
1346
- '+457.531,59 (38,24%)']])
1346
+ '1.181.943,88 - 1.660.608,48',
1347
+ '+463.999,34 (38,78%)']])
1347
1348
  ```
1348
1349
 
1349
1350
  ## iloads
@@ -1473,7 +1474,7 @@ Output:
1473
1474
  ```py
1474
1475
  8
1475
1476
  ['mana', 'aja']
1476
- [<Element a at 0x7620339810>, <Element a at 0x762036fde0>, <Element a at 0x762036fe30>, <Element a at 0x762036fe80>, <Element a at 0x762036fed0>, <Element a at 0x762036ff20>, <Element a at 0x762036ff70>, <Element a at 0x762036ffc0>, <Element a at 0x7620390050>, <Element a at 0x76203900a0>, <Element a at 0x76203900f0>, <Element a at 0x7620390140>, <Element a at 0x7620390190>, <Element a at 0x76203901e0>, <Element a at 0x7620390230>, <Element a at 0x7620390280>, <Element a at 0x76203902d0>, <Element a at 0x7620390320>]
1477
+ [<Element a at 0x7b91a1d2c0>, <Element a at 0x7b91a53f20>, <Element a at 0x7b91a53f70>, <Element a at 0x7b91a53fc0>, <Element a at 0x7b91a74050>, <Element a at 0x7b91a740a0>, <Element a at 0x7b91a740f0>, <Element a at 0x7b91a74140>, <Element a at 0x7b91a74190>, <Element a at 0x7b91a741e0>, <Element a at 0x7b91a74230>, <Element a at 0x7b91a74280>, <Element a at 0x7b91a742d0>, <Element a at 0x7b91a74320>, <Element a at 0x7b91a74370>, <Element a at 0x7b91a743c0>, <Element a at 0x7b91a74410>, <Element a at 0x7b91a74460>]
1477
1478
  False
1478
1479
  ```
1479
1480
 
@@ -1543,7 +1544,7 @@ print(list(iscandir("./", recursive=False, scan_file=False)))
1543
1544
 
1544
1545
  Output:
1545
1546
  ```py
1546
- <generator object iscandir at 0x76206031f0>
1547
+ <generator object iscandir at 0x7b91b9f1f0>
1547
1548
  [PosixPath('.git'), PosixPath('.vscode'), PosixPath('pypipr'), PosixPath('__pycache__'), PosixPath('dist')]
1548
1549
  ```
1549
1550
 
@@ -1576,97 +1577,98 @@ iprint(ivars(__import__('pypipr')))
1576
1577
 
1577
1578
  Output:
1578
1579
  ```py
1579
- {'function': {'avg': <function avg at 0x76287f0680>,
1580
- 'get_filemtime': <function get_filemtime at 0x76248c53a0>,
1581
- 'print_colorize': <function print_colorize at 0x76248c5580>,
1582
- 'print_log': <function print_log at 0x7624ff74c0>,
1583
- 'console_run': <function console_run at 0x76248c5440>,
1584
- 'auto_reload': <function auto_reload at 0x76248c4d60>,
1585
- 'basename': <function basename at 0x76248c5620>,
1586
- 'chr_to_int': <function chr_to_int at 0x76248c5bc0>,
1587
- 'int_to_chr': <function int_to_chr at 0x76248c5c60>,
1588
- 'irange': <function irange at 0x76248c6160>,
1589
- 'batchmaker': <function batchmaker at 0x76248c5940>,
1590
- 'calculate': <function calculate at 0x76248c54e0>,
1591
- 'batch_calculate': <function batch_calculate at 0x76248c56c0>,
1592
- 'bin_to_int': <function bin_to_int at 0x76248c58a0>,
1593
- 'is_empty': <function is_empty at 0x76248c6a20>,
1594
- 'exit_if_empty': <function exit_if_empty at 0x76248c68e0>,
1595
- 'input_char': <function input_char at 0x76248c6980>,
1596
- 'choices': <function choices at 0x76248c6ca0>,
1597
- 'chunk_array': <function chunk_array at 0x76248c6d40>,
1598
- 'create_folder': <function create_folder at 0x76248c6de0>,
1599
- 'datetime_from_string': <function datetime_from_string at 0x76248c6e80>,
1600
- 'datetime_now': <function datetime_now at 0x76248c6f20>,
1601
- 'dict_first': <function dict_first at 0x76248e51c0>,
1602
- 'dirname': <function dirname at 0x76248e5260>,
1603
- 'django_clear_migrations': <function django_clear_migrations at 0x76248e5300>,
1604
- 'django_runserver': <function django_runserver at 0x76248e5620>,
1605
- 'is_iterable': <function is_iterable at 0x76248e59e0>,
1606
- 'to_str': <function to_str at 0x76248e5b20>,
1607
- 'filter_empty': <function filter_empty at 0x76248e58a0>,
1608
- 'get_by_index': <function get_by_index at 0x76248e5a80>,
1609
- 'get_class_method': <function get_class_method at 0x76248e5bc0>,
1610
- 'get_filesize': <function get_filesize at 0x76248e5d00>,
1611
- 'github_init': <function github_init at 0x76248e5da0>,
1612
- 'github_pull': <function github_pull at 0x76248e5e40>,
1613
- 'github_push': <function github_push at 0x76248e5f80>,
1614
- 'github_user': <function github_user at 0x76248e6020>,
1615
- 'hex_to_int': <function hex_to_int at 0x76248e60c0>,
1616
- 'iargv': <function iargv at 0x76248e6160>,
1617
- 'idir': <function idir at 0x76248e6200>,
1618
- 'idumps_html': <function idumps_html at 0x76249760c0>,
1619
- 'idumps': <function idumps at 0x76248e62a0>,
1620
- 'int_to_int': <function int_to_int at 0x76249765c0>,
1621
- 'ienumerate': <function ienumerate at 0x762495c900>,
1622
- 'ienv': <function ienv at 0x7624976480>,
1623
- 'iexec': <function iexec at 0x7624976660>,
1624
- 'iinput': <function iinput at 0x7624976700>,
1625
- 'ijoin': <function ijoin at 0x76249767a0>,
1626
- 'iloads_html': <function iloads_html at 0x7624976ac0>,
1627
- 'iloads': <function iloads at 0x76292a5260>,
1628
- 'int_to_bin': <function int_to_bin at 0x7624976840>,
1629
- 'int_to_hex': <function int_to_hex at 0x76249768e0>,
1630
- 'int_to_oct': <function int_to_oct at 0x7624976b60>,
1631
- 'is_valid_url': <function is_valid_url at 0x7624976de0>,
1632
- 'iopen': <function iopen at 0x762470e980>,
1633
- 'iprint': <function iprint at 0x7624765940>,
1634
- 'is_raw_string': <function is_raw_string at 0x7620ce4220>,
1635
- 'ireplace': <function ireplace at 0x7620cce700>,
1636
- 'is_html': <function is_html at 0x7620ce4180>,
1637
- 'iscandir': <function iscandir at 0x7620ce42c0>,
1638
- 'isplit': <function isplit at 0x7620ce4360>,
1639
- 'ivars': <function ivars at 0x7620ce4400>,
1640
- 'log': <function log at 0x7620ce44a0>,
1641
- 'oct_to_int': <function oct_to_int at 0x7620ce4540>,
1642
- 'password_generator': <function password_generator at 0x7620ce45e0>,
1643
- 'path_to_module': <function path_to_module at 0x7620ce4720>,
1644
- 'pip_freeze_without_version': <function pip_freeze_without_version at 0x7620ce47c0>,
1645
- 'pip_update_pypipr': <function pip_update_pypipr at 0x7620ce4860>,
1646
- 'poetry_publish': <function poetry_publish at 0x7620ce4900>,
1647
- 'poetry_update_version': <function poetry_update_version at 0x7620ce4a40>,
1648
- 'print_dir': <function print_dir at 0x7620ce4b80>,
1649
- 'print_to_last_line': <function print_to_last_line at 0x7620ce4c20>,
1650
- 'random_bool': <function random_bool at 0x7620ce4cc0>,
1651
- 'repath': <function repath at 0x7620ce4e00>,
1652
- 'restart': <function restart at 0x7620ce4ea0>,
1653
- 'set_timeout': <function set_timeout at 0x7620ce4f40>,
1654
- 'sets_ordered': <function sets_ordered at 0x7620ce4fe0>,
1655
- 'sqlite_backup': <function sqlite_backup at 0x7620ce5080>,
1656
- 'sqlite_delete_table': <function sqlite_delete_table at 0x7620ce5120>,
1657
- 'sqlite_get_all_tables': <function sqlite_get_all_tables at 0x7620ce51c0>,
1658
- 'sqlite_get_data_table': <function sqlite_get_data_table at 0x7620ce5260>,
1659
- 'str_cmp': <function str_cmp at 0x7620ce5b20>,
1660
- 'text_colorize': <function text_colorize at 0x7620ce5bc0>,
1661
- 'tiles': <function tiles at 0x7620ce5c60>,
1662
- 'traceback_filename': <function traceback_filename at 0x7620ce5d00>,
1663
- 'traceback_framename': <function traceback_framename at 0x7620ce5da0>},
1580
+ {'function': {'avg': <function avg at 0x7b9b7e8680>,
1581
+ 'get_filemtime': <function get_filemtime at 0x7b980293a0>,
1582
+ 'print_colorize': <function print_colorize at 0x7b98029580>,
1583
+ 'print_log': <function print_log at 0x7b987cb4c0>,
1584
+ 'console_run': <function console_run at 0x7b98029440>,
1585
+ 'auto_reload': <function auto_reload at 0x7b98028d60>,
1586
+ 'basename': <function basename at 0x7b98029620>,
1587
+ 'chr_to_int': <function chr_to_int at 0x7b98029bc0>,
1588
+ 'int_to_chr': <function int_to_chr at 0x7b98029c60>,
1589
+ 'irange': <function irange at 0x7b9802a160>,
1590
+ 'batchmaker': <function batchmaker at 0x7b98029940>,
1591
+ 'calculate': <function calculate at 0x7b980294e0>,
1592
+ 'batch_calculate': <function batch_calculate at 0x7b980296c0>,
1593
+ 'bin_to_int': <function bin_to_int at 0x7b980298a0>,
1594
+ 'is_empty': <function is_empty at 0x7b9802aa20>,
1595
+ 'exit_if_empty': <function exit_if_empty at 0x7b9802a8e0>,
1596
+ 'input_char': <function input_char at 0x7b9802a980>,
1597
+ 'choices': <function choices at 0x7b9802aca0>,
1598
+ 'chunk_array': <function chunk_array at 0x7b9802ad40>,
1599
+ 'create_folder': <function create_folder at 0x7b9802ade0>,
1600
+ 'datetime_from_string': <function datetime_from_string at 0x7b9802ae80>,
1601
+ 'datetime_now': <function datetime_now at 0x7b9802af20>,
1602
+ 'dict_first': <function dict_first at 0x7b980491c0>,
1603
+ 'is_iterable': <function is_iterable at 0x7b980494e0>,
1604
+ 'to_str': <function to_str at 0x7b98049620>,
1605
+ 'filter_empty': <function filter_empty at 0x7b980493a0>,
1606
+ 'dirname': <function dirname at 0x7b98049260>,
1607
+ 'django_clear_migrations': <function django_clear_migrations at 0x7b98049300>,
1608
+ 'django_runserver': <function django_runserver at 0x7b980498a0>,
1609
+ 'get_by_index': <function get_by_index at 0x7b98049b20>,
1610
+ 'get_class_method': <function get_class_method at 0x7b98049bc0>,
1611
+ 'get_filesize': <function get_filesize at 0x7b98049d00>,
1612
+ 'github_init': <function github_init at 0x7b98049da0>,
1613
+ 'github_pull': <function github_pull at 0x7b98049e40>,
1614
+ 'github_push': <function github_push at 0x7b98049f80>,
1615
+ 'github_user': <function github_user at 0x7b9804a020>,
1616
+ 'hex_to_int': <function hex_to_int at 0x7b9804a0c0>,
1617
+ 'iargv': <function iargv at 0x7b9804a160>,
1618
+ 'idir': <function idir at 0x7b9804a200>,
1619
+ 'idumps_html': <function idumps_html at 0x7b980da0c0>,
1620
+ 'idumps': <function idumps at 0x7b9804a2a0>,
1621
+ 'int_to_int': <function int_to_int at 0x7b980da5c0>,
1622
+ 'ienumerate': <function ienumerate at 0x7b980bc900>,
1623
+ 'ienv': <function ienv at 0x7b980da480>,
1624
+ 'iexec': <function iexec at 0x7b980da660>,
1625
+ 'iinput': <function iinput at 0x7b980da700>,
1626
+ 'ijoin': <function ijoin at 0x7b980da7a0>,
1627
+ 'iloads_html': <function iloads_html at 0x7b980daac0>,
1628
+ 'iloads': <function iloads at 0x7b9c261260>,
1629
+ 'int_to_bin': <function int_to_bin at 0x7b980da840>,
1630
+ 'int_to_hex': <function int_to_hex at 0x7b980da8e0>,
1631
+ 'int_to_oct': <function int_to_oct at 0x7b980dab60>,
1632
+ 'is_valid_url': <function is_valid_url at 0x7b980dade0>,
1633
+ 'iopen': <function iopen at 0x7b97e92980>,
1634
+ 'iprint': <function iprint at 0x7b97ee9940>,
1635
+ 'is_raw_string': <function is_raw_string at 0x7b91d1c220>,
1636
+ 'ireplace': <function ireplace at 0x7b97f52700>,
1637
+ 'is_html': <function is_html at 0x7b91d1c180>,
1638
+ 'iscandir': <function iscandir at 0x7b91d1c2c0>,
1639
+ 'isplit': <function isplit at 0x7b91d1c360>,
1640
+ 'ivars': <function ivars at 0x7b91d1c400>,
1641
+ 'log': <function log at 0x7b91d1c4a0>,
1642
+ 'no_indent': <function no_indent at 0x7b91d1c540>,
1643
+ 'oct_to_int': <function oct_to_int at 0x7b91d1c5e0>,
1644
+ 'password_generator': <function password_generator at 0x7b91d1c680>,
1645
+ 'path_to_module': <function path_to_module at 0x7b91d1c720>,
1646
+ 'pip_freeze_without_version': <function pip_freeze_without_version at 0x7b91d1c7c0>,
1647
+ 'pip_update_pypipr': <function pip_update_pypipr at 0x7b91d1c860>,
1648
+ 'poetry_publish': <function poetry_publish at 0x7b91d1c900>,
1649
+ 'poetry_update_version': <function poetry_update_version at 0x7b91d1ca40>,
1650
+ 'print_dir': <function print_dir at 0x7b91d1cb80>,
1651
+ 'print_to_last_line': <function print_to_last_line at 0x7b91d1cc20>,
1652
+ 'random_bool': <function random_bool at 0x7b91d1ccc0>,
1653
+ 'repath': <function repath at 0x7b91d1ce00>,
1654
+ 'restart': <function restart at 0x7b91d1cea0>,
1655
+ 'set_timeout': <function set_timeout at 0x7b91d1cf40>,
1656
+ 'sets_ordered': <function sets_ordered at 0x7b91d1cfe0>,
1657
+ 'sqlite_backup': <function sqlite_backup at 0x7b91d1d080>,
1658
+ 'sqlite_delete_table': <function sqlite_delete_table at 0x7b91d1d120>,
1659
+ 'sqlite_get_all_tables': <function sqlite_get_all_tables at 0x7b91d1d1c0>,
1660
+ 'sqlite_get_data_table': <function sqlite_get_data_table at 0x7b91d1d260>,
1661
+ 'str_cmp': <function str_cmp at 0x7b91d1db20>,
1662
+ 'text_colorize': <function text_colorize at 0x7b91d1dbc0>,
1663
+ 'tiles': <function tiles at 0x7b91d1dc60>,
1664
+ 'traceback_filename': <function traceback_filename at 0x7b91d1dd00>,
1665
+ 'traceback_framename': <function traceback_framename at 0x7b91d1dda0>},
1664
1666
  'class': {'ComparePerformance': <class 'pypipr.ComparePerformance.ComparePerformance'>,
1665
1667
  'PintUregQuantity': <class 'pint.Quantity'>,
1666
1668
  'RunParallel': <class 'pypipr.RunParallel.RunParallel'>,
1667
1669
  'TextCase': <class 'pypipr.TextCase.TextCase'>},
1668
1670
  'variable': {'LINUX': True,
1669
- 'PintUreg': <pint.registry.UnitRegistry object at 0x76287e8e60>,
1671
+ 'PintUreg': <pint.registry.UnitRegistry object at 0x7b9b528110>,
1670
1672
  'WINDOWS': False},
1671
1673
  'module': {'asyncio': <module 'asyncio' from '/data/data/com.termux/files/usr/lib/python3.12/asyncio/__init__.py'>,
1672
1674
  'colorama': <module 'colorama' from '/data/data/com.termux/files/home/.cache/pypoetry/virtualenvs/pypipr-ZoJyDxLL-py3.12/lib/python3.12/site-packages/colorama/__init__.py'>,
@@ -1729,6 +1731,10 @@ some_function_again()
1729
1731
  some_function_more()
1730
1732
  ```
1731
1733
 
1734
+ ## no_indent
1735
+
1736
+ `no_indent(teks)`
1737
+
1732
1738
  ## oct_to_int
1733
1739
 
1734
1740
  `oct_to_int(n)`
@@ -1757,12 +1763,12 @@ print(password_generator())
1757
1763
 
1758
1764
  Output:
1759
1765
  ```py
1760
- 4CZ-@g\$
1766
+ uFP=a;<^
1761
1767
  ```
1762
1768
 
1763
1769
  ## path_to_module
1764
1770
 
1765
- `path_to_module(abs_path, indeks=0)`
1771
+ `path_to_module(path, indeks=0)`
1766
1772
 
1767
1773
  Mengubah absolute path file menjadi path modul relatif terhadap cwd (current working directory),
1768
1774
  dengan opsi untuk memangkas bagian akhir path berdasarkan indeks.
@@ -1836,7 +1842,7 @@ Output:
1836
1842
  __enter__ : https:/www.google.com
1837
1843
  __fspath__ : https:/www.google.com
1838
1844
  __getstate__ : (None, {'_raw_paths': ['https://www.google.com/'], '_drv': '', '_root': '', '_tail_cached': ['https:', 'www.google.com'], '_str': 'https:/www.google.com'})
1839
- __hash__ : 397743534404519733
1845
+ __hash__ : 5673470481560303578
1840
1846
  __init__ : None
1841
1847
  __init_subclass__ : None
1842
1848
  __module__ : pathlib
@@ -1848,7 +1854,7 @@ Output:
1848
1854
  __subclasshook__ : NotImplemented
1849
1855
  _drv :
1850
1856
  _flavour : <module 'posixpath' (frozen)>
1851
- _hash : 397743534404519733
1857
+ _hash : 5673470481560303578
1852
1858
  _lines : https:
1853
1859
  www.google.com
1854
1860
  _lines_cached : https:
@@ -1882,7 +1888,7 @@ _parts_normcase_cached : ['https:', 'www.google.com']
1882
1888
  is_reserved : False
1883
1889
  is_socket : False
1884
1890
  is_symlink : False
1885
- iterdir : <generator object Path.iterdir at 0x76203512f0>
1891
+ iterdir : <generator object Path.iterdir at 0x7b91ba7e00>
1886
1892
  joinpath : .
1887
1893
  name :
1888
1894
  parent : https:/www.google.com
@@ -1893,7 +1899,7 @@ _parts_normcase_cached : ['https:', 'www.google.com']
1893
1899
  stem :
1894
1900
  suffix :
1895
1901
  suffixes : []
1896
- walk : <generator object Path.walk at 0x7620db3d80>
1902
+ walk : <generator object Path.walk at 0x7b91defd80>
1897
1903
  with_segments : .
1898
1904
  ```
1899
1905
 
@@ -1935,12 +1941,12 @@ print(random_bool())
1935
1941
 
1936
1942
  Output:
1937
1943
  ```py
1938
- False
1944
+ True
1939
1945
  ```
1940
1946
 
1941
1947
  ## repath
1942
1948
 
1943
- `repath(path: pathlib.Path, folder_name=None, prepand_folder=None, append_folder=None, file_name=None, prepand_filename=None, append_filename=None, extension=None, prepand_extension=None, append_extension=None)`
1949
+ `repath(path, folder_name=None, prepand_folder=None, append_folder=None, file_name=None, prepand_filename=None, append_filename=None, extension=None, prepand_extension=None, append_extension=None)`
1944
1950
 
1945
1951
  ## restart
1946
1952
 
@@ -1973,7 +1979,7 @@ x.cancel()
1973
1979
 
1974
1980
  Output:
1975
1981
  ```py
1976
- <Timer(Thread-2, started 507319926000)>
1982
+ <Timer(Thread-2, started 530677452016)>
1977
1983
  menghentikan timeout 7
1978
1984
  ```
1979
1985
 
@@ -1991,7 +1997,7 @@ print(list(sets_ordered(array)))
1991
1997
 
1992
1998
  Output:
1993
1999
  ```py
1994
- <generator object sets_ordered at 0x7620352cf0>
2000
+ <generator object sets_ordered at 0x7b91a36c20>
1995
2001
  [2, 3, 12, 42, 1, 43, 41, 4, 24, 32]
1996
2002
  ```
1997
2003
 
@@ -2113,15 +2119,15 @@ print(ExampleComparePerformance().compare_performance())
2113
2119
 
2114
2120
  Output:
2115
2121
  ```py
2116
- {'a': <generator object ExampleComparePerformance.a.<locals>.<genexpr> at 0x7620658ac0>,
2122
+ {'a': <generator object ExampleComparePerformance.a.<locals>.<genexpr> at 0x7b91be4b80>,
2117
2123
  'b': (0, 1, 2, 3, 4, 5, 6, 7, 8, 9),
2118
2124
  'c': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
2119
2125
  'd': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]}
2120
- {'a': 127, 'b': 165, 'c': 100, 'd': 264}
2121
- {'a': 108, 'b': 163, 'c': 99, 'd': 237}
2122
- {'a': 100, 'b': 150, 'c': 103, 'd': 205}
2123
- {'a': 107, 'b': 161, 'c': 100, 'd': 206}
2124
- {'a': 107, 'b': 162, 'c': 100, 'd': 213}
2126
+ {'a': 100, 'b': 176, 'c': 127, 'd': 1982}
2127
+ {'a': 100, 'b': 172, 'c': 108, 'd': 234}
2128
+ {'a': 102, 'b': 158, 'c': 99, 'd': 206}
2129
+ {'a': 100, 'b': 173, 'c': 104, 'd': 211}
2130
+ {'a': 100, 'b': 161, 'c': 102, 'd': 214}
2125
2131
  ```
2126
2132
 
2127
2133
  ## PintUregQuantity
@@ -5,7 +5,7 @@ pypipr/PintUregQuantity.py,sha256=ErSZKB-GHShi1zKac30XgFdBwAUrxMo80IQzIjQ2HVc,11
5
5
  pypipr/RunParallel.py,sha256=a7Fa0YrnCeXakdgLTd2BYjB6Ck6vvZ1gIaTS7ZISmSg,6536
6
6
  pypipr/TextCase.py,sha256=v62BsRiJUSOqYZM9BHTKvQtF6rWgaug5F0XirXNlens,2896
7
7
  pypipr/WINDOWS.py,sha256=NMW-94lzdqwfEWv2lF_i2GcSHJFDwWjccFufpymg4-E,83
8
- pypipr/__init__.py,sha256=0kyjPgg0TIfDiiQl7IO-7uMbxt_lZPuxSSsXTMgrf88,3837
8
+ pypipr/__init__.py,sha256=M0CLkZy51oks6SB0qBfZQKiEjUdwPWERlXZdCQQEA-A,3870
9
9
  pypipr/__terminal__.py,sha256=N_NEXa0V5QLb-dkP1Vp_fYKNjE4jGTqkiYNwPPOXZtw,1412
10
10
  pypipr/auto_reload.py,sha256=FGchFBjQs_eT7CmOMLNYoch-17q7ySFOnPx5z1kbH3E,918
11
11
  pypipr/avg.py,sha256=wUtX3x8dgLoODhQLyMB-HRMVo8Ha2yz3cp7lgcUNbr0,218
@@ -22,7 +22,7 @@ pypipr/create_folder.py,sha256=YgK3Rhg-v8314VNSgUvq7LgyLHlpHGBYXaa1RgRsbxo,523
22
22
  pypipr/datetime_from_string.py,sha256=-GJ_QHD1feUMX0o8nwCPHGflDPXr84ovN4Awnk1T9r8,466
23
23
  pypipr/datetime_now.py,sha256=YEaatUOp0KBWYRhOFnxnVW0X7C1XEx3dpdBEn5Vwy9w,379
24
24
  pypipr/dict_first.py,sha256=X_pSaY0DLGZJSR2zJBa17yqbwAFLJrVpzb2gxR5wzZg,377
25
- pypipr/dirname.py,sha256=LFYG6IiXwqtNtQ5-Z1cCJl8y2SytfSllqEBxwcVe3FE,365
25
+ pypipr/dirname.py,sha256=T6aIEOebLEQbmQ1eYrk8CuStNKUiu3kAR3SMKkqXtK8,615
26
26
  pypipr/django_clear_migrations.py,sha256=Sjb7qq7OZc1_iTNcR2mtRY6k2um9Jr6X4A4PMqOqnCU,302
27
27
  pypipr/django_runserver.py,sha256=puzQajQ_RdLqEZFplKKEKsfhaG-IxHGW4CXZc80EnA8,734
28
28
  pypipr/exit_if_empty.py,sha256=2qUqmYPSkr1NtKPqIN7BAc-WGtcmPPAw8AdO8HirOv8,321
@@ -66,9 +66,10 @@ pypipr/iscandir.py,sha256=kw_9mHL2E3ZeT8w4xxUVEVNLj2ML8G9xvv9hqg9yaNg,631
66
66
  pypipr/isplit.py,sha256=N2BiA_wVnrENYwokSzvo0CAiQWk3g7AnwuWFIUgevNM,383
67
67
  pypipr/ivars.py,sha256=gTSQKis1hp71opy-p9btmvXfxpaIzD1FScNkKdrizyQ,737
68
68
  pypipr/log.py,sha256=aQ9DeFG03xIAUQYR4TiBdh80M6WvxDtNDTSjpKOSXHk,1041
69
+ pypipr/no_indent.py,sha256=C1lzuP_1XLs9E1V7POhGViB76CKVKfwXhtaOrJgNGl4,75
69
70
  pypipr/oct_to_int.py,sha256=IoI_XOFZi6yzmqAirGIP6YWRgghU7IcPWzUk5DO1ZVo,191
70
71
  pypipr/password_generator.py,sha256=O0KagbEEZnwm9OGy71G-wWvW1sJLdAmZNtlT4KKMrN4,357
71
- pypipr/path_to_module.py,sha256=eAVrm3Qeg2H_GAlmkzeU8f-XO_tKRYuO1MSdT7vTuSU,822
72
+ pypipr/path_to_module.py,sha256=FSIIJsWFEhbOoNvtIZr4WSYGRaCfnRxNXvATfAgJtQs,933
72
73
  pypipr/pip_freeze_without_version.py,sha256=txQ7zn-RCEsO94XK-IhSZtMgDUHvoMJm0kO0j07WEjM,675
73
74
  pypipr/pip_update_pypipr.py,sha256=bKQ-7cReZHwQYcvkm9bVxbexdda1oz7jGXPsjdr-DnQ,147
74
75
  pypipr/poetry_publish.py,sha256=2mebYHdjQ3PKaZsif_r1Nz4N-PEaoozPf4S6sm5nVkw,349
@@ -78,7 +79,7 @@ pypipr/print_dir.py,sha256=kO-YruOQ_gCaN7gsSXfcTbufWqAqtRemW8KrUqIijC8,919
78
79
  pypipr/print_log.py,sha256=Oct2xfcMv_8iK2ySioQYrtlTYou6Cd671PqgPL9IGUE,282
79
80
  pypipr/print_to_last_line.py,sha256=ym25h5MbjIaexcczDEGjNbr3dciS6_Vq8hFyMWo73PE,915
80
81
  pypipr/random_bool.py,sha256=OkvQqpusHGc5mt2nHCycA7-s2I0gbN6UxI7opMOFppE,352
81
- pypipr/repath.py,sha256=2_q8MayLZGtGvMUMe3DpdsJfosOXW5oj3-edyZa2mSQ,1275
82
+ pypipr/repath.py,sha256=hPwsgoDXkmTf1Z5OyQXdX5cROqVrUWrbO-sN6YIPSI0,1292
82
83
  pypipr/restart.py,sha256=jUhsjZACAAcItYzCuiULHLFikoVyYDJWj16hCLARmAw,272
83
84
  pypipr/set_timeout.py,sha256=heg1J3jSArgG5_75BNLrujjh7I9meTyAzHpuAY_4IBc,698
84
85
  pypipr/sets_ordered.py,sha256=ve2Nc1eNYD_7QaTf_4otEAvzL1XpZP2MjX0KHSXF5nA,325
@@ -92,7 +93,7 @@ pypipr/tiles.py,sha256=uSEYqvjBQHIz7pZKtdta1XwFhGrMFieMHOH2DKrlcXc,328
92
93
  pypipr/to_str.py,sha256=vSuspf-ZQldf4enkssa9XH0WMjkmWug51G9ia0K5occ,597
93
94
  pypipr/traceback_filename.py,sha256=4o85J0N8clI0cM6NTGcKZ4zxR9yS7W2NS_bz3J2_PnY,288
94
95
  pypipr/traceback_framename.py,sha256=_mullrAZzMhBFEFVCgdsmkYQmYUkd58o-J-HuMntKyc,291
95
- pypipr-1.0.166.dist-info/METADATA,sha256=tIXQ9tsmHfDFJx4yrGPUa2HnEIZFgHnxu8ntoy7KGVU,57826
96
- pypipr-1.0.166.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
97
- pypipr-1.0.166.dist-info/entry_points.txt,sha256=XEBtOa61BCVW4cVvoqYQnyTcenJ1tzFFB09YnuqlKBY,51
98
- pypipr-1.0.166.dist-info/RECORD,,
96
+ pypipr-1.0.168.dist-info/METADATA,sha256=JKP9Po7ILtpdl5-l2IWdPhJKBKTqT2yD6p7cMynxDJ8,57938
97
+ pypipr-1.0.168.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
98
+ pypipr-1.0.168.dist-info/entry_points.txt,sha256=XEBtOa61BCVW4cVvoqYQnyTcenJ1tzFFB09YnuqlKBY,51
99
+ pypipr-1.0.168.dist-info/RECORD,,