pypipr 1.0.181__py3-none-any.whl → 1.0.182__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
@@ -20,6 +20,7 @@ from .datetime_from_string import datetime_from_string
20
20
  from .datetime_now import datetime_now
21
21
  from .dict_first import dict_first
22
22
  from .dirname import dirname
23
+ from .dirpath import dirpath
23
24
  from .django_clear_migrations import django_clear_migrations
24
25
  from .django_runserver import django_runserver
25
26
  from .exit_if_empty import exit_if_empty
pypipr/dict_first.py CHANGED
@@ -12,5 +12,8 @@ def dict_first(d: dict, remove=False):
12
12
  print(dict_first(d))
13
13
  ```
14
14
  """
15
- for k in d:
16
- return (k, d.pop(k) if remove else d[k])
15
+ k = next(iter(d))
16
+ v = d[k]
17
+ if remove:
18
+ del d[k]
19
+ return (k, v)
pypipr/dirname.py CHANGED
@@ -1,35 +1,10 @@
1
1
  from pathlib import Path
2
2
 
3
+ from .traceback_filename import traceback_filename
3
4
 
4
- def dirname(path, indeks=-1, abs_path=None):
5
- """
6
- Mengembalikan bagian direktori dari sebuah path berdasarkan indeks.
7
- Tanpa trailing slash di akhir.
8
-
9
- Args:
10
- path (str): Path lengkap ke file atau direktori.
11
- indeks (int): Indeks negatif untuk menentukan seberapa jauh naik ke atas direktori.
12
- abs_path (bool | None):
13
- - True untuk path absolut,
14
- - False untuk path relatif terhadap cwd,
15
- - None untuk path sesuai pemotongan manual.
16
-
17
- Returns:
18
- str: Path direktori hasil ekstraksi.
19
-
20
- Contoh:
21
- dirname("/a/b/c/d/e.txt", -2) -> "a/b/c"
22
- """
23
5
 
6
+ def dirname(path=None, indeks=-2):
7
+ path = path or traceback_filename()
24
8
  path_obj = Path(path)
25
9
  parts = path_obj.parts
26
- new_parts = parts[:indeks]
27
-
28
- new_path = Path(*new_parts)
29
- if abs_path is None:
30
- return str(new_path)
31
-
32
- resolved_path = new_path.resolve()
33
- if abs_path:
34
- return str(resolved_path)
35
- return str(resolved_path.relative_to(Path.cwd()))
10
+ return parts[indeks]
pypipr/dirpath.py ADDED
@@ -0,0 +1,35 @@
1
+ from pathlib import Path
2
+
3
+
4
+ def dirpath(path, indeks=-1, abs_path=None):
5
+ """
6
+ Mengembalikan bagian direktori dari sebuah path berdasarkan indeks.
7
+ Tanpa trailing slash di akhir.
8
+
9
+ Args:
10
+ path (str): Path lengkap ke file atau direktori.
11
+ indeks (int): Indeks negatif untuk menentukan seberapa jauh naik ke atas direktori.
12
+ abs_path (bool | None):
13
+ - True untuk path absolut,
14
+ - False untuk path relatif terhadap cwd,
15
+ - None untuk path sesuai pemotongan manual.
16
+
17
+ Returns:
18
+ str: Path direktori hasil ekstraksi.
19
+
20
+ Contoh:
21
+ dirpath("/a/b/c/d/e.txt", -2) -> "a/b/c"
22
+ """
23
+
24
+ path_obj = Path(path)
25
+ parts = path_obj.parts
26
+ new_parts = parts[:indeks]
27
+
28
+ new_path = Path(*new_parts)
29
+ if abs_path is None:
30
+ return str(new_path)
31
+
32
+ resolved_path = new_path.resolve()
33
+ if abs_path:
34
+ return str(resolved_path)
35
+ return str(resolved_path.relative_to(Path.cwd()))
pypipr/iopen.py CHANGED
@@ -6,7 +6,7 @@ import lxml.html
6
6
  from .is_valid_url import is_valid_url
7
7
  from .to_str import to_str
8
8
  from .create_folder import create_folder
9
- from .dirname import dirname
9
+ from .dirpath import dirpath
10
10
 
11
11
 
12
12
  def iopen(path, data=None, regex=None, css_select=None, xpath=None, file_append=False):
@@ -72,7 +72,7 @@ def iopen(path, data=None, regex=None, css_select=None, xpath=None, file_append=
72
72
  # Write File
73
73
  if data is not None:
74
74
  mode = "a" if file_append else "w"
75
- create_folder(dirname(path))
75
+ create_folder(dirpath(path))
76
76
  with open(path, mode, encoding="utf-8") as f:
77
77
  content = f.write(data)
78
78
  # Read File
pypipr/path_to_module.py CHANGED
@@ -1,6 +1,6 @@
1
1
  import os
2
2
 
3
- from pypipr.dirname import dirname
3
+ from .dirpath import dirpath
4
4
 
5
5
 
6
6
  def path_to_module(path, indeks=0):
@@ -18,16 +18,5 @@ def path_to_module(path, indeks=0):
18
18
  Returns:
19
19
  str: Path bergaya modul Python (dipisah dengan ".")
20
20
  """
21
- path = dirname(path, abs_path=False, indeks=indeks)
21
+ path = dirpath(path, abs_path=False, indeks=indeks)
22
22
  return path.replace(os.sep, ".")
23
-
24
- cwd = os.getcwd()
25
- rel_path = os.path.relpath(abs_path, cwd)
26
- rel_path_no_ext = os.path.splitext(rel_path)[0]
27
-
28
- parts = rel_path_no_ext.split(os.sep)
29
-
30
- if indeks < 0:
31
- parts = parts[: len(parts) + indeks]
32
-
33
- return ".".join(parts)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: pypipr
3
- Version: 1.0.181
3
+ Version: 1.0.182
4
4
  Summary: The Python Package Index Project
5
5
  Author: ufiapjj
6
6
  Author-email: ufiapjj@gmail.com
@@ -254,8 +254,8 @@ iprint(irange("z", "a", 4))
254
254
 
255
255
  Output:
256
256
  ```py
257
- <generator object int_range at 0x707b63a940>
258
- <generator object int_range at 0x707b63aa40>
257
+ <generator object int_range at 0x7a0042a940>
258
+ <generator object int_range at 0x7a0042aa40>
259
259
  [13, 12, 11, 10, 9, 8, 7, 6]
260
260
  [2, 5, 8]
261
261
  []
@@ -287,7 +287,7 @@ print(list(batchmaker(s)))
287
287
 
288
288
  Output:
