pypipr 1.0.123__py3-none-any.whl → 1.0.124__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/APIMixinView.py CHANGED
@@ -19,8 +19,9 @@ class APIMixinView:
19
19
 
20
20
 
21
21
  ```py
22
- class ExampleAPIView(APIMixinView, View):
23
- pass
22
+ class ExampleTodoAddView(APIMixinView, View):
23
+ def process_data(self, *args, **kwargs):
24
+ return TodoModel.objects.create(**self.APIDict)
24
25
  ```
25
26
  """
26
27
 
pypipr/__terminal__.py CHANGED
@@ -1,5 +1,14 @@
1
1
  from pypipr import *
2
2
 
3
+
4
+ def input_parameter(o):
5
+ try:
6
+ return eval(o)
7
+ except Exception:
8
+ return o
9
+
10
+
11
+
3
12
  def main():
4
13
  ppp = __import__("pypipr")
5
14
  m = ivars(ppp)
@@ -35,7 +44,7 @@ def main():
35
44
  o = input()
36
45
  if len(o):
37
46
  try:
38
- k[i] = eval(o)
47
+ k[i] = input_parameter(o)
39
48
  except Exception:
40
49
  print_colorize(
41
50
  "Input harus dalam syntax python.",
pypipr/input_char.py CHANGED
@@ -1,3 +1,4 @@
1
+ from .print_colorize import print_colorize
1
2
  from .LINUX import LINUX
2
3
  from .WINDOWS import WINDOWS
3
4
 
@@ -14,6 +15,7 @@ def input_char(
14
15
  newline_after_input=True,
15
16
  echo_char=True,
16
17
  default=None,
18
+ color=None,
17
19
  ):
18
20
  """
19
21
  Meminta masukan satu huruf tanpa menekan Enter.