289
289
  ```py
290
- <generator object batchmaker at 0x707b5e7d00>
290
+ <generator object batchmaker at 0x7a003d3e20>
291
291
  ['Urutan 1 dan 10 dan j dan Z saja.', 'Urutan 1 dan 10 dan j dan K saja.', 'Urutan 1 dan 10 dan j dan saja.']
292
292
  ```
293
293
 
@@ -341,7 +341,7 @@ print(list(batch_calculate("{1 10} m ** {1 3}")))
341
341
 
342
342
  Output:
343
343
  ```py
344
- <generator object batch_calculate at 0x707b647e60>
344
+ <generator object batch_calculate at 0x7a00433e60>
345
345
  [('1 m ** 1', <Quantity(1, 'meter')>), ('1 m ** 2', <Quantity(1, 'meter ** 2')>), ('1 m ** 3', <Quantity(1, 'meter ** 3')>)]
346
346
  ```
347
347
 
@@ -447,7 +447,7 @@ print(list(chunk_array(arr, 5)))
447
447
 
448
448
  Output:
449
449
  ```py
450
- <generator object chunk_array at 0x707b63f2e0>
450
+ <generator object chunk_array at 0x7a0042f2e0>
451
451
  [[2, 3, 12, 3, 3], [42, 42, 1, 43, 2], [42, 41, 4, 24, 32], [42, 3, 12, 32, 42], [42]]
452
452
  ```
453
453
 
@@ -498,9 +498,9 @@ print(datetime_now("Etc/GMT+7"))
498
498
 
499
499
  Output:
500
500
  ```py
501
- 2025-05-08 12:39:39.010319+07:00
502
- 2025-05-08 05:39:39.011947+00:00
503
- 2025-05-07 22:39:39.016933-07:00
501
+ 2025-05-28 20:00:58.890065+07:00
502
+ 2025-05-28 13:00:58.891018+00:00
503
+ 2025-05-28 06:00:58.894035-07:00
504
504
  ```
505
505
 
506
506
  ## dict_first
@@ -525,9 +525,24 @@ Output:
525
525
  ('key3', 'value3')
526
526
  ```
527
527
 
528
+ ## traceback_filename
529
+
530
+ `traceback_filename(stack_level=-3)`
531
+
532
+ Mendapatkan filename dimana fungsi yg memanggil
533
+ fungsi dimana fungsi ini diletakkan dipanggil.
534
+
535
+ ```py
536
+ print(traceback_filename())
537
+ ```
538
+
528
539
  ## dirname
529
540
 
530
- `dirname(path, indeks=-1, abs_path=None)`
541
+ `dirname(path=None, indeks=-2)`
542
+
543
+ ## dirpath
544
+
545
+ `dirpath(path, indeks=-1, abs_path=None)`
531
546
 
532
547
  Mengembalikan bagian direktori dari sebuah path berdasarkan indeks.
533
548
  Tanpa trailing slash di akhir.
@@ -544,7 +559,7 @@ Returns:
544
559
  str: Path direktori hasil ekstraksi.
545
560
 
546
561
  Contoh:
547
- dirname("/a/b/c/d/e.txt", -2) -> "a/b/c"
562
+ dirpath("/a/b/c/d/e.txt", -2) -> "a/b/c"
548
563
 
549
564
  ## django_clear_migrations
550
565
 
@@ -619,7 +634,7 @@ iprint(filter_empty(var))
619
634
 
620
635
  Output:
621
636
  ```py
622
- <generator object filter_empty at 0x707b63f4c0>
637
+ <generator object filter_empty at 0x7a0042f4c0>
623
638
  [1, '0', True, {}, ['eee']]
624
639
  ```
625
640
 
@@ -666,8 +681,8 @@ print(list(get_class_method(ExampleGetClassMethod)))
666
681
 
667
682
  Output:
668
683
  ```py
669
- <generator object get_class_method at 0x707b340d60>
670
- [<function ExampleGetClassMethod.a at 0x707b333ba0>, <function ExampleGetClassMethod.b at 0x707b333a60>, <function ExampleGetClassMethod.c at 0x707b333b00>, <function ExampleGetClassMethod.d at 0x707b333ce0>]
684
+ <generator object get_class_method at 0x7a00130d60>
685
+ [<function ExampleGetClassMethod.a at 0x7a00123c40>, <function ExampleGetClassMethod.b at 0x7a00123b00>, <function ExampleGetClassMethod.c at 0x7a00123ba0>, <function ExampleGetClassMethod.d at 0x7a00123d80>]
671
686
  ```
672
687
 
673
688
  ## get_filesize
@@ -806,6 +821,7 @@ Output:
806
821
  'datetime_now',
807
822
  'dict_first',
808
823
  'dirname',
824
+ 'dirpath',
809
825
  'django_clear_migrations',
810
826
  'django_runserver',
811
827
  'exit_if_empty',
@@ -1095,7 +1111,7 @@ Output:
1095
1111
 
1096
1112
  ## ienumerate
1097
1113
 
1098
- `ienumerate(iterator, start=0, key=<function int_to_int at 0x707eafaf20>)`
1114
+ `ienumerate(iterator, start=0, key=<function int_to_int at 0x7a042fb060>)`
1099
1115
 
1100
1116
  meningkatkan fungsi enumerate() pada python
1101
1117
  untuk key menggunakan huruf dan basis angka lainnya.
@@ -1108,7 +1124,7 @@ iprint(ienumerate(it, key=int_to_chr))
1108
1124
 
1109
1125
  Output:
1110
1126
  ```py
1111
- <generator object ienumerate at 0x707b63f4c0>
1127
+ <generator object ienumerate at 0x7a0042f4c0>
1112
1128
  [('a', 'ini'), ('b', 'contoh'), ('c', 'enumerator')]
1113
1129
  ```
1114
1130
 
@@ -1185,7 +1201,7 @@ print(ijoin(10, ' '))
1185
1201
 
1186
1202
  Output:
1187
1203
  ```py
1188
- asd, weq, dfs, qweqw
1204
+ dfs, qweqw, weq, asd
1189
1205
  ,ini,path,seperti,url,
1190
1206
  ini,path,seperti,url
1191
1207
  <li>satu</li>
@@ -1230,10 +1246,10 @@ pprint.pprint(iloads_html(iopen("https://harga-emas.org/1-gram/")), depth=10)
1230
1246
  Output:
1231
1247
  ```py
1232
1248
  (['Home', 'Emas 1 Gram', 'History', 'Trend', 'Perak 1 Gram', 'Pluang'],
1233
- [['Harga Emas Hari Ini - Kamis, 08 Mei 2025'],
1234
- ['Spot Emas USD3.376,41 (-11,83) / oz',
1249
+ [['Harga Emas Hari Ini - Rabu, 28 Mei 2025'],
1250
+ ['Spot Emas USD3.310,89 (+13,78) / oz',
1235
1251
  'Kurs IDR1,00 / USD',
1236
- 'Emas IDR↓109 (-0) / gr'],
1252
+ 'Emas IDR↑106 (+0) / gr'],
1237
1253
  ['LM Antam (Jual)↓1.513.000 (-30.000) / gr',
1238
1254
  'LM Antam (Beli)↓1.366.000 (-30.000) / gr']],
1239
1255
  [['Harga Emas Hari Ini'],
@@ -1256,10 +1272,10 @@ Output:
1256
1272
  'Update harga LM Pegadaian :31 Desember 1969']],
1257
1273
  [['Spot Harga Emas Hari Ini (Market Open)'],
1258
1274
  ['Satuan', 'USD', 'Kurs\xa0Dollar', 'IDR'],
1259
- ['Ounce\xa0(oz)', '3.376,41 (-11,83)', '1,00', '3.376'],
1260
- ['Gram\xa0(gr)', '108,55', '1,00', '109 (-0)'],
1261
- ['Kilogram\xa0(kg)', '108.554,10', '1,00', '108.554'],
1262
- ['Update harga emas :08 Mei 2025, pukul 12:39Update kurs :14 Maret 2025, '
1275
+ ['Ounce\xa0(oz)', '3.310,89 (+13,78)', '1,00', '3.311'],
1276
+ ['Gram\xa0(gr)', '106,45', '1,00', '106 (+0)'],
1277
+ ['Kilogram\xa0(kg)', '106.447,59', '1,00', '106.448'],
1278
+ ['Update harga emas :28 Mei 2025, pukul 19:59Update kurs :14 Maret 2025, '
1263
1279
  'pukul 10:13']],
1264
1280
  [['Gram', 'UBS Gold 99.99%'],
1265
1281
  ['Jual', 'Beli'],
@@ -1297,36 +1313,36 @@ Output:
1297
1313
  ['Unit', 'USD', 'IDR'],
1298
1314
  ['Angka', '+/-', 'Angka', '+/-'],
1299
1315
  ['Hari Ini', 'Kurs', '', '', '1', '%'],
1300
- ['oz', '3.388,24', '-11,83-0,35%', '3.388', '-12-0,35%'],
1301
- ['gr', '108,93', '-0,38-0,35%', '109', '-0-0,35%'],
1316
+ ['oz', '3.297,11', '+13,78+0,42%', '3.297', '+14+0,42%'],
1317
+ ['gr', '106,00', '+0,44+0,42%', '106', '+0+0,42%'],
1302
1318
  ['30 Hari', 'Kurs', '', '', '1', '%'],
1303
- ['oz', '2.987,14', '+389,27+13,03%', '2.987', '+389+13,03%'],
1304
- ['gr', '96,04', '+12,52+13,03%', '96', '+13+13,03%'],
1305
- ['2 Bulan', 'Kurs', '', '', '16.315', '-16.314-99,99%'],
1306
- ['oz', '2.911,17', '+465,24+15,98%', '47.495.739', '-47.492.362-99,99%'],
1307
- ['gr', '93,60', '+14,96+15,98', '1.527.023', '-1.526.915-99,99%'],
1308
- ['6 Bulan', 'Kurs', '', '', '15.767', '-15.766-99,99%'],
1309
- ['oz', '2.684,64', '+691,77+25,77%', '42.328.719', '-42.325.342-99,99%'],
1310
- ['gr', '86,31', '+22,24+25,77%', '1.360.900', '-1.360.791-99,99%'],
1311
- ['1 Tahun', 'Kurs', '', '', '16.054', '-16.053-99,99%'],
1312
- ['oz', '2.317,41', '+1.059,00+45,70%', '37.203.700', '-37.200.324-99,99%'],
1313
- ['gr', '74,51', '+34,05+45,70%', '1.196.127', '-1.196.018-99,99%'],
1319
+ ['oz', '3.336,66', '-25,77-0,77%', '3.337', '-26-0,77%'],
1320
+ ['gr', '107,28', '-0,83-0,77%', '107', '-1-0,77%'],
1321
+ ['2 Bulan', 'Kurs', '', '', '1', '%'],
1322
+ ['oz', '3.085,58', '+225,31+7,30%', '3.086', '+225+7,30%'],
1323
+ ['gr', '99,20', '+7,24+7,30', '99', '+7+7,30%'],
1324
+ ['6 Bulan', 'Kurs', '', '', '15.864', '-15.863-99,99%'],
1325
+ ['oz', '2.661,93', '+648,96+24,38%', '42.228.858', '-42.225.547-99,99%'],
1326
+ ['gr', '85,58', '+20,86+24,38%', '1.357.689', '-1.357.583-99,99%'],
1327
+ ['1 Tahun', 'Kurs', '', '', '16.064', '-16.063-99,99%'],
1328
+ ['oz', '2.357,80', '+953,09+40,42%', '37.875.699', '-37.872.388-99,99%'],
1329
+ ['gr', '75,81', '+30,64+40,42%', '1.217.732', '-1.217.626-99,99%'],
1314
1330
  ['2 Tahun', 'Kurs', '', '', '15.731', '-15.730-99,99%'],
1315
- ['oz', '1.823,86', '+1.552,55+85,12%', '28.691.142', '-28.687.765-99,99%'],
1316
- ['gr', '58,64', '+49,92+85,12%', '922.442', '-922.333-99,99%'],
1317
- ['3 Tahun', 'Kurs', '', '', '14.480', '-14.479-99,99%'],
1318
- ['oz', '1.861,38', '+1.515,03+81,39%', '26.952.782', '-26.949.406-99,99%'],
1319
- ['gr', '59,84', '+48,71+81,39%', '866.552', '-866.444-99,99%'],
1320
- ['5 Tahun', 'Kurs', '', '', '15.009', '-15.008-99,99%'],
1321
- ['oz', '1.702,22', '+1.674,19+98,35%', '25.548.637', '-25.545.261-99,99%'],
1322
- ['gr', '54,73', '+53,83+98,35%', '821.408', '-821.299-99,99%']])
1331
+ ['oz', '1.823,86', '+1.487,03+81,53%', '28.691.142', '-28.687.831-99,99%'],
1332
+ ['gr', '58,64', '+47,81+81,53%', '922.442', '-922.335-99,99%'],
1333
+ ['3 Tahun', 'Kurs', '', '', '14.645', '-14.644-99,99%'],
1334
+ ['oz', '1.853,48', '+1.457,41+78,63%', '27.144.233', '-27.140.922-99,99%'],
1335
+ ['gr', '59,59', '+46,86+78,63%', '872.707', '-872.601-99,99%'],
1336
+ ['5 Tahun', 'Kurs', '', '', '14.733', '-14.732-99,99%'],
1337
+ ['oz', '1.735,31', '+1.575,58+90,80%', '25.566.340', '-25.563.029-99,99%'],
1338
+ ['gr', '55,79', '+50,66+90,80%', '821.977', '-821.870-99,99%']])
1323
1339
  (['Home', 'Emas 1 Gram', 'History', 'Trend', 'Perak 1 Gram', 'Pluang'],
1324
1340
  [[''],
1325
1341
  ['Emas 24 KaratHarga Emas 1 Gram', ''],
1326
- ['USD', '108,55↓', '-0,38-0,35%'],
1327
- ['KURS', '16.475,60↑', '+7,10+0,04%'],
1328
- ['IDR', '1.788.493,97↓', '-5.492,95-0,31%'],
1329
- ['Kamis, 08 Mei 2025 12:39']],
1342
+ ['USD', '106,47↑', '+0,47+0,44%'],
1343
+ ['KURS', '16.318,96↑', '+35,31+0,22%'],
1344
+ ['IDR', '1.737.470,66↑', '+11.329,70+0,66%'],
1345
+ ['Rabu, 28 Mei 2025 20:00']],
1330
1346
  [[''],
1331
1347
  ['Emas 1 Gram (IDR)Emas 1 Gram (USD)Kurs USD-IDR',
1332
1348
  'Hari Ini',
@@ -1337,25 +1353,25 @@ Output:
1337
1353
  '']],
1338
1354
  [['Pergerakkan Harga Emas 1 Gram'],
1339
1355
  ['', 'Penutupan Kemarin', 'Pergerakkan Hari Ini', 'Rata-rata'],
1340
- ['USD', '108,93', '108,55 - 108,93', '108,74'],
1341
- ['KURS', '16.468,50', '16.468,50 - 16.475,60', '16.472,05'],
1342
- ['IDR', '1.793.986,92', '1.788.493,97 - 1.793.986,92', '1.791.240,45'],
1356
+ ['USD', '106,00', '106,00 - 106,47', '106,24'],
1357
+ ['KURS', '16.283,65', '16.283,65 - 16.318,96', '16.301,31'],
1358
+ ['IDR', '1.726.140,96', '1.726.140,96 - 1.737.470,66', '1.731.805,81'],
1343
1359
  [''],
1344
1360
  ['', 'Awal Tahun', 'Pergerakkan YTD', '+/- YTD'],
1345
- ['USD', '84,42', '84,38 - 109,73', '+24,13 (28,58%)'],
1346
- ['KURS', '16.220,76', '16.156,70 - 16.877,75', '+254,84 (1,57%)'],
1361
+ ['USD', '84,42', '84,38 - 109,73', '+22,05 (26,12%)'],
1362
+ ['KURS', '16.220,76', '16.156,70 - 16.877,75', '+98,20 (0,61%)'],
1347
1363
  ['IDR',
1348
1364
  '1.369.306,75',
1349
1365
  '1.368.695,74 - 1.850.462,40',
1350
- '+419.187,22 (30,61%)'],
1366
+ '+368.163,91 (26,89%)'],
1351
1367
  [''],
1352
1368
  ['', 'Tahun Lalu / 52 Minggu', 'Pergerakkan 52 Minggu', '+/- 52 Minggu'],
1353
- ['USD', '74,37', '73,75 - 109,73', '+34,18 (45,96%)'],
1354
- ['KURS', '16.067,00', '15.100,00 - 16.877,75', '+408,60 (2,54%)'],
1369
+ ['USD', '75,72', '73,75 - 109,73', '+30,75 (40,61%)'],
1370
+ ['KURS', '16.073,80', '15.100,00 - 16.877,75', '+245,16 (1,53%)'],
1355
1371
  ['IDR',
1356
- '1.194.982,56',
1357
- '1.197.616,87 - 1.850.462,40',
1358
- '+593.511,41 (49,67%)']])
1372
+ '1.217.027,90',
1373
+ '1.200.397,56 - 1.850.462,40',
1374
+ '+520.442,76 (42,76%)']])
1359
1375
  ```