@@ -25,7 +27,7 @@ def input_char(
25
27
  ```
26
28
  """
27
29
  if prompt:
28
- print(prompt, end=prompt_ending, flush=True)
30
+ print_colorize(prompt, end=prompt_ending, flush=True)
29
31
 
30
32
  if default is not None:
31
33
  a = default
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pypipr
3
- Version: 1.0.123
3
+ Version: 1.0.124
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 0x7b05a58440>
252
- <generator object int_range at 0x7b05a58440>
251
+ <generator object int_range at 0x6f7b2d4440>
252
+ <generator object int_range at 0x6f7b2d4440>
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 0x7b05a50280>
284
+ <generator object batchmaker at 0x6f7b2cc280>
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 0x7b059cb010>
338
+ <generator object batch_calculate at 0x6f7b24b010>
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
 
@@ -398,7 +398,7 @@ exit_if_empty(var1, var2)
398
398
 
399
399
  ## input_char
400
400
 
401
- `input_char(prompt=None, prompt_ending='', newline_after_input=True, echo_char=True, default=None)`
401
+ `input_char(prompt=None, prompt_ending='', newline_after_input=True, echo_char=True, default=None, color=None)`
402
402
 
403
403
  Meminta masukan satu huruf tanpa menekan Enter.
404
404
 
@@ -458,7 +458,7 @@ print(list(chunk_array(arr, 5)))
458
458
 
459
459
  Output:
460
460
  ```py
461
- <generator object chunk_array at 0x7b05a58440>
461
+ <generator object chunk_array at 0x6f7b2d4440>
462
462
  [[2, 3, 12, 3, 3], [42, 42, 1, 43, 2], [42, 41, 4, 24, 32], [42, 3, 12, 32, 42], [42]]
463
463
  ```
464
464
 
@@ -509,9 +509,9 @@ print(datetime_now("Etc/GMT+7"))
509
509
 
510
510
  Output:
511
511
  ```py
512
- 2024-05-05 22:19:00.834179+07:00
513
- 2024-05-05 15:19:00.837046+00:00
514
- 2024-05-05 08:19:00.842776-07:00
512
+ 2024-05-06 10:51:00.202113+07:00
513
+ 2024-05-06 03:51:00.203550+00:00
514
+ 2024-05-05 20:51:00.207211-07:00
515
515
  ```
516
516
 
517
517
  ## dict_first
@@ -617,7 +617,7 @@ iprint(filter_empty(var))
617
617
 
618
618
  Output:
619
619
  ```py
620
- <generator object filter_empty at 0x7b059c95d0>
620
+ <generator object filter_empty at 0x6f7b2495d0>
621
621
  [1, '0', True, {}, ['eee']]
622
622
  ```
623
623
 
@@ -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 0x7b059cb2e0>
651
- [<function ExampleGetClassMethod.a at 0x7b05a68e00>, <function ExampleGetClassMethod.b at 0x7b05a69120>, <function ExampleGetClassMethod.c at 0x7b05a68fe0>, <function ExampleGetClassMethod.d at 0x7b05a691c0>]
650
+ <generator object get_class_method at 0x6f7b24b2e0>
651
+ [<function ExampleGetClassMethod.a at 0x6f7b2e4fe0>, <function ExampleGetClassMethod.b at 0x6f7b2e5120>, <function ExampleGetClassMethod.c at 0x6f7b2e5080>, <function ExampleGetClassMethod.d at 0x6f7b2e51c0>]
652
652
  ```
653
653
 
654
654
  ## get_filesize
@@ -918,7 +918,7 @@ Output:
918
918
 
919
919
  ## ienumerate
920
920
 
921
- `ienumerate(iterator, start=0, key=<function int_to_int at 0x7b0a90d9e0>)`
921
+ `ienumerate(iterator, start=0, key=<function int_to_int at 0x6f845c99e0>)`
922
922
 
923
923
  meningkatkan fungsi enumerate() pada python
924
924
  untuk key menggunakan huruf dan basis angka lainnya.
@@ -931,7 +931,7 @@ iprint(ienumerate(it, key=int_to_chr))
931
931
 
932
932
  Output:
933
933
  ```py
934
- <generator object ienumerate at 0x7b059cb3d0>
934
+ <generator object ienumerate at 0x6f7b24b3d0>
935
935
  [('a', 'ini'), ('b', 'contoh'), ('c', 'enumerator')]
936
936
  ```
937
937
 
@@ -998,7 +998,7 @@ print(ijoin(10, ' '))
998
998
 
999
999
  Output:
1000
1000
  ```py
1001
- weq, qweqw, asd, dfs
1001
+ qweqw, asd, dfs, weq
1002
1002
  ,ini,path,seperti,url,
1003
1003
  ini,path,seperti,url
1004
1004
  <li>satu</li>
@@ -1043,62 +1043,111 @@ pprint.pprint(iloads_html(iopen("https://harga-emas.org/1-gram/")), depth=10)
1043
1043
  Output:
1044
1044
  ```py
1045
1045
  (['Home', 'Emas 1 Gram', 'History', 'Trend', 'Perak 1 Gram', 'Pluang'],
1046
- [['Harga Emas Hari Ini - Minggu, 05 Mei 2024'],
1047
- ['Spot Emas USD↑2.302,57 (+2,84) / oz',
1048
- 'Kurs IDR16.202,00 / USD',
1049
- 'Emas IDR1.199.423 (+1.479) / gr'],
1050
- ['LM Antam (Jual)1.313.000 / gr', 'LM Antam (Beli)1.206.000 / gr']],
1046
+ [['Harga Emas Hari Ini - Senin, 06 Mei 2024'],
1047
+ ['Spot Emas USD↑2.310,40 (+7,83) / oz',
1048
+ 'Kurs IDR↓16.094,00 (-108,00) / USD',
1049
+ 'Emas IDR1.195.480 (-3.944) / gr'],
1050
+ ['LM Antam (Jual)1.310.000 (-3.000) / gr',
1051
+ 'LM Antam (Beli)↓1.203.000 (-3.000) / gr']],
1051
1052
  [['Harga Emas Hari Ini'],
1052
1053
  ['Gram', 'Gedung Antam Jakarta', 'Pegadaian'],
1053
1054
  ['per Gram (Rp)', 'per Batangan (Rp)', 'per Gram (Rp)', 'per Batangan (Rp)'],
1054
1055
  ['1000',
1055
- '1.254',
1056
- '1.253.600',
1056
+ '1.251 (-3)',
1057
+ '1.250.600 (-3.000)',
1057
1058
  '1.043.040 (+8.200)',
1058
1059
  '1.043.040.000 (+8.200.000)'],
1059
1060
  ['500',
1060
- '2.507',
1061
- '1.253.640',
1061
+ '2.501 (-6)',
1062
+ '1.250.640 (-3.000)',
1062
1063
  '1.043.082 (+8.200)',
1063
1064
  '521.541.000 (+4.100.000)'],
1064
1065
  ['250',
1065
- '5.016',
1066
- '1.254.060',
1066
+ '5.004 (-12)',
1067
+ '1.251.060 (-3.000)',
1067
1068
  '1.043.512 (+8.200)',
1068
1069
  '260.878.000 (+2.050.000)'],
1069
1070
  ['100',
1070
- '12.551',
1071
- '1.255.120',
1071
+ '12.521 (-30)',
1072
+ '1.252.120 (-3.000)',
1072
1073
  '1.044.600 (+8.200)',
1073
1074
  '104.460.000 (+820.000)'],
1074
- ['50', '25.118', '1.255.900', '1.045.400 (+8.200)', '52.270.000 (+410.000)'],
1075
- ['25', '50.299', '1.257.480', '1.047.040 (+8.200)', '26.176.000 (+205.000)'],
1076
- ['10', '126.250', '1.262.500', '1.052.200 (+8.200)', '10.522.000 (+82.000)'],
1077
- ['5', '253.600', '1.268.000', '1.057.800 (+8.200)', '5.289.000 (+41.000)'],
1078
- ['3', '424.889', '1.274.667', '1.064.667 (+8.000)', '3.194.000 (+24.000)'],
1079
- ['2', '641.500', '1.283.000', '1.073.500 (+8.500)', '2.147.000 (+17.000)'],
1080
- ['1', '1.313.000', '1.313.000', '1.104.000 (+8.000)', '1.104.000 (+8.000)'],
1081
- ['0.5', '2.826.000', '1.413.000', '1.208.000 (+8.000)', '604.000 (+4.000)'],
1082
- ['Update harga LM Antam :05 Mei 2024, pukul 06:22Harga pembelian kembali '
1083
- ':Rp. 1.206.000/gram',
1075
+ ['50',
1076
+ '25.058 (-60)',
1077
+ '1.252.900 (-3.000)',
1078
+ '1.045.400 (+8.200)',
1079
+ '52.270.000 (+410.000)'],
1080
+ ['25',
1081
+ '50.179 (-120)',
1082
+ '1.254.480 (-3.000)',
1083
+ '1.047.040 (+8.200)',
1084
+ '26.176.000 (+205.000)'],
1085
+ ['10',
1086
+ '125.950 (-300)',
1087
+ '1.259.500 (-3.000)',
1088
+ '1.052.200 (+8.200)',
1089
+ '10.522.000 (+82.000)'],
1090
+ ['5',
1091
+ '253.000 (-600)',
1092
+ '1.265.000 (-3.000)',
1093
+ '1.057.800 (+8.200)',
1094
+ '5.289.000 (+41.000)'],
1095
+ ['3',
1096
+ '423.889 (-1.000)',
1097
+ '1.271.667 (-3.000)',
1098
+ '1.064.667 (+8.000)',
1099
+ '3.194.000 (+24.000)'],
1100
+ ['2',
1101
+ '640.000 (-1.500)',
1102
+ '1.280.000 (-3.000)',
1103
+ '1.073.500 (+8.500)',
1104
+ '2.147.000 (+17.000)'],
1105
+ ['1',
1106
+ '1.310.000 (-3.000)',
1107
+ '1.310.000 (-3.000)',
1108
+ '1.104.000 (+8.000)',
1109
+ '1.104.000 (+8.000)'],
1110
+ ['0.5',
1111
+ '2.820.000 (-6.000)',
1112
+ '1.410.000 (-3.000)',
1113
+ '1.208.000 (+8.000)',
1114
+ '604.000 (+4.000)'],
1115
+ ['Update harga LM Antam :06 Mei 2024, pukul 08:30Harga pembelian kembali '
1116
+ ':Rp. 1.203.000/gram (-3.000)',
1084
1117
  'Update harga LM Pegadaian :31 Agustus 2023']],
1085
- [['Spot Harga Emas Hari Ini (Market Close)'],
1118
+ [['Spot Harga Emas Hari Ini (Market Open)'],
1086
1119
  ['Satuan', 'USD', 'Kurs\xa0Dollar', 'IDR'],
1087
- ['Ounce\xa0(oz)', '2.302,57 (+2,84)', '16.202,00', '37.306.239'],
1088
- ['Gram\xa0(gr)', '74,03', '16.202,00', '1.199.423 (+1.479)'],
1089
- ['Kilogram\xa0(kg)', '74.029,34', '16.202,00', '1.199.423.441'],
1090
- ['Update harga emas :05 Mei 2024, pukul 22:18Update kurs :05 Mei 2024, pukul '
1091
- '13:10']],
1120
+ ['Ounce\xa0(oz)', '2.310,40 (+7,83)', '16.094,00 (-108,00)', '37.183.578'],
1121
+ ['Gram\xa0(gr)', '74,28', '16.094,00', '1.195.480 (-3.944)'],
1122
+ ['Kilogram\xa0(kg)', '74.281,08', '16.094,00', '1.195.479.781'],
1123
+ ['Update harga emas :06 Mei 2024, pukul 10:50Update kurs :06 Mei 2024, pukul '
1124
+ '09:10']],
1092
1125
  [['Gram', 'UBS Gold 99.99%'],
1093
1126
  ['Jual', 'Beli'],
1094
1127
  ['/ Batang', '/ Gram', '/ Batang', '/ Gram'],
1095
- ['100', '126.000.000', '1.260.000', '123.385.000', '1.233.850'],
1096
- ['50', '62.950.000', '1.259.000', '61.745.000', '1.234.900'],
1097
- ['25', '31.500.000', '1.260.000', '30.975.000', '1.239.000'],
1098
- ['10', '12.650.000', '1.265.000', '12.440.000', '1.244.000'],
1099
- ['5', '6.350.000', '1.270.000', '6.272.000', '1.254.400'],
1100
- ['1', '1.315.000', '1.315.000', '1.287.000', '1.287.000'],
1101
- ['', 'Update :03 Mei 2024, pukul 11:57']],
1128
+ ['100',
1129
+ '125.212.000 (-788.000)',
1130
+ '1.252.120 (-7.880)',
1131
+ '123.385.000',
1132
+ '1.233.850'],
1133
+ ['50',
1134
+ '62.645.000 (-305.000)',
1135
+ '1.252.900 (-6.100)',
1136
+ '61.745.000',
1137
+ '1.234.900'],
1138
+ ['25',
1139
+ '31.362.000 (-138.000)',
1140
+ '1.254.480 (-5.520)',
1141
+ '30.975.000',
1142
+ '1.239.000'],
1143
+ ['10',
1144
+ '12.595.000 (-55.000)',
1145
+ '1.259.500 (-5.500)',
1146
+ '12.440.000',
1147
+ '1.244.000'],
1148
+ ['5', '6.325.000 (-25.000)', '1.265.000 (-5.000)', '6.272.000', '1.254.400'],
1149
+ ['1', '1.310.000 (-5.000)', '1.310.000 (-5.000)', '1.287.000', '1.287.000'],
1150
+ ['', 'Update :06 Mei 2024, pukul 10:08']],
1102
1151
  [['Konversi Satuan'],
1103
1152
  ['Satuan', 'Ounce (oz)', 'Gram (gr)', 'Kilogram (kg)'],
1104
1153
  ['Ounce\xa0(oz)', '1', '31,1034767696', '0,0311034768'],
@@ -1108,37 +1157,37 @@ Output:
1108
1157
  ['Waktu', 'Emas'],
1109
1158
  ['Unit', 'USD', 'IDR'],
1110
1159
  ['Angka', '+/-', 'Angka', '+/-'],
1111
- ['Hari Ini', 'Kurs', '', '', '16.202', '%'],
1112
- ['oz', '2.299,73', '+2,84+0,12%', '37.260.225', '+46.014+0,12%'],
1113
- ['gr', '73,94', '+0,09+0,12%', '1.197.944', '+1.479+0,12%'],
1114
- ['30 Hari', 'Kurs', '', '', '15.907', '+295+1,85%'],
1115
- ['oz', '2.327,69', '-25,12-1,08%', '37.026.565', '+279.674+0,76%'],
1116
- ['gr', '74,84', '-0,81-1,08%', '1.190.432', '+8.992+0,76%'],
1117
- ['2 Bulan', 'Kurs', '', '', '15.756', '+446+2,83%'],
1118
- ['oz', '2.146,97', '+155,60+7,25%', '33.827.659', '+3.478.580+10,28%'],
1119
- ['gr', '69,03', '+5,00+7,25', '1.087.585', '+111.839+10,28%'],
1120
- ['6 Bulan', 'Kurs', '', '', '15.550', '+652+4,19%'],
1121
- ['oz', '1.964,64', '+337,93+17,20%', '30.550.152', '+6.756.087+22,11%'],
1122
- ['gr', '63,16', '+10,86+17,20%', '982.210', '+217.213+22,11%'],
1123
- ['1 Tahun', 'Kurs', '', '', '15.731', '+471+2,99%'],
1124
- ['oz', '1.823,86', '+478,71+26,25%', '28.691.142', '+8.615.097+30,03%'],
1125
- ['gr', '58,64', '+15,39+26,25%', '922.442', '+276.982+30,03%'],
1126
- ['2 Tahun', 'Kurs', '', '', '14.418', '+1.784+12,37%'],
1127
- ['oz', '1.888,48', '+414,09+21,93%', '27.228.105', '+10.078.135+37,01%'],
1128
- ['gr', '60,72', '+13,31+21,93%', '875.404', '+324.020+37,01%'],
1129
- ['3 Tahun', 'Kurs', '', '', '14.439', '+1.763+12,21%'],
1130
- ['oz', '1.815,64', '+486,93+26,82%', '26.216.044', '+11.090.195+42,30%'],
1131
- ['gr', '58,37', '+15,66+26,82%', '842.865', '+356.558+42,30%'],
1132
- ['5 Tahun', 'Kurs', '', '', '14.309', '+1.893+13,23%'],
1133
- ['oz', '1.284,29', '+1.018,28+79,29%', '18.376.906', '+18.929.334+103,01%'],
1134
- ['gr', '41,29', '+32,74+79,29%', '590.831', '+608.592+103,01%']])
1160
+ ['Hari Ini', 'Kurs', '', '', '16.202', '-108-0,67%'],
1161
+ ['oz', '2.302,57', '+7,83+0,34%', '37.306.239', '-122.662-0,33%'],
1162
+ ['gr', '74,03', '+0,25+0,34%', '1.199.423', '-3.944-0,33%'],
1163
+ ['30 Hari', 'Kurs', '', '', '15.907', '+187+1,18%'],
1164
+ ['oz', '2.329,93', '-19,53-0,84%', '37.062.197', '+121.381+0,33%'],
1165
+ ['gr', '74,91', '-0,63-0,84%', '1.191.577', '+3.902+0,33%'],
1166
+ ['2 Bulan', 'Kurs', '', '', '15.723', '+371+2,36%'],
1167
+ ['oz', '2.156,44', '+153,96+7,14%', '33.905.706', '+3.277.871+9,67%'],
1168
+ ['gr', '69,33', '+4,95+7,14', '1.090.094', '+105.386+9,67%'],
1169
+ ['6 Bulan', 'Kurs', '', '', '15.593', '+501+3,21%'],
1170
+ ['oz', '1.954,36', '+356,04+18,22%', '30.474.335', '+6.709.242+22,02%'],
1171
+ ['gr', '62,83', '+11,45+18,22%', '979.773', '+215.707+22,02%'],
1172
+ ['1 Tahun', 'Kurs', '', '', '15.731', '+363+2,31%'],
1173
+ ['oz', '1.823,86', '+486,54+26,68%', '28.691.142', '+8.492.436+29,60%'],
1174
+ ['gr', '58,64', '+15,64+26,68%', '922.442', '+273.038+29,60%'],
1175
+ ['2 Tahun', 'Kurs', '', '', '14.418', '+1.676+11,62%'],
1176
+ ['oz', '1.883,86', '+426,54+22,64%', '27.161.493', '+10.022.084+36,90%'],
1177
+ ['gr', '60,57', '+13,71+22,64%', '873.262', '+322.217+36,90%'],
1178
+ ['3 Tahun', 'Kurs', '', '', '14.364', '+1.730+12,04%'],
1179
+ ['oz', '1.831,48', '+478,92+26,15%', '26.307.379', '+10.876.199+41,34%'],
1180
+ ['gr', '58,88', '+15,40+26,15%', '845.802', '+349.678+41,34%'],
1181
+ ['5 Tahun', 'Kurs', '', '', '14.305', '+1.789+12,51%'],
1182
+ ['oz', '1.280,40', '+1.030,00+80,44%', '18.316.122', '+18.867.456+103,01%'],
1183
+ ['gr', '41,17', '+33,12+80,44%', '588.877', '+606.603+103,01%']])
1135
1184
  (['Home', 'Emas 1 Gram', 'History', 'Trend', 'Perak 1 Gram', 'Pluang'],
1136
1185
  [[''],
1137
1186
  ['Emas 24 KaratHarga Emas 1 Gram', ''],
1138
- ['USD', '74,03↓', '%'],
1139
- ['KURS', '15.968,70↓', '%'],
1140
- ['IDR', '1.182.152,40↓', '%'],
1141
- ['Minggu, 05 Mei 2024 22:18']],
1187
+ ['USD', '74,28↑', '+0,25+0,34%'],
1188
+ ['KURS', '16.027,15↑', '+58,45+0,37%'],
1189
+ ['IDR', '1.190.514,09↑', '+8.361,69+0,71%'],
1190
+ ['Senin, 06 Mei 2024 10:50']],
1142
1191
  [[''],
1143
1192
  ['Emas 1 Gram (IDR)Emas 1 Gram (USD)Kurs USD-IDR',
1144
1193
  'Hari Ini',
@@ -1149,19 +1198,19 @@ Output:
1149
1198
  '']],