1360
1376
 
1361
1377
  ## iloads
@@ -1485,7 +1501,7 @@ Output:
1485
1501
  ```py
1486
1502
  8
1487
1503
  ['m', 'a', 'n', 'a', 'a', 'j', 'a']
1488
- False
1504
+ [<Element a at 0x7a0016ab20>, <Element a at 0x7a0016ada0>, <Element a at 0x7a0016ae40>, <Element a at 0x7a0016aee0>, <Element a at 0x7a0016afd0>, <Element a at 0x7a0016b250>, <Element a at 0x7a0016b3e0>, <Element a at 0x7a0016b4d0>, <Element a at 0x7a0016bd90>, <Element a at 0x7a0016bed0>, <Element a at 0x7a0016bf70>, <Element a at 0x7a0019c140>, <Element a at 0x7a0019c050>, <Element a at 0x7a0019c190>, <Element a at 0x7a0019c1e0>, <Element a at 0x7a0019c230>, <Element a at 0x7a0019c280>, <Element a at 0x7a0019c2d0>]
1489
1505
  False
1490
1506
  ```
1491
1507
 
@@ -1555,7 +1571,7 @@ print(list(iscandir("./", recursive=False, scan_file=False)))
1555
1571
 
1556
1572
  Output:
1557
1573
  ```py
1558
- <generator object iscandir at 0x707b63f2e0>
1574
+ <generator object iscandir at 0x7a0042f3d0>
1559
1575
  [PosixPath('.git'), PosixPath('.vscode'), PosixPath('pypipr'), PosixPath('__pycache__'), PosixPath('dist')]
1560
1576
  ```
1561
1577
 
@@ -1588,98 +1604,99 @@ iprint(ivars(__import__('pypipr')))
1588
1604
 
1589
1605
  Output:
1590
1606
  ```py
1591
- {'function': {'avg': <function avg at 0x70853e8720>,
1592
- 'get_filemtime': <function get_filemtime at 0x707ec020c0>,
1593
- 'print_colorize': <function print_colorize at 0x707ec022a0>,
1594
- 'print_log': <function print_log at 0x707ec02160>,
1595
- 'console_run': <function console_run at 0x707ec00720>,
1596
- 'auto_reload': <function auto_reload at 0x707eca3a60>,
1597
- 'basename': <function basename at 0x707ec02340>,
1598
- 'chr_to_int': <function chr_to_int at 0x707ec028e0>,
1599
- 'int_to_chr': <function int_to_chr at 0x707ec02980>,
1600
- 'irange': <function irange at 0x707ec02e80>,
1601
- 'batchmaker': <function batchmaker at 0x707ec02660>,
1602
- 'calculate': <function calculate at 0x707ec02200>,
1603
- 'batch_calculate': <function batch_calculate at 0x707ec023e0>,
1604
- 'bin_to_int': <function bin_to_int at 0x707ec025c0>,
1605
- 'is_empty': <function is_empty at 0x707ec03740>,
1606
- 'exit_if_empty': <function exit_if_empty at 0x707ec03600>,
1607
- 'input_char': <function input_char at 0x707ec036a0>,
1608
- 'choices': <function choices at 0x707ec039c0>,
1609
- 'chunk_array': <function chunk_array at 0x707ec03a60>,
1610
- 'create_folder': <function create_folder at 0x707ec03b00>,
1611
- 'datetime_from_string': <function datetime_from_string at 0x707ec03ba0>,
1612
- 'datetime_now': <function datetime_now at 0x707ec03c40>,
1613
- 'dict_first': <function dict_first at 0x707ebf1ee0>,
1614
- 'dirname': <function dirname at 0x707ebf2020>,
1615
- 'django_clear_migrations': <function django_clear_migrations at 0x707ebf20c0>,
1616
- 'django_runserver': <function django_runserver at 0x707ebf23e0>,
1617
- 'is_iterable': <function is_iterable at 0x707ebf27a0>,
1618
- 'to_str': <function to_str at 0x707ebf28e0>,
1619
- 'filter_empty': <function filter_empty at 0x707ebf2660>,
1620
- 'get_by_index': <function get_by_index at 0x707ebf2840>,
1621
- 'get_class_method': <function get_class_method at 0x707ebf2980>,
1622
- 'get_filesize': <function get_filesize at 0x707ebf2ac0>,
1623
- 'github_init': <function github_init at 0x707ebf2b60>,
1624
- 'github_pull': <function github_pull at 0x707ebf2c00>,
1625
- 'github_push': <function github_push at 0x707ebf2d40>,
1626
- 'github_user': <function github_user at 0x707ebf2de0>,
1627
- 'hex_to_int': <function hex_to_int at 0x707ebf2e80>,
1628
- 'iargv': <function iargv at 0x707ebf2f20>,
1629
- 'idir': <function idir at 0x707ebf2fc0>,
1630
- 'idumps_html': <function idumps_html at 0x707eafaa20>,
1631
- 'idumps': <function idumps at 0x707ebf3060>,
1632
- 'int_to_int': <function int_to_int at 0x707eafaf20>,
1633
- 'ienumerate': <function ienumerate at 0x707eae5260>,
1634
- 'ienv': <function ienv at 0x707eafade0>,
1635
- 'iexec': <function iexec at 0x707eafafc0>,
1636
- 'iinput': <function iinput at 0x707eafb060>,
1637
- 'ijoin': <function ijoin at 0x707eafb100>,
1638
- 'iloads_html': <function iloads_html at 0x707eafb420>,
1639
- 'iloads': <function iloads at 0x7085e61260>,
1640
- 'int_to_bin': <function int_to_bin at 0x707eafb1a0>,
1641
- 'int_to_hex': <function int_to_hex at 0x707eafb240>,
1642
- 'int_to_oct': <function int_to_oct at 0x707eafb4c0>,
1643
- 'is_valid_url': <function is_valid_url at 0x707eafb740>,
1644
- 'iopen': <function iopen at 0x707e89f2e0>,
1645
- 'iprint': <function iprint at 0x707e8f22a0>,
1646
- 'is_raw_string': <function is_raw_string at 0x707ca0cc20>,
1647
- 'ireplace': <function ireplace at 0x707ca03100>,
1648
- 'is_html': <function is_html at 0x707ca0cb80>,
1649
- 'iscandir': <function iscandir at 0x707ca0ccc0>,
1650
- 'isplit': <function isplit at 0x707ca0cd60>,
1651
- 'ivars': <function ivars at 0x707ca0ce00>,
1652
- 'log': <function log at 0x707ca0cea0>,
1653
- 'no_indent': <function no_indent at 0x707ca0cf40>,
1654
- 'oct_to_int': <function oct_to_int at 0x707ca0cfe0>,
1655
- 'password_generator': <function password_generator at 0x707ca0d080>,
1656
- 'path_to_module': <function path_to_module at 0x707ca0d120>,
1657
- 'pip_freeze_without_version': <function pip_freeze_without_version at 0x707ca0d1c0>,
1658
- 'pip_update_pypipr': <function pip_update_pypipr at 0x707ca0d260>,
1659
- 'poetry_publish': <function poetry_publish at 0x707ca0d300>,
1660
- 'poetry_shell': <function poetry_shell at 0x707ca0d3a0>,
1661
- 'poetry_update_version': <function poetry_update_version at 0x707ca0d4e0>,
1662
- 'print_dir': <function print_dir at 0x707ca0d620>,
1663
- 'print_to_last_line': <function print_to_last_line at 0x707ca0d6c0>,
1664
- 'random_bool': <function random_bool at 0x707ca0d760>,
1665
- 'repath': <function repath at 0x707ca0d8a0>,
1666
- 'restart': <function restart at 0x707ca0d940>,
1667
- 'set_timeout': <function set_timeout at 0x707ca0d9e0>,
1668
- 'sets_ordered': <function sets_ordered at 0x707ca0da80>,
1669
- 'sqlite_backup': <function sqlite_backup at 0x707ca0db20>,
1670
- 'sqlite_delete_table': <function sqlite_delete_table at 0x707ca0dbc0>,
1671
- 'sqlite_get_all_tables': <function sqlite_get_all_tables at 0x707ca0dc60>,
1672
- 'sqlite_get_data_table': <function sqlite_get_data_table at 0x707ca0dd00>,
1673
- 'str_cmp': <function str_cmp at 0x707ca0e5c0>,
1674
- 'text_colorize': <function text_colorize at 0x707ca0e660>,
1675
- 'tiles': <function tiles at 0x707ca0e700>,
1676
- 'traceback_filename': <function traceback_filename at 0x707ca0e7a0>,
1677
- 'traceback_framename': <function traceback_framename at 0x707ca0e840>},
1607
+ {'function': {'avg': <function avg at 0x7a093f0720>,
1608
+ 'get_filemtime': <function get_filemtime at 0x7a044020c0>,
1609
+ 'print_colorize': <function print_colorize at 0x7a044022a0>,
1610
+ 'print_log': <function print_log at 0x7a04402160>,
1611
+ 'console_run': <function console_run at 0x7a04400720>,
1612
+ 'auto_reload': <function auto_reload at 0x7a044aba60>,
1613
+ 'basename': <function basename at 0x7a04402340>,
1614
+ 'chr_to_int': <function chr_to_int at 0x7a044028e0>,
1615
+ 'int_to_chr': <function int_to_chr at 0x7a04402980>,
1616
+ 'irange': <function irange at 0x7a04402e80>,
1617
+ 'batchmaker': <function batchmaker at 0x7a04402660>,
1618
+ 'calculate': <function calculate at 0x7a04402200>,
1619
+ 'batch_calculate': <function batch_calculate at 0x7a044023e0>,
1620
+ 'bin_to_int': <function bin_to_int at 0x7a044025c0>,
1621
+ 'is_empty': <function is_empty at 0x7a04403740>,
1622
+ 'exit_if_empty': <function exit_if_empty at 0x7a04403600>,
1623
+ 'input_char': <function input_char at 0x7a044036a0>,
1624
+ 'choices': <function choices at 0x7a044039c0>,
1625
+ 'chunk_array': <function chunk_array at 0x7a04403a60>,
1626
+ 'create_folder': <function create_folder at 0x7a04403b00>,
1627
+ 'datetime_from_string': <function datetime_from_string at 0x7a04403ba0>,
1628
+ 'datetime_now': <function datetime_now at 0x7a04403c40>,
1629
+ 'dict_first': <function dict_first at 0x7a043f5ee0>,
1630
+ 'traceback_filename': <function traceback_filename at 0x7a043f60c0>,
1631
+ 'dirname': <function dirname at 0x7a043f5f80>,
1632
+ 'dirpath': <function dirpath at 0x7a043f6160>,
1633
+ 'django_clear_migrations': <function django_clear_migrations at 0x7a043f6200>,
1634
+ 'django_runserver': <function django_runserver at 0x7a043f6520>,
1635
+ 'is_iterable': <function is_iterable at 0x7a043f68e0>,
1636
+ 'to_str': <function to_str at 0x7a043f6a20>,
1637
+ 'filter_empty': <function filter_empty at 0x7a043f67a0>,
1638
+ 'get_by_index': <function get_by_index at 0x7a043f6980>,
1639
+ 'get_class_method': <function get_class_method at 0x7a043f6ac0>,
1640
+ 'get_filesize': <function get_filesize at 0x7a043f6c00>,
1641
+ 'github_init': <function github_init at 0x7a043f6ca0>,
1642
+ 'github_pull': <function github_pull at 0x7a043f6d40>,
1643
+ 'github_push': <function github_push at 0x7a043f6e80>,
1644
+ 'github_user': <function github_user at 0x7a043f6f20>,
1645
+ 'hex_to_int': <function hex_to_int at 0x7a043f6fc0>,
1646
+ 'iargv': <function iargv at 0x7a043f7060>,
1647
+ 'idir': <function idir at 0x7a043f7100>,
1648
+ 'idumps_html': <function idumps_html at 0x7a042fab60>,
1649
+ 'idumps': <function idumps at 0x7a043f71a0>,
1650
+ 'int_to_int': <function int_to_int at 0x7a042fb060>,
1651
+ 'ienumerate': <function ienumerate at 0x7a043f72e0>,
1652
+ 'ienv': <function ienv at 0x7a042e5260>,
1653
+ 'iexec': <function iexec at 0x7a042fb100>,
1654
+ 'iinput': <function iinput at 0x7a042fb1a0>,
1655
+ 'ijoin': <function ijoin at 0x7a042fb240>,
1656
+ 'iloads_html': <function iloads_html at 0x7a042fb560>,
1657
+ 'iloads': <function iloads at 0x7a09e65260>,
1658
+ 'int_to_bin': <function int_to_bin at 0x7a042fb2e0>,
1659
+ 'int_to_hex': <function int_to_hex at 0x7a042fb380>,
1660
+ 'int_to_oct': <function int_to_oct at 0x7a042fb600>,
1661
+ 'is_valid_url': <function is_valid_url at 0x7a042fb880>,
1662
+ 'iopen': <function iopen at 0x7a040c7420>,
1663
+ 'iprint': <function iprint at 0x7a042fb740>,
1664
+ 'is_raw_string': <function is_raw_string at 0x7a00634d60>,
1665
+ 'ireplace': <function ireplace at 0x7a00627240>,
1666
+ 'is_html': <function is_html at 0x7a00634cc0>,
1667
+ 'iscandir': <function iscandir at 0x7a00634e00>,
1668
+ 'isplit': <function isplit at 0x7a00634ea0>,
1669
+ 'ivars': <function ivars at 0x7a00634f40>,
1670
+ 'log': <function log at 0x7a00634fe0>,
1671
+ 'no_indent': <function no_indent at 0x7a00635080>,
1672
+ 'oct_to_int': <function oct_to_int at 0x7a00635120>,
1673
+ 'password_generator': <function password_generator at 0x7a006351c0>,
1674
+ 'path_to_module': <function path_to_module at 0x7a00635260>,
1675
+ 'pip_freeze_without_version': <function pip_freeze_without_version at 0x7a00635300>,
1676
+ 'pip_update_pypipr': <function pip_update_pypipr at 0x7a006353a0>,
1677
+ 'poetry_publish': <function poetry_publish at 0x7a00635440>,
1678
+ 'poetry_shell': <function poetry_shell at 0x7a006354e0>,
1679
+ 'poetry_update_version': <function poetry_update_version at 0x7a00635620>,
1680
+ 'print_dir': <function print_dir at 0x7a00635760>,
1681
+ 'print_to_last_line': <function print_to_last_line at 0x7a00635800>,
1682
+ 'random_bool': <function random_bool at 0x7a006358a0>,
1683
+ 'repath': <function repath at 0x7a006359e0>,
1684
+ 'restart': <function restart at 0x7a00635a80>,
1685
+ 'set_timeout': <function set_timeout at 0x7a00635b20>,
1686
+ 'sets_ordered': <function sets_ordered at 0x7a00635bc0>,
1687
+ 'sqlite_backup': <function sqlite_backup at 0x7a00635c60>,
1688
+ 'sqlite_delete_table': <function sqlite_delete_table at 0x7a00635d00>,
1689
+ 'sqlite_get_all_tables': <function sqlite_get_all_tables at 0x7a00635940>,
1690
+ 'sqlite_get_data_table': <function sqlite_get_data_table at 0x7a00635e40>,
1691
+ 'str_cmp': <function str_cmp at 0x7a00636700>,
1692
+ 'text_colorize': <function text_colorize at 0x7a006367a0>,
1693
+ 'tiles': <function tiles at 0x7a00636840>,
1694
+ 'traceback_framename': <function traceback_framename at 0x7a006368e0>},
1678
1695
  'class': {'ComparePerformance': <class 'pypipr.ComparePerformance.ComparePerformance'>,
1679
1696
  'PintUregQuantity': <class 'pint.Quantity'>,
1680
1697
  'RunParallel': <class 'pypipr.RunParallel.RunParallel'>},
1681
1698
  'variable': {'LINUX': True,
1682
- 'PintUreg': <pint.registry.UnitRegistry object at 0x70853e0da0>,
1699
+ 'PintUreg': <pint.registry.UnitRegistry object at 0x7a093e8d70>,
1683
1700
  'WINDOWS': False},
1684
1701
  'module': {'asyncio': <module 'asyncio' from '/data/data/com.termux/files/usr/lib/python3.12/asyncio/__init__.py'>,
1685
1702
  'colorama': <module 'colorama' from '/data/data/com.termux/files/home/.cache/pypoetry/virtualenvs/pypipr-C3uocabE-py3.12/lib/python3.12/site-packages/colorama/__init__.py'>,
@@ -1774,7 +1791,7 @@ print(password_generator())
1774
1791
 
1775
1792
  Output:
1776
1793
  ```py