1150
1199
  [['Pergerakkan Harga Emas 1 Gram'],
1151
1200
  ['', 'Penutupan Kemarin', 'Pergerakkan Hari Ini', 'Rata-rata'],
1152
- ['USD', '74,03', '74,03 - 74,03', '74,03'],
1153
- ['KURS', '15.968,70', '15.968,70 - 15.968,70', '15.968,70'],
1154
- ['IDR', '1.182.152,40', '1.182.152,40 - 1.182.152,40', '1.182.152,40'],
1201
+ ['USD', '74,03', '74,03 - 74,28', '74,16'],
1202
+ ['KURS', '15.968,70', '15.968,70 - 16.027,15', '15.997,93'],
1203
+ ['IDR', '1.182.152,40', '1.182.152,40 - 1.190.514,09', '1.186.333,25'],
1155
1204
  [''],
1156
1205
  ['', 'Awal Tahun', 'Pergerakkan YTD', '+/- YTD'],
1157
- ['USD', '66,32', '64,07 - 77,14', '+7,71 (11,63%)'],
1158
- ['KURS', '15.390,10', '15.390,00 - 16.307,80', '+578,60 (3,76%)'],
1159
- ['IDR', '1.020.729,53', '997.660,12 - 1.256.829,06', '+161.422,87 (15,81%)'],
1206
+ ['USD', '66,32', '64,07 - 77,14', '+7,96 (12,00%)'],
1207
+ ['KURS', '15.390,10', '15.390,00 - 16.307,80', '+637,05 (4,14%)'],
1208
+ ['IDR', '1.020.729,53', '997.660,12 - 1.256.829,06', '+169.784,56 (16,63%)'],
1160
1209
  [''],
1161
1210
  ['', 'Tahun Lalu / 52 Minggu', 'Pergerakkan 52 Minggu', '+/- 52 Minggu'],
1162
- ['USD', '65,97', '58,43 - 77,14', '+8,06 (12,22%)'],
1163
- ['KURS', '14.716,80', '14.669,40 - 16.307,80', '+1.251,90 (8,51%)'],
1164
- ['IDR', '970.916,33', '912.925,68 - 1.256.829,06', '+211.236,07 (21,76%)']])
1211
+ ['USD', '64,87', '58,43 - 77,14', '+9,41 (14,51%)'],
1212
+ ['KURS', '14.669,40', '14.674,80 - 16.307,80', '+1.357,75 (9,26%)'],
1213
+ ['IDR', '951.626,36', '912.925,68 - 1.256.829,06', '+238.887,73 (25,10%)']])
1165
1214
  ```
1166
1215
 
1167
1216
  ## iloads
@@ -1291,7 +1340,7 @@ Output:
1291
1340
  ```py