1777
- ]qzaquc>
1794
+ RP>7&AGF
1778
1795
  ```
1779
1796
 
1780
1797
  ## path_to_module
@@ -1863,7 +1880,7 @@ Output:
1863
1880
  __enter__ : https:/www.google.com
1864
1881
  __fspath__ : https:/www.google.com
1865
1882
  __getstate__ : (None, {'_raw_paths': ['https://www.google.com/'], '_drv': '', '_root': '', '_tail_cached': ['https:', 'www.google.com'], '_str': 'https:/www.google.com'})
1866
- __hash__ : 9086608281243295535
1883
+ __hash__ : -6736506729884439606
1867
1884
  __init__ : None
1868
1885
  __init_subclass__ : None
1869
1886
  __module__ : pathlib
@@ -1875,7 +1892,7 @@ Output:
1875
1892
  __subclasshook__ : NotImplemented
1876
1893
  _drv :
1877
1894
  _flavour : <module 'posixpath' (frozen)>
1878
- _hash : 9086608281243295535
1895
+ _hash : -6736506729884439606
1879
1896
  _lines : https:
1880
1897
  www.google.com
1881
1898
  _lines_cached : https:
@@ -1909,7 +1926,7 @@ _parts_normcase_cached : ['https:', 'www.google.com']
1909
1926
  is_reserved : False
1910
1927
  is_socket : False
1911
1928
  is_symlink : False
1912
- iterdir : <generator object Path.iterdir at 0x707b364040>
1929
+ iterdir : <generator object Path.iterdir at 0x7a00158040>
1913
1930
  joinpath : .
1914
1931
  name :
1915
1932
  parent : https:/www.google.com
@@ -1920,7 +1937,7 @@ _parts_normcase_cached : ['https:', 'www.google.com']
1920
1937
  stem :
1921
1938
  suffix :
1922
1939
  suffixes : []
1923
- walk : <generator object Path.walk at 0x707cad74c0>
1940
+ walk : <generator object Path.walk at 0x7a006ff4c0>
1924
1941
  with_segments : .
1925
1942
  ```
1926
1943
 
@@ -1962,7 +1979,7 @@ print(random_bool())
1962
1979
 
1963
1980
  Output:
1964
1981
  ```py
1965
- True
1982
+ False
1966
1983
  ```
1967
1984
 
1968
1985
  ## repath
@@ -2000,7 +2017,7 @@ x.cancel()
2000
2017
 
2001
2018
  Output:
2002
2019
  ```py
2003
- <Timer(Thread-2, started 483085069552)>
2020
+ <Timer(Thread-2, started 523964959984)>
2004
2021
  menghentikan timeout 7
2005
2022
  ```
2006
2023
 
@@ -2018,7 +2035,7 @@ print(list(sets_ordered(array)))
2018
2035
 
2019
2036
  Output:
2020
2037
  ```py
2021
- <generator object sets_ordered at 0x707b3646c0>
2038
+ <generator object sets_ordered at 0x7a0015ac20>
2022
2039
  [2, 3, 12, 42, 1, 43, 41, 4, 24, 32]
2023
2040
  ```
2024
2041
 
@@ -2081,17 +2098,6 @@ text_colorize("Print some text", color=colorama.Fore.RED)
2081
2098
 
2082
2099
  `tiles(tile_x=None, tile_y=None, area_x=None, area_y=None, gap_x=None, gap_y=None)`
2083
2100
 
2084
- ## traceback_filename
2085
-
2086
- `traceback_filename(stack_level=-3)`
2087
-
2088
- Mendapatkan filename dimana fungsi yg memanggil
2089
- fungsi dimana fungsi ini diletakkan dipanggil.
2090
-
2091
- ```py
2092
- print(traceback_filename())
2093
- ```
2094
-
2095
2101
  ## traceback_framename
2096
2102
 
2097
2103
  `traceback_framename(stack_level=-3)`
@@ -2140,15 +2146,15 @@ print(ExampleComparePerformance().compare_performance())
2140
2146
 
2141
2147
  Output:
2142
2148
  ```py
2143
- {'a': <generator object ExampleComparePerformance.a.<locals>.<genexpr> at 0x707b324580>,
2149
+ {'a': <generator object ExampleComparePerformance.a.<locals>.<genexpr> at 0x7a00488a00>,
2144
2150
  'b': (0, 1, 2, 3, 4, 5, 6, 7, 8, 9),
2145
2151
  'c': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
2146
2152
  'd': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]}
2147
- {'a': 100, 'b': 221, 'c': 114, 'd': 159}
2148
- {'a': 103, 'b': 191, 'c': 100, 'd': 168}
2149
- {'a': 100, 'b': 183, 'c': 101, 'd': 171}
2150
- {'a': 99, 'b': 185, 'c': 103, 'd': 167}
2151
- {'a': 101, 'b': 186, 'c': 99, 'd': 171}
2153
+ {'a': 100, 'b': 180, 'c': 165, 'd': 154}
2154
+ {'a': 100, 'b': 176, 'c': 130, 'd': 167}
2155
+ {'a': 100, 'b': 166, 'c': 118, 'd': 173}
2156
+ {'a': 99, 'b': 161, 'c': 113, 'd': 156}
2157
+ {'a': 100, 'b': 178, 'c': 126, 'd': 169}
2152
2158
  ```