1292
1341
  8
1293
1342
  ['mana', 'aja']
1294
- [<Element a at 0x7b05a62b20>, <Element a at 0x7b05aa0fa0>, <Element a at 0x7b05aa1040>, <Element a at 0x7b05aa1090>, <Element a at 0x7b05aa10e0>, <Element a at 0x7b05aa1130>, <Element a at 0x7b05aa1180>, <Element a at 0x7b05aa11d0>, <Element a at 0x7b05aa1220>, <Element a at 0x7b05aa1270>, <Element a at 0x7b05aa12c0>, <Element a at 0x7b05aa1310>, <Element a at 0x7b05aa1360>, <Element a at 0x7b05aa13b0>, <Element a at 0x7b05aa1400>, <Element a at 0x7b05aa1450>, <Element a at 0x7b05aa14a0>, <Element a at 0x7b05aa14f0>]
1343
+ [<Element a at 0x6f7b2df250>, <Element a at 0x6f7b320f00>, <Element a at 0x6f7b320fa0>, <Element a at 0x6f7b320ff0>, <Element a at 0x6f7b321040>, <Element a at 0x6f7b321090>, <Element a at 0x6f7b3210e0>, <Element a at 0x6f7b321130>, <Element a at 0x6f7b321180>, <Element a at 0x6f7b3211d0>, <Element a at 0x6f7b321220>, <Element a at 0x6f7b321270>, <Element a at 0x6f7b3212c0>, <Element a at 0x6f7b321310>, <Element a at 0x6f7b321360>, <Element a at 0x6f7b3213b0>, <Element a at 0x6f7b321400>, <Element a at 0x6f7b321450>]
1295
1344
  False
1296
1345
  ```
1297
1346
 
@@ -1353,7 +1402,7 @@ print(list(iscandir("./", recursive=False, scan_file=False)))
1353
1402
 
1354
1403
  Output:
1355
1404
  ```py
1356
- <generator object iscandir at 0x7b05a58740>
1405
+ <generator object iscandir at 0x6f7b2d4740>
1357
1406
  [PosixPath('.git'), PosixPath('.vscode'), PosixPath('pypipr'), PosixPath('__pycache__'), PosixPath('dist')]
1358
1407
  ```
1359
1408
 
@@ -1390,76 +1439,76 @@ Output:
1390
1439
  'ComparePerformance': <class 'pypipr.ComparePerformance.ComparePerformance'>,
1391
1440
  'PintUregQuantity': <class 'pint.Quantity'>,
1392
1441
  'RunParallel': <class 'pypipr.RunParallel.RunParallel'>},
1393
- 'function': {'avg': <function avg at 0x7b0db66700>,
1394
- 'get_filemtime': <function get_filemtime at 0x7b0aa0ede0>,
1395
- 'print_colorize': <function print_colorize at 0x7b0aa0efc0>,
1396
- 'print_log': <function print_log at 0x7b0aacab60>,
1397
- 'console_run': <function console_run at 0x7b0aa0ee80>,
1398
- 'auto_reload': <function auto_reload at 0x7b0a9f7ec0>,
1399
- 'basename': <function basename at 0x7b0aa0ed40>,
1400
- 'chr_to_int': <function chr_to_int at 0x7b0aa0f560>,
1401
- 'int_to_chr': <function int_to_chr at 0x7b0aa0f600>,
1402
- 'irange': <function irange at 0x7b0aa0f880>,
1403
- 'batchmaker': <function batchmaker at 0x7b0aa0f240>,
1404
- 'calculate': <function calculate at 0x7b0aa0f380>,
1405
- 'batch_calculate': <function batch_calculate at 0x7b0aa0f100>,
1406
- 'bin_to_int': <function bin_to_int at 0x7b0aa0f1a0>,
1407
- 'is_empty': <function is_empty at 0x7b0a834040>,
1408
- 'exit_if_empty': <function exit_if_empty at 0x7b0aa0fec0>,
1409
- 'input_char': <function input_char at 0x7b0aa0ff60>,
1410
- 'get_by_index': <function get_by_index at 0x7b0a8340e0>,
1411
- 'choices': <function choices at 0x7b0a8342c0>,
1412
- 'chunk_array': <function chunk_array at 0x7b0a834360>,
1413
- 'create_folder': <function create_folder at 0x7b0a834400>,
1414
- 'datetime_from_string': <function datetime_from_string at 0x7b0a8344a0>,
1415
- 'datetime_now': <function datetime_now at 0x7b0a834540>,
1416
- 'dict_first': <function dict_first at 0x7b0a8345e0>,
1417
- 'dirname': <function dirname at 0x7b0a834680>,
1418
- 'is_iterable': <function is_iterable at 0x7b0a834860>,
1419
- 'to_str': <function to_str at 0x7b0a834900>,
1420
- 'filter_empty': <function filter_empty at 0x7b0a834720>,
1421
- 'get_class_method': <function get_class_method at 0x7b0a8347c0>,
1422
- 'get_filesize': <function get_filesize at 0x7b0a834a40>,
1423
- 'github_pull': <function github_pull at 0x7b0a834ae0>,
1424
- 'github_push': <function github_push at 0x7b0a834c20>,
1425
- 'github_user': <function github_user at 0x7b0a834cc0>,
1426
- 'hex_to_int': <function hex_to_int at 0x7b0a834d60>,
1427
- 'iargv': <function iargv at 0x7b0a834e00>,
1428
- 'idumps_html': <function idumps_html at 0x7b0a835080>,
1429
- 'idumps': <function idumps at 0x7b0a834f40>,
1430
- 'int_to_int': <function int_to_int at 0x7b0a90d9e0>,
1431
- 'ienumerate': <function ienumerate at 0x7b0a835580>,
1432
- 'ienv': <function ienv at 0x7b0a90d8a0>,
1433
- 'iexec': <function iexec at 0x7b0a90da80>,
1434
- 'ijoin': <function ijoin at 0x7b0a90dbc0>,
1435
- 'iloads_html': <function iloads_html at 0x7b0a90dda0>,
1436
- 'iloads': <function iloads at 0x7b0a90db20>,
1437
- 'int_to_bin': <function int_to_bin at 0x7b0a90dd00>,
1438
- 'int_to_hex': <function int_to_hex at 0x7b0a90de40>,
1439
- 'int_to_oct': <function int_to_oct at 0x7b0a90dee0>,
1440
- 'is_valid_url': <function is_valid_url at 0x7b0a90e0c0>,
1441
- 'iopen': <function iopen at 0x7b0a726520>,
1442
- 'iprint': <function iprint at 0x7b0a90e020>,
1443
- 'ireplace': <function ireplace at 0x7b0a90e3e0>,
1444
- 'iscandir': <function iscandir at 0x7b0a7ddc60>,
1445
- 'isplit': <function isplit at 0x7b0a7ddd00>,
1446
- 'ivars': <function ivars at 0x7b0a7ddda0>,
1447
- 'log': <function log at 0x7b0a7dde40>,
1448
- 'oct_to_int': <function oct_to_int at 0x7b0a7ddee0>,
1449
- 'password_generator': <function password_generator at 0x7b0a7ddf80>,
1450
- 'pip_freeze_without_version': <function pip_freeze_without_version at 0x7b0a7de0c0>,
1451
- 'poetry_publish': <function poetry_publish at 0x7b0a7de160>,
1452
- 'poetry_update_version': <function poetry_update_version at 0x7b0a7de2a0>,
1453
- 'print_dir': <function print_dir at 0x7b0a7de480>,
1454
- 'print_to_last_line': <function print_to_last_line at 0x7b0a7de520>,
1455
- 'random_bool': <function random_bool at 0x7b0a7de5c0>,
1456
- 'restart': <function restart at 0x7b0a7de660>,
1457
- 'set_timeout': <function set_timeout at 0x7b0a7de700>,
1458
- 'sets_ordered': <function sets_ordered at 0x7b0a7de7a0>,
1459
- 'str_cmp': <function str_cmp at 0x7b0a7de840>,
1460
- 'text_colorize': <function text_colorize at 0x7b0a7de8e0>},
1442
+ 'function': {'avg': <function avg at 0x6f8a432700>,
1443
+ 'get_filemtime': <function get_filemtime at 0x6f846c6de0>,
1444
+ 'print_colorize': <function print_colorize at 0x6f846c6fc0>,
1445
+ 'print_log': <function print_log at 0x6f84786b60>,
1446
+ 'console_run': <function console_run at 0x6f846c6e80>,
1447
+ 'auto_reload': <function auto_reload at 0x6f846b3ec0>,
1448
+ 'basename': <function basename at 0x6f846c6d40>,
1449
+ 'chr_to_int': <function chr_to_int at 0x6f846c7560>,
1450
+ 'int_to_chr': <function int_to_chr at 0x6f846c7600>,
1451
+ 'irange': <function irange at 0x6f846c7880>,
1452
+ 'batchmaker': <function batchmaker at 0x6f846c7240>,
1453
+ 'calculate': <function calculate at 0x6f846c7380>,
1454
+ 'batch_calculate': <function batch_calculate at 0x6f846c7100>,
1455
+ 'bin_to_int': <function bin_to_int at 0x6f846c71a0>,
1456
+ 'is_empty': <function is_empty at 0x6f844ec040>,
1457
+ 'exit_if_empty': <function exit_if_empty at 0x6f846c7ec0>,
1458
+ 'input_char': <function input_char at 0x6f846c7f60>,
1459
+ 'get_by_index': <function get_by_index at 0x6f844ec0e0>,
1460
+ 'choices': <function choices at 0x6f844ec2c0>,
1461
+ 'chunk_array': <function chunk_array at 0x6f844ec360>,
1462
+ 'create_folder': <function create_folder at 0x6f844ec400>,
1463
+ 'datetime_from_string': <function datetime_from_string at 0x6f844ec4a0>,
1464
+ 'datetime_now': <function datetime_now at 0x6f844ec540>,
1465
+ 'dict_first': <function dict_first at 0x6f844ec5e0>,
1466
+ 'dirname': <function dirname at 0x6f844ec680>,
1467
+ 'is_iterable': <function is_iterable at 0x6f844ec860>,
1468
+ 'to_str': <function to_str at 0x6f844ec900>,
1469
+ 'filter_empty': <function filter_empty at 0x6f844ec720>,
1470
+ 'get_class_method': <function get_class_method at 0x6f844ec7c0>,
1471
+ 'get_filesize': <function get_filesize at 0x6f844eca40>,
1472
+ 'github_pull': <function github_pull at 0x6f844ecae0>,
1473
+ 'github_push': <function github_push at 0x6f844ecc20>,
1474
+ 'github_user': <function github_user at 0x6f844eccc0>,
1475
+ 'hex_to_int': <function hex_to_int at 0x6f844ecd60>,
1476
+ 'iargv': <function iargv at 0x6f844ece00>,
1477
+ 'idumps_html': <function idumps_html at 0x6f844ed080>,
1478
+ 'idumps': <function idumps at 0x6f844ecf40>,
1479
+ 'int_to_int': <function int_to_int at 0x6f845c99e0>,
1480
+ 'ienumerate': <function ienumerate at 0x6f844ed580>,
1481
+ 'ienv': <function ienv at 0x6f845c98a0>,
1482
+ 'iexec': <function iexec at 0x6f845c9a80>,
1483
+ 'ijoin': <function ijoin at 0x6f845c9bc0>,
1484
+ 'iloads_html': <function iloads_html at 0x6f845c9da0>,
1485
+ 'iloads': <function iloads at 0x6f845c9b20>,
1486
+ 'int_to_bin': <function int_to_bin at 0x6f845c9d00>,
1487
+ 'int_to_hex': <function int_to_hex at 0x6f845c9e40>,
1488
+ 'int_to_oct': <function int_to_oct at 0x6f845c9ee0>,
1489
+ 'is_valid_url': <function is_valid_url at 0x6f845ca0c0>,
1490
+ 'iopen': <function iopen at 0x6f843da520>,
1491
+ 'iprint': <function iprint at 0x6f845ca020>,
1492
+ 'ireplace': <function ireplace at 0x6f845ca3e0>,
1493
+ 'iscandir': <function iscandir at 0x6f84491c60>,
1494
+ 'isplit': <function isplit at 0x6f84491d00>,
1495
+ 'ivars': <function ivars at 0x6f84491da0>,
1496
+ 'log': <function log at 0x6f84491e40>,
1497
+ 'oct_to_int': <function oct_to_int at 0x6f84491ee0>,
1498
+ 'password_generator': <function password_generator at 0x6f84491f80>,
1499
+ 'pip_freeze_without_version': <function pip_freeze_without_version at 0x6f844920c0>,
1500
+ 'poetry_publish': <function poetry_publish at 0x6f84492160>,
1501
+ 'poetry_update_version': <function poetry_update_version at 0x6f844922a0>,
1502
+ 'print_dir': <function print_dir at 0x6f84492480>,
1503
+ 'print_to_last_line': <function print_to_last_line at 0x6f84492520>,
1504
+ 'random_bool': <function random_bool at 0x6f844925c0>,
1505
+ 'restart': <function restart at 0x6f84492660>,
1506
+ 'set_timeout': <function set_timeout at 0x6f84492700>,
1507
+ 'sets_ordered': <function sets_ordered at 0x6f844927a0>,
1508
+ 'str_cmp': <function str_cmp at 0x6f84492840>,
1509
+ 'text_colorize': <function text_colorize at 0x6f844928e0>},
1461
1510
  'variable': {'LINUX': True,
1462
- 'PintUreg': <pint.registry.UnitRegistry object at 0x7b0db68950>,
1511
+ 'PintUreg': <pint.registry.UnitRegistry object at 0x6f8a434950>,
1463
1512
  'WINDOWS': False},
1464
1513
  'module': {'asyncio': <module 'asyncio' from '/data/data/com.termux/files/usr/lib/python3.11/asyncio/__init__.py'>,
1465
1514
  'colorama': <module 'colorama' from '/data/data/com.termux/files/usr/lib/python3.11/site-packages/colorama/__init__.py'>,
@@ -1549,7 +1598,7 @@ print(password_generator())
1549
1598
 
1550
1599
  Output:
1551
1600
  ```py