2153
2159
 
2154
2160
  ## 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=a7Fa0YrnCeXakdgLTd2BYjB6Ck6vvZ1gIaTS7ZISmSg,6536
6
6
  pypipr/WINDOWS.py,sha256=NMW-94lzdqwfEWv2lF_i2GcSHJFDwWjccFufpymg4-E,83
7
- pypipr/__init__.py,sha256=5QfHX8hq9KjbpaAOalRZDtdflk-FuUHIi0SkDK1Q_go,3878
7
+ pypipr/__init__.py,sha256=AV_7N8VVmtNgy7p-AkV5VPw_E45EC8aUqNqbxIA65H0,3907
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
@@ -20,8 +20,9 @@ pypipr/console_run.py,sha256=vCJqDa1rExisqaFLNeWM-hnuXHfUfiYcyNAOJjldOHs,525
20
20
  pypipr/create_folder.py,sha256=YgK3Rhg-v8314VNSgUvq7LgyLHlpHGBYXaa1RgRsbxo,523
21
21
  pypipr/datetime_from_string.py,sha256=-GJ_QHD1feUMX0o8nwCPHGflDPXr84ovN4Awnk1T9r8,466
22
22
  pypipr/datetime_now.py,sha256=YEaatUOp0KBWYRhOFnxnVW0X7C1XEx3dpdBEn5Vwy9w,379
23
- pypipr/dict_first.py,sha256=X_pSaY0DLGZJSR2zJBa17yqbwAFLJrVpzb2gxR5wzZg,377
24
- pypipr/dirname.py,sha256=Z2BZTb7cXCbXJfROPwuyHtcMsrp_aIeBisFHeb0n5Ww,973
23
+ pypipr/dict_first.py,sha256=VgWuMN1h8n45052Kxogj0G6XWgmJFSvay2LfpxHhrWU,397
24
+ pypipr/dirname.py,sha256=owpjKdOtqjID5eJRBi415LWdhrD3whTegpnb13xAUlE,232
25
+ pypipr/dirpath.py,sha256=y59bDRFJf0sgK8NI7XEBQA4cbBV_bHoqzyIOnFypnHM,973
25
26
  pypipr/django_clear_migrations.py,sha256=Sjb7qq7OZc1_iTNcR2mtRY6k2um9Jr6X4A4PMqOqnCU,302
26
27
  pypipr/django_runserver.py,sha256=puzQajQ_RdLqEZFplKKEKsfhaG-IxHGW4CXZc80EnA8,734
27
28
  pypipr/exit_if_empty.py,sha256=2qUqmYPSkr1NtKPqIN7BAc-WGtcmPPAw8AdO8HirOv8,321
@@ -52,7 +53,7 @@ pypipr/int_to_chr.py,sha256=Ae_cGhbwBCxmzqFrfjk0rLfAT049eYYjgMgJOtMpyhc,458
52
53
  pypipr/int_to_hex.py,sha256=w6kOPSNhOzjip7SWX7Q9df6f0vwwuKdbuHQhFjwOqN4,215
53
54
  pypipr/int_to_int.py,sha256=8qocfQtQowaVac4o4g1tpywMxm7OHDIbBqNl1RP6lGk,215
54
55
  pypipr/int_to_oct.py,sha256=GWu7VbHJXJxC6IvLEjQofUrbbXjQSEYPZvT2f6wh_Is,215
55
- pypipr/iopen.py,sha256=rO_mQ4JQExUkoZbbB59Bgij8B4q9EK04TGOZKZNNCtY,2773
56
+ pypipr/iopen.py,sha256=9kvtCbZffLxs1lq0G4cxBHpZBAkW-7RYberae5GCIwA,2773
56
57
  pypipr/iprint.py,sha256=5ekT7RzcTd8Lsb8IQ9JeFJmFl2V6OYFbiHECt9W4iWg,838
57
58
  pypipr/irange.py,sha256=-RfSWKq0HezABk6jW-Tnwt3fHuhJDHtippwDe5eki0o,3504
58
59
  pypipr/ireplace.py,sha256=ce1vqq4kXs9yUPnNAi6p0o2O2zAoUetp4GhVvfv4B8s,873
@@ -68,7 +69,7 @@ pypipr/log.py,sha256=aQ9DeFG03xIAUQYR4TiBdh80M6WvxDtNDTSjpKOSXHk,1041
68
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=FdORASXdtKv_kQxOcd4nL13UxXKGOXaA4SrwDgpw2pQ,948
72
+ pypipr/path_to_module.py,sha256=ZsUCJlwYOD6RDZ79M_1Q67NjCmmNuAs-DzST9UDfGak,685
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
@@ -93,7 +94,7 @@ pypipr/tiles.py,sha256=uSEYqvjBQHIz7pZKtdta1XwFhGrMFieMHOH2DKrlcXc,328
93
94
  pypipr/to_str.py,sha256=vSuspf-ZQldf4enkssa9XH0WMjkmWug51G9ia0K5occ,597
94
95
  pypipr/traceback_filename.py,sha256=4o85J0N8clI0cM6NTGcKZ4zxR9yS7W2NS_bz3J2_PnY,288
95
96
  pypipr/traceback_framename.py,sha256=_mullrAZzMhBFEFVCgdsmkYQmYUkd58o-J-HuMntKyc,291
96
- pypipr-1.0.181.dist-info/METADATA,sha256=mtZX9BtrGxEVhkvvAwSzjGFLEVYb-FSHytvzXc945xU,58153
97
- pypipr-1.0.181.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
98
- pypipr-1.0.181.dist-info/entry_points.txt,sha256=XEBtOa61BCVW4cVvoqYQnyTcenJ1tzFFB09YnuqlKBY,51
99
- pypipr-1.0.181.dist-info/RECORD,,
97
+ pypipr-1.0.182.dist-info/METADATA,sha256=55XtXc1Y6DA3hWcVSmR2ylAsqgoVy-Y4PwUx-h2vuaE,58733
98
+ pypipr-1.0.182.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
99
+ pypipr-1.0.182.dist-info/entry_points.txt,sha256=XEBtOa61BCVW4cVvoqYQnyTcenJ1tzFFB09YnuqlKBY,51
100
+ pypipr-1.0.182.dist-info/RECORD,,