1552
- kT~|*@9(
1601
+ ud>w(/Ed
1553
1602
  ```
1554
1603
 
1555
1604
  ## pip_freeze_without_version
@@ -1607,7 +1656,7 @@ Output:
1607
1656
  __enter__ : https:/www.google.com
1608
1657
  __fspath__ : https:/www.google.com
1609
1658
  __getstate__ : (None, {'_drv': '', '_root': '', '_parts': ['https:', 'www.google.com'], '_str': 'https:/www.google.com'})
1610
- __hash__ : 4371941438919300075
1659
+ __hash__ : -6832070979877786529
1611
1660
  __init__ : None
1612
1661
  __init_subclass__ : None
1613
1662
  __module__ : pathlib
@@ -1620,8 +1669,8 @@ Output:
1620
1669
  _cached_cparts : ['https:', 'www.google.com']
1621
1670
  _cparts : ['https:', 'www.google.com']
1622
1671
  _drv :
1623
- _flavour : <pathlib._PosixFlavour object at 0x7b14328d10>
1624
- _hash : 4371941438919300075
1672
+ _flavour : <pathlib._PosixFlavour object at 0x6f8dd04bd0>
1673
+ _hash : -6832070979877786529
1625
1674
  _parts : ['https:', 'www.google.com']
1626
1675
  _root :
1627
1676
  _str : https:/www.google.com
@@ -1643,7 +1692,7 @@ Output:
1643
1692
  is_reserved : False
1644
1693
  is_socket : False
1645
1694
  is_symlink : False
1646
- iterdir : <generator object Path.iterdir at 0x7b05a4a960>
1695
+ iterdir : <generator object Path.iterdir at 0x6f7b2c6960>
1647
1696
  joinpath : https:/www.google.com
1648
1697
  name : www.google.com
1649
1698
  parent : https:
@@ -1683,7 +1732,7 @@ print(random_bool())
1683
1732
 
1684
1733
  Output:
1685
1734
  ```py
1686
- True
1735
+ False
1687
1736
  ```
1688
1737
 
1689
1738
  ## restart
@@ -1717,7 +1766,7 @@ x.cancel()
1717
1766
 
1718
1767
  Output:
1719
1768
  ```py
1720
- <Timer(Thread-2, started 528345971952)>
1769
+ <Timer(Thread-2, started 478777687280)>
1721
1770
  menghentikan timeout 7
1722
1771
  ```
1723
1772
 
@@ -1735,7 +1784,7 @@ print(list(sets_ordered(array)))
1735
1784
 
1736
1785
  Output:
1737
1786
  ```py
1738
- <generator object sets_ordered at 0x7b05a7cfb0>
1787
+ <generator object sets_ordered at 0x6f7b2f8fb0>
1739
1788
  [2, 3, 12, 42, 1, 43, 41, 4, 24, 32]
1740
1789
  ```
1741
1790
 
@@ -1790,8 +1839,9 @@ perlu trigger untuk memanggil method get().
1790
1839
 
1791
1840
 
1792
1841
  ```py
1793
- class ExampleAPIView(APIMixinView, View):
1794
- pass
1842
+ class ExampleTodoAddView(APIMixinView, View):
1843
+ def process_data(self, *args, **kwargs):
1844
+ return TodoModel.objects.create(**self.APIDict)
1795
1845
  ```
1796
1846
 
1797
1847
  ## ComparePerformance
@@ -1829,15 +1879,15 @@ print(ExampleComparePerformance().compare_performance())
1829
1879
 
1830
1880
  Output:
1831
1881
  ```py
1832
- {'a': <generator object ExampleComparePerformance.a.<locals>.<genexpr> at 0x7b05a7cad0>,
1882
+ {'a': <generator object ExampleComparePerformance.a.<locals>.<genexpr> at 0x6f7b2f8ad0>,
1833
1883
  'b': (0, 1, 2, 3, 4, 5, 6, 7, 8, 9),
1834
1884
  'c': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
1835
1885
  'd': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]}
1836
- {'a': 165, 'b': 138, 'c': 100, 'd': 164}
1837
- {'a': 148, 'b': 141, 'c': 100, 'd': 124}
1838
- {'a': 105, 'b': 517, 'c': 100, 'd': 107}
1839
- {'a': 134, 'b': 132, 'c': 100, 'd': 131}
1840
- {'a': 134, 'b': 133, 'c': 100, 'd': 130}
1886
+ {'a': 167, 'b': 137, 'c': 100, 'd': 154}
1887
+ {'a': 158, 'b': 143, 'c': 100, 'd': 131}
1888
+ {'a': 132, 'b': 135, 'c': 100, 'd': 127}
1889
+ {'a': 124, 'b': 132, 'c': 100, 'd': 130}
1890
+ {'a': 130, 'b': 139, 'c': 100, 'd': 134}
1841
1891
  ```
1842
1892
 
1843
1893
  ## PintUregQuantity
@@ -1,4 +1,4 @@
1
- pypipr/APIMixinView.py,sha256=3qarMHPSBtLp19JMHv6nfl2XRMbyK9zOygpy3L3uEeQ,1275
1
+ pypipr/APIMixinView.py,sha256=VxfxcGX3wWji3_g2UCUp-mqmofpLeMFz8MEy02_U-yw,1375
2
2
  pypipr/ComparePerformance.py,sha256=PeeBF1agcUN1P-4j8djrmtQWga8wr5QosJ6yaeoJOzI,2229
3
3
  pypipr/LINUX.py,sha256=XF5CR2imyRv8hGQpsDLDs_RU8xsD1aZLpFldEzP-mkU,77
4
4
  pypipr/PintUreg.py,sha256=_jmHZhUn8AcgFkXvZ6OTsWnjtp-CYcXUJ-dG_QdcARY,222
@@ -6,7 +6,7 @@ pypipr/PintUregQuantity.py,sha256=ErSZKB-GHShi1zKac30XgFdBwAUrxMo80IQzIjQ2HVc,11
6
6
  pypipr/RunParallel.py,sha256=3H6sVSeUSATQQsWBcDGTtaXuc-12Yc0XmDyVtsg3PMA,5992
7
7
  pypipr/WINDOWS.py,sha256=NMW-94lzdqwfEWv2lF_i2GcSHJFDwWjccFufpymg4-E,83
8
8
  pypipr/__init__.py,sha256=W_lXKC8Eft-XzdZW0vWLzkOzEQhOTi8ddA32WGOXDpY,3107
9
- pypipr/__terminal__.py,sha256=xl_6nDOFNlkHbXZQ-y8dsZe6M6nVnc-HNfBJHfOokLM,1266
9
+ pypipr/__terminal__.py,sha256=S5zRDTXrH40GNEDQnOLO94a_VhUhKb3CwUsgo1Of9mw,1376
10
10
  pypipr/auto_reload.py,sha256=FGchFBjQs_eT7CmOMLNYoch-17q7ySFOnPx5z1kbH3E,918
11
11
  pypipr/avg.py,sha256=wUtX3x8dgLoODhQLyMB-HRMVo8Ha2yz3cp7lgcUNbr0,218
12
12
  pypipr/basename.py,sha256=nypVfls6YL_7sY-MYHDcatm5flpBpGj2aMlIOKG9YqE,194
@@ -43,7 +43,7 @@ pypipr/iexec.py,sha256=nK_WMRK2LnyZh9i7NpYii_bfDZUKfAsJ5PVf5ZrHuRo,465
43
43
  pypipr/ijoin.py,sha256=2qi9Dx3t1ksZShC6a15FAJ-A8DnscohZxZFXwYM_x0g,2036
44
44
  pypipr/iloads.py,sha256=eyvSgqDxOXzU5dcPDT8cbtGtUIfjogxOqeQfwIhc92Q,638
45
45
  pypipr/iloads_html.py,sha256=HwpSvnV5PgjtPcXeYUeC_NovQ3jeKvGKkL3s4GfdVr8,4152
46
- pypipr/input_char.py,sha256=IW06mULytCvP_1F9LX2_ITL2cq6PQdg9lkeW2AGVA78,839
46
+ pypipr/input_char.py,sha256=RoatE79vLs3xMvrY2KDyJ9q3UOw6SQSwArNAvttgSNQ,907
47
47
  pypipr/int_to_bin.py,sha256=hRq8ANw5d32GC5dKaTdORWvfrPnYJyaU0Vi4TLodips,215
48
48
  pypipr/int_to_chr.py,sha256=Ae_cGhbwBCxmzqFrfjk0rLfAT049eYYjgMgJOtMpyhc,458
49
49
  pypipr/int_to_hex.py,sha256=w6kOPSNhOzjip7SWX7Q9df6f0vwwuKdbuHQhFjwOqN4,215
@@ -76,7 +76,7 @@ pypipr/sets_ordered.py,sha256=ve2Nc1eNYD_7QaTf_4otEAvzL1XpZP2MjX0KHSXF5nA,325
76
76
  pypipr/str_cmp.py,sha256=2kavWiT4VTddXcBotF1CxDOWSygk5rFrbllKxBjw9dc,377
77
77
  pypipr/text_colorize.py,sha256=IVjaCnXBSBu4Rh8pTO3CxDvxpA265HVwyKX_-PRXCcI,396
78
78
  pypipr/to_str.py,sha256=vSuspf-ZQldf4enkssa9XH0WMjkmWug51G9ia0K5occ,597
79
- pypipr-1.0.123.dist-info/METADATA,sha256=bYGOuJgibhcC43eN06CHAgm_aA1oRwG28JNLGAzaTz0,52266
80
- pypipr-1.0.123.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
81
- pypipr-1.0.123.dist-info/entry_points.txt,sha256=XEBtOa61BCVW4cVvoqYQnyTcenJ1tzFFB09YnuqlKBY,51
82
- pypipr-1.0.123.dist-info/RECORD,,
79
+ pypipr-1.0.124.dist-info/METADATA,sha256=RTof9VY85mLxVzzyFFr8HpXdFTr4uIcAgid26NLHwlI,52931
80
+ pypipr-1.0.124.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
81
+ pypipr-1.0.124.dist-info/entry_points.txt,sha256=XEBtOa61BCVW4cVvoqYQnyTcenJ1tzFFB09YnuqlKBY,51
82
+ pypipr-1.0.124.dist-info/RECORD,,