pypipr 1.0.74__py3-none-any.whl → 1.0.76__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 +25 -1
- pypipr/ibuiltins/chunk_array.py +3 -3
- pypipr/ibuiltins/get_class_method.py +1 -0
- pypipr/ibuiltins/get_from_index.py +14 -0
- pypipr/iconsole/print_dir.py +1 -0
- pypipr/iconsole/print_log.py +1 -1
- pypipr/iengineering/batch_calculate.py +2 -1
- pypipr/ifunctions/iloads.py +2 -2
- pypipr/ifunctions/iloads_html.py +1 -0
- pypipr/ifunctions/iprint.py +1 -0
- pypipr/terminal.py +5 -6
- {pypipr-1.0.74.dist-info → pypipr-1.0.76.dist-info}/METADATA +287 -53
- {pypipr-1.0.74.dist-info → pypipr-1.0.76.dist-info}/RECORD +15 -14
- {pypipr-1.0.74.dist-info → pypipr-1.0.76.dist-info}/WHEEL +0 -0
- {pypipr-1.0.74.dist-info → pypipr-1.0.76.dist-info}/entry_points.txt +0 -0
pypipr/__init__.py
CHANGED
@@ -15,6 +15,7 @@ from .ibuiltins.filter_empty import filter_empty
|
|
15
15
|
from .ibuiltins.get_class_method import get_class_method
|
16
16
|
from .ibuiltins.get_filemtime import get_filemtime
|
17
17
|
from .ibuiltins.get_filesize import get_filesize
|
18
|
+
from .ibuiltins.get_from_index import get_from_index
|
18
19
|
from .ibuiltins.is_empty import is_empty
|
19
20
|
from .ibuiltins.is_iterable import is_iterable
|
20
21
|
from .ibuiltins.is_valid_url import is_valid_url
|
@@ -59,4 +60,27 @@ from .ifunctions.iprint import iprint
|
|
59
60
|
from .ifunctions.irange import irange
|
60
61
|
from .ifunctions.ireplace import ireplace
|
61
62
|
from .ifunctions.iscandir import iscandir
|
62
|
-
from .ifunctions.isplit import isplit
|
63
|
+
from .ifunctions.isplit import isplit
|
64
|
+
import colorama
|
65
|
+
import datetime
|
66
|
+
import inspect
|
67
|
+
import io
|
68
|
+
import json
|
69
|
+
import lxml
|
70
|
+
import math
|
71
|
+
import os
|
72
|
+
import pathlib
|
73
|
+
import pint
|
74
|
+
import pprint
|
75
|
+
import random
|
76
|
+
import re
|
77
|
+
import requests
|
78
|
+
import string
|
79
|
+
import subprocess
|
80
|
+
import sys
|
81
|
+
import textwrap
|
82
|
+
import time
|
83
|
+
import tzdata
|
84
|
+
import webbrowser
|
85
|
+
import yaml
|
86
|
+
import zoneinfo
|
pypipr/ibuiltins/chunk_array.py
CHANGED
@@ -3,9 +3,9 @@ def chunk_array(array, size, start=0):
|
|
3
3
|
Membagi array menjadi potongan-potongan dengan besaran yg diinginkan
|
4
4
|
|
5
5
|
```python
|
6
|
-
|
7
|
-
print(
|
8
|
-
print(list(
|
6
|
+
arr = [2, 3, 12, 3, 3, 42, 42, 1, 43, 2, 42, 41, 4, 24, 32, 42, 3, 12, 32, 42, 42]
|
7
|
+
print(chunk_array(arr, 5))
|
8
|
+
print(list(chunk_array(arr, 5)))
|
9
9
|
```
|
10
10
|
"""
|
11
11
|
for i in range(start, len(array), size):
|
@@ -0,0 +1,14 @@
|
|
1
|
+
def get_from_index(obj, index, on_error=None):
|
2
|
+
"""
|
3
|
+
Mendapatkan value dari object berdasarkan indexnya.
|
4
|
+
Jika error out of range maka akan mengembalikan on_error.
|
5
|
+
|
6
|
+
```python
|
7
|
+
l = [1, 3, 5]
|
8
|
+
print(get_from_index(l, 7))
|
9
|
+
```
|
10
|
+
"""
|
11
|
+
try:
|
12
|
+
return obj[index]
|
13
|
+
except Exception:
|
14
|
+
return on_error
|
pypipr/iconsole/print_dir.py
CHANGED
pypipr/iconsole/print_log.py
CHANGED
pypipr/ifunctions/iloads.py
CHANGED
@@ -14,14 +14,14 @@ def iloads(data, syntax="yaml"):
|
|
14
14
|
data = {
|
15
15
|
'a': 123,
|
16
16
|
't': ['disini', 'senang', 'disana', 'senang'],
|
17
|
-
'l': (12, 23, [12, 42])
|
17
|
+
'l': (12, 23, [12, 42]),
|
18
18
|
}
|
19
19
|
s = idumps(data)
|
20
20
|
print(iloads(s))
|
21
21
|
```
|
22
22
|
"""
|
23
23
|
if syntax == "yaml":
|
24
|
-
return yaml.
|
24
|
+
return yaml.full_load(data)
|
25
25
|
if syntax == "json":
|
26
26
|
return json.load(data)
|
27
27
|
if syntax == "html":
|
pypipr/ifunctions/iloads_html.py
CHANGED
@@ -18,6 +18,7 @@ def iloads_html(html):
|
|
18
18
|
apabila data berupa table maka dapat dicek type(data) -> html_table
|
19
19
|
|
20
20
|
```python
|
21
|
+
import pprint
|
21
22
|
pprint.pprint(iloads_html(iopen("https://harga-emas.org/")), depth=10)
|
22
23
|
pprint.pprint(iloads_html(iopen("https://harga-emas.org/1-gram/")), depth=10)
|
23
24
|
```
|
pypipr/ifunctions/iprint.py
CHANGED
pypipr/terminal.py
CHANGED
@@ -16,12 +16,12 @@ def main():
|
|
16
16
|
pypipr.exit_if_empty(len(a))
|
17
17
|
|
18
18
|
if a.isdigit():
|
19
|
-
m = m
|
19
|
+
m = pypipr.get_from_index(m, int(a))
|
20
20
|
else:
|
21
21
|
m = [v for v in m if v.__contains__(a)]
|
22
|
-
pypipr.exit_if_empty(m)
|
23
22
|
if len(m) == 1:
|
24
|
-
m = m
|
23
|
+
m = pypipr.get_from_index(m, 0)
|
24
|
+
pypipr.exit_if_empty(m)
|
25
25
|
a = None
|
26
26
|
|
27
27
|
f = getattr(pypipr, m)
|
@@ -32,10 +32,11 @@ def main():
|
|
32
32
|
|
33
33
|
if callable(f):
|
34
34
|
import inspect
|
35
|
+
|
35
36
|
s = inspect.signature(f)
|
36
37
|
print(m, end="")
|
37
38
|
pypipr.print_colorize(s)
|
38
|
-
|
39
|
+
|
39
40
|
k = {}
|
40
41
|
for i, v in s.parameters.items():
|
41
42
|
print(f"{i} [{v.default}] : ", end="")
|
@@ -49,7 +50,5 @@ def main():
|
|
49
50
|
pypipr.iprint(f)
|
50
51
|
|
51
52
|
|
52
|
-
|
53
|
-
|
54
53
|
if __name__ == "__main__":
|
55
54
|
main()
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pypipr
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.76
|
4
4
|
Summary: The Python Package Index Project
|
5
5
|
Author: ufiapjj
|
6
6
|
Author-email: ufiapjj@gmail.com
|
@@ -100,41 +100,14 @@ Bisa digunakan untuk mencari alternatif terendah/tertinggi/dsb.
|
|
100
100
|
|
101
101
|
|
102
102
|
```python
|
103
|
-
|
103
|
+
print(batch_calculate("{1 10} m ** {1 3}"))
|
104
|
+
print(list(batch_calculate("{1 10} m ** {1 3}")))
|
104
105
|
```
|
105
106
|
|
106
107
|
Output:
|
107
108
|
```py
|
108
|
-
|
109
|
-
('1 m ** 2', <Quantity(1, 'meter ** 2')>),
|
110
|
-
('1 m ** 3', <Quantity(1, 'meter ** 3')>),
|
111
|
-
('2 m ** 1', <Quantity(2, 'meter')>),
|
112
|
-
('2 m ** 2', <Quantity(2, 'meter ** 2')>),
|
113
|
-
('2 m ** 3', <Quantity(2, 'meter ** 3')>),
|
114
|
-
('3 m ** 1', <Quantity(3, 'meter')>),
|
115
|
-
('3 m ** 2', <Quantity(3, 'meter ** 2')>),
|
116
|
-
('3 m ** 3', <Quantity(3, 'meter ** 3')>),
|
117
|
-
('4 m ** 1', <Quantity(4, 'meter')>),
|
118
|
-
('4 m ** 2', <Quantity(4, 'meter ** 2')>),
|
119
|
-
('4 m ** 3', <Quantity(4, 'meter ** 3')>),
|
120
|
-
('5 m ** 1', <Quantity(5, 'meter')>),
|
121
|
-
('5 m ** 2', <Quantity(5, 'meter ** 2')>),
|
122
|
-
('5 m ** 3', <Quantity(5, 'meter ** 3')>),
|
123
|
-
('6 m ** 1', <Quantity(6, 'meter')>),
|
124
|
-
('6 m ** 2', <Quantity(6, 'meter ** 2')>),
|
125
|
-
('6 m ** 3', <Quantity(6, 'meter ** 3')>),
|
126
|
-
('7 m ** 1', <Quantity(7, 'meter')>),
|
127
|
-
('7 m ** 2', <Quantity(7, 'meter ** 2')>),
|
128
|
-
('7 m ** 3', <Quantity(7, 'meter ** 3')>),
|
129
|
-
('8 m ** 1', <Quantity(8, 'meter')>),
|
130
|
-
('8 m ** 2', <Quantity(8, 'meter ** 2')>),
|
131
|
-
('8 m ** 3', <Quantity(8, 'meter ** 3')>),
|
132
|
-
('9 m ** 1', <Quantity(9, 'meter')>),
|
133
|
-
('9 m ** 2', <Quantity(9, 'meter ** 2')>),
|
134
|
-
('9 m ** 3', <Quantity(9, 'meter ** 3')>),
|
135
|
-
('10 m ** 1', <Quantity(10, 'meter')>),
|
136
|
-
('10 m ** 2', <Quantity(10, 'meter ** 2')>),
|
137
|
-
('10 m ** 3', <Quantity(10, 'meter ** 3')>)]
|
109
|
+
<generator object batch_calculate at 0x76ef846200>
|
110
|
+
[('1 m ** 1', <Quantity(1, 'meter')>), ('1 m ** 2', <Quantity(1, 'meter ** 2')>), ('1 m ** 3', <Quantity(1, 'meter ** 3')>), ('2 m ** 1', <Quantity(2, 'meter')>), ('2 m ** 2', <Quantity(2, 'meter ** 2')>), ('2 m ** 3', <Quantity(2, 'meter ** 3')>), ('3 m ** 1', <Quantity(3, 'meter')>), ('3 m ** 2', <Quantity(3, 'meter ** 2')>), ('3 m ** 3', <Quantity(3, 'meter ** 3')>), ('4 m ** 1', <Quantity(4, 'meter')>), ('4 m ** 2', <Quantity(4, 'meter ** 2')>), ('4 m ** 3', <Quantity(4, 'meter ** 3')>), ('5 m ** 1', <Quantity(5, 'meter')>), ('5 m ** 2', <Quantity(5, 'meter ** 2')>), ('5 m ** 3', <Quantity(5, 'meter ** 3')>), ('6 m ** 1', <Quantity(6, 'meter')>), ('6 m ** 2', <Quantity(6, 'meter ** 2')>), ('6 m ** 3', <Quantity(6, 'meter ** 3')>), ('7 m ** 1', <Quantity(7, 'meter')>), ('7 m ** 2', <Quantity(7, 'meter ** 2')>), ('7 m ** 3', <Quantity(7, 'meter ** 3')>), ('8 m ** 1', <Quantity(8, 'meter')>), ('8 m ** 2', <Quantity(8, 'meter ** 2')>), ('8 m ** 3', <Quantity(8, 'meter ** 3')>), ('9 m ** 1', <Quantity(9, 'meter')>), ('9 m ** 2', <Quantity(9, 'meter ** 2')>), ('9 m ** 3', <Quantity(9, 'meter ** 3')>), ('10 m ** 1', <Quantity(10, 'meter')>), ('10 m ** 2', <Quantity(10, 'meter ** 2')>), ('10 m ** 3', <Quantity(10, 'meter ** 3')>)]
|
138
111
|
```
|
139
112
|
|
140
113
|
## batchmaker
|
@@ -158,7 +131,7 @@ print(list(batchmaker(s)))
|
|
158
131
|
|
159
132
|
Output:
|
160
133
|
```py
|
161
|
-
<generator object batchmaker at
|
134
|
+
<generator object batchmaker at 0x76ef8516c0>
|
162
135
|
['Urutan 1 dan 10 dan j dan Z saja.', 'Urutan 1 dan 10 dan j dan K saja.', 'Urutan 1 dan 10 dan k dan Z saja.', 'Urutan 1 dan 10 dan k dan K saja.', 'Urutan 1 dan 9 dan j dan Z saja.', 'Urutan 1 dan 9 dan j dan K saja.', 'Urutan 1 dan 9 dan k dan Z saja.', 'Urutan 1 dan 9 dan k dan K saja.', 'Urutan 4 dan 10 dan j dan Z saja.', 'Urutan 4 dan 10 dan j dan K saja.', 'Urutan 4 dan 10 dan k dan Z saja.', 'Urutan 4 dan 10 dan k dan K saja.', 'Urutan 4 dan 9 dan j dan Z saja.', 'Urutan 4 dan 9 dan j dan K saja.', 'Urutan 4 dan 9 dan k dan Z saja.', 'Urutan 4 dan 9 dan k dan K saja.']
|
163
136
|
```
|
164
137
|
|
@@ -228,9 +201,15 @@ c = choices(
|
|
228
201
|
Membagi array menjadi potongan-potongan dengan besaran yg diinginkan
|
229
202
|
|
230
203
|
```python
|
231
|
-
|
232
|
-
print(
|
233
|
-
print(list(
|
204
|
+
arr = [2, 3, 12, 3, 3, 42, 42, 1, 43, 2, 42, 41, 4, 24, 32, 42, 3, 12, 32, 42, 42]
|
205
|
+
print(chunk_array(arr, 5))
|
206
|
+
print(list(chunk_array(arr, 5)))
|
207
|
+
```
|
208
|
+
|
209
|
+
Output:
|
210
|
+
```py
|
211
|
+
<generator object chunk_array at 0x76ef874e40>
|
212
|
+
[[2, 3, 12, 3, 3], [42, 42, 1, 43, 2], [42, 41, 4, 24, 32], [42, 3, 12, 32, 42], [42]]
|
234
213
|
```
|
235
214
|
|
236
215
|
## console_run
|
@@ -291,9 +270,9 @@ print(datetime_now("Etc/GMT+7"))
|
|
291
270
|
|
292
271
|
Output:
|
293
272
|
```py
|
294
|
-
2024-04-
|
295
|
-
2024-04-
|
296
|
-
2024-04-
|
273
|
+
2024-04-23 05:00:14.636387+07:00
|
274
|
+
2024-04-22 22:00:14.636697+00:00
|
275
|
+
2024-04-22 15:00:14.637248-07:00
|
297
276
|
```
|
298
277
|
|
299
278
|
## dict_first
|
@@ -360,7 +339,7 @@ print(filter_empty(var))
|
|
360
339
|
|
361
340
|
Output:
|
362
341
|
```py
|
363
|
-
<generator object filter_empty at
|
342
|
+
<generator object filter_empty at 0x76ef8463e0>
|
364
343
|
```
|
365
344
|
|
366
345
|
## get_class_method
|
@@ -384,11 +363,13 @@ class ExampleGetClassMethod:
|
|
384
363
|
return [x for x in range(10)]
|
385
364
|
|
386
365
|
print(get_class_method(ExampleGetClassMethod))
|
366
|
+
print(list(get_class_method(ExampleGetClassMethod)))
|
387
367
|
```
|
388
368
|
|
389
369
|
Output:
|
390
370
|
```py
|
391
|
-
<generator object get_class_method at
|
371
|
+
<generator object get_class_method at 0x76ef8465c0>
|
372
|
+
[<function ExampleGetClassMethod.a at 0x76ef886c00>, <function ExampleGetClassMethod.b at 0x76ef886b60>, <function ExampleGetClassMethod.c at 0x76ef886ca0>, <function ExampleGetClassMethod.d at 0x76ef886f20>]
|
392
373
|
```
|
393
374
|
|
394
375
|
## get_filemtime
|
@@ -421,6 +402,23 @@ Output:
|
|
421
402
|
465
|
422
403
|
```
|
423
404
|
|
405
|
+
## get_from_index
|
406
|
+
|
407
|
+
`get_from_index(obj, index, on_error=None)`
|
408
|
+
|
409
|
+
Mendapatkan value dari object berdasarkan indexnya.
|
410
|
+
Jika error out of range maka akan mengembalikan on_error.
|
411
|
+
|
412
|
+
```python
|
413
|
+
l = [1, 3, 5]
|
414
|
+
print(get_from_index(l, 7))
|
415
|
+
```
|
416
|
+
|
417
|
+
Output:
|
418
|
+
```py
|
419
|
+
None
|
420
|
+
```
|
421
|
+
|
424
422
|
## github_pull
|
425
423
|
|
426
424
|
`github_pull()`
|
@@ -683,7 +681,7 @@ print(ijoin(10, ' '))
|
|
683
681
|
|
684
682
|
Output:
|
685
683
|
```py
|
686
|
-
|
684
|
+
weq, asd, dfs, qweqw
|
687
685
|
,ini,path,seperti,url,
|
688
686
|
ini,path,seperti,url
|
689
687
|
<li>satu</li>
|
@@ -712,12 +710,17 @@ String data adalah berupa syntax YAML.
|
|
712
710
|
data = {
|
713
711
|
'a': 123,
|
714
712
|
't': ['disini', 'senang', 'disana', 'senang'],
|
715
|
-
'l': (12, 23, [12, 42])
|
713
|
+
'l': (12, 23, [12, 42]),
|
716
714
|
}
|
717
715
|
s = idumps(data)
|
718
716
|
print(iloads(s))
|
719
717
|
```
|
720
718
|
|
719
|
+
Output:
|
720
|
+
```py
|
721
|
+
{'a': 123, 'l': (12, 23, [12, 42]), 't': ['disini', 'senang', 'disana', 'senang']}
|
722
|
+
```
|
723
|
+
|
721
724
|
## iloads_html
|
722
725
|
|
723
726
|
`iloads_html(html)`
|
@@ -735,10 +738,168 @@ apabila data berupa dl maka dapat dicek type(data) -> html_dl
|
|
735
738
|
apabila data berupa table maka dapat dicek type(data) -> html_table
|
736
739
|
|
737
740
|
```python
|
741
|
+
import pprint
|
738
742
|
pprint.pprint(iloads_html(iopen("https://harga-emas.org/")), depth=10)
|
739
743
|
pprint.pprint(iloads_html(iopen("https://harga-emas.org/1-gram/")), depth=10)
|
740
744
|
```
|
741
745
|
|
746
|
+
Output:
|
747
|
+
```py
|
748
|
+
(['Home', 'Emas 1 Gram', 'History', 'Trend', 'Perak 1 Gram', 'Pluang'],
|
749
|
+
[['Harga Emas Hari Ini - Selasa, 23 April 2024'],
|
750
|
+
['Spot Emas USD↓2.325,78 (-4,35) / oz',
|
751
|
+
'Kurs IDR16.280,00 / USD',
|
752
|
+
'Emas IDR↓1.217.346 (-2.277) / gr'],
|
753
|
+
['LM Antam (Jual)↓1.343.000 (-4.000) / gr',
|
754
|
+
'LM Antam (Beli)↓1.238.000 (-4.000) / gr']],
|
755
|
+
[['Harga Emas Hari Ini'],
|
756
|
+
['Gram', 'Gedung Antam Jakarta', 'Pegadaian'],
|
757
|
+
['per Gram (Rp)', 'per Batangan (Rp)', 'per Gram (Rp)', 'per Batangan (Rp)'],
|
758
|
+
['1000',
|
759
|
+
'1.284 (-4)',
|
760
|
+
'1.283.600 (-4.000)',
|
761
|
+
'1.043.040 (+8.200)',
|
762
|
+
'1.043.040.000 (+8.200.000)'],
|
763
|
+
['500',
|
764
|
+
'2.567 (-8)',
|
765
|
+
'1.283.640 (-4.000)',
|
766
|
+
'1.043.082 (+8.200)',
|
767
|
+
'521.541.000 (+4.100.000)'],
|
768
|
+
['250',
|
769
|
+
'5.136 (-16)',
|
770
|
+
'1.284.060 (-4.000)',
|
771
|
+
'1.043.512 (+8.200)',
|
772
|
+
'260.878.000 (+2.050.000)'],
|
773
|
+
['100',
|
774
|
+
'12.851 (-40)',
|
775
|
+
'1.285.120 (-4.000)',
|
776
|
+
'1.044.600 (+8.200)',
|
777
|
+
'104.460.000 (+820.000)'],
|
778
|
+
['50',
|
779
|
+
'25.718 (-80)',
|
780
|
+
'1.285.900 (-4.000)',
|
781
|
+
'1.045.400 (+8.200)',
|
782
|
+
'52.270.000 (+410.000)'],
|
783
|
+
['25',
|
784
|
+
'51.499 (-160)',
|
785
|
+
'1.287.480 (-4.000)',
|
786
|
+
'1.047.040 (+8.200)',
|
787
|
+
'26.176.000 (+205.000)'],
|
788
|
+
['10',
|
789
|
+
'129.250 (-400)',
|
790
|
+
'1.292.500 (-4.000)',
|
791
|
+
'1.052.200 (+8.200)',
|
792
|
+
'10.522.000 (+82.000)'],
|
793
|
+
['5',
|
794
|
+
'259.600 (-800)',
|
795
|
+
'1.298.000 (-4.000)',
|
796
|
+
'1.057.800 (+8.200)',
|
797
|
+
'5.289.000 (+41.000)'],
|
798
|
+
['3',
|
799
|
+
'434.889 (-1.333)',
|
800
|
+
'1.304.667 (-4.000)',
|
801
|
+
'1.064.667 (+8.000)',
|
802
|
+
'3.194.000 (+24.000)'],
|
803
|
+
['2',
|
804
|
+
'656.500 (-2.000)',
|
805
|
+
'1.313.000 (-4.000)',
|
806
|
+
'1.073.500 (+8.500)',
|
807
|
+
'2.147.000 (+17.000)'],
|
808
|
+
['1',
|
809
|
+
'1.343.000 (-4.000)',
|
810
|
+
'1.343.000 (-4.000)',
|
811
|
+
'1.104.000 (+8.000)',
|
812
|
+
'1.104.000 (+8.000)'],
|
813
|
+
['0.5',
|
814
|
+
'2.886.000 (-8.000)',
|
815
|
+
'1.443.000 (-4.000)',
|
816
|
+
'1.208.000 (+8.000)',
|
817
|
+
'604.000 (+4.000)'],
|
818
|
+
['Update harga LM Antam :22 April 2024, pukul 08:09Harga pembelian kembali '
|
819
|
+
':Rp. 1.238.000/gram (-4.000)',
|
820
|
+
'Update harga LM Pegadaian :31 Agustus 2023']],
|
821
|
+
[['Spot Harga Emas Hari Ini (Market Open)'],
|
822
|
+
['Satuan', 'USD', 'Kurs\xa0Dollar', 'IDR'],
|
823
|
+
['Ounce\xa0(oz)', '2.325,78 (-4,35)', '16.280,00', '37.863.698'],
|
824
|
+
['Gram\xa0(gr)', '74,78', '16.280,00', '1.217.346 (-2.277)'],
|
825
|
+
['Kilogram\xa0(kg)', '74.775,56', '16.280,00', '1.217.346.173'],
|
826
|
+
['Update harga emas :23 April 2024, pukul 05:00Update kurs :22 April 2024, '
|
827
|
+
'pukul 13:10']],
|
828
|
+
[['Gram', 'UBS Gold 99.99%'],
|
829
|
+
['Jual', 'Beli'],
|
830
|
+
['/ Batang', '/ Gram', '/ Batang', '/ Gram'],
|
831
|
+
['100', '128.200.000', '1.282.000', '127.085.000', '1.270.850'],
|
832
|
+
['50', '64.250.000', '1.285.000', '63.595.000', '1.271.900'],
|
833
|
+
['25', '32.150.000', '1.286.000', '31.900.000', '1.276.000'],
|
834
|
+
['10', '12.910.000', '1.291.000', '12.810.000', '1.281.000'],
|
835
|
+
['5', '6.480.000', '1.296.000', '6.457.000', '1.291.400'],
|
836
|
+
['1', '1.340.000', '1.340.000', '1.324.000', '1.324.000'],
|
837
|
+
['', 'Update :22 April 2024, pukul 11:58']],
|
838
|
+
[['Konversi Satuan'],
|
839
|
+
['Satuan', 'Ounce (oz)', 'Gram (gr)', 'Kilogram (kg)'],
|
840
|
+
['Ounce\xa0(oz)', '1', '31,1034767696', '0,0311034768'],
|
841
|
+
['Gram\xa0(gr)', '0,0321507466', '1', '0.001'],
|
842
|
+
['Kilogram\xa0(kg)', '32,1507466000', '1.000', '1']],
|
843
|
+
[['Pergerakan Harga Emas Dunia'],
|
844
|
+
['Waktu', 'Emas'],
|
845
|
+
['Unit', 'USD', 'IDR'],
|
846
|
+
['Angka', '+/-', 'Angka', '+/-'],
|
847
|
+
['Hari Ini', 'Kurs', '', '', '16.280', '%'],
|
848
|
+
['oz', '2.330,13', '-4,35-0,19%', '37.934.516', '-70.818-0,19%'],
|
849
|
+
['gr', '74,92', '-0,14-0,19%', '1.219.623', '-2.277-0,19%'],
|
850
|
+
['30 Hari', 'Kurs', '', '', '15.662', '+618+3,95%'],
|
851
|
+
['oz', '2.165,64', '+160,14+7,39%', '33.918.254', '+3.945.445+11,63%'],
|
852
|
+
['gr', '69,63', '+5,15+7,39%', '1.090.497', '+126.849+11,63%'],
|
853
|
+
['2 Bulan', 'Kurs', '', '', '15.630', '+650+4,16%'],
|
854
|
+
['oz', '2.038,19', '+287,59+14,11%', '31.856.910', '+6.006.789+18,86%'],
|
855
|
+
['gr', '65,53', '+9,25+14,11', '1.024.223', '+193.123+18,86%'],
|
856
|
+
['6 Bulan', 'Kurs', '', '', '15.871', '+409+2,58%'],
|
857
|
+
['oz', '1.984,00', '+341,78+17,23%', '31.488.064', '+6.375.634+20,25%'],
|
858
|
+
['gr', '63,79', '+10,99+17,23%', '1.012.365', '+204.981+20,25%'],
|
859
|
+
['1 Tahun', 'Kurs', '', '', '15.731', '+549+3,49%'],
|
860
|
+
['oz', '1.823,86', '+501,92+27,52%', '28.691.142', '+9.172.557+31,97%'],
|
861
|
+
['gr', '58,64', '+16,14+27,52%', '922.442', '+294.905+31,97%'],
|
862
|
+
['2 Tahun', 'Kurs', '', '', '14.348', '+1.932+13,47%'],
|
863
|
+
['oz', '1.931,96', '+393,82+20,38%', '27.719.762', '+10.143.936+36,59%'],
|
864
|
+
['gr', '62,11', '+12,66+20,38%', '891.211', '+326.135+36,59%'],
|
865
|
+
['3 Tahun', 'Kurs', '', '', '14.530', '+1.750+12,04%'],
|
866
|
+
['oz', '1.777,11', '+548,67+30,87%', '25.821.408', '+12.042.290+46,64%'],
|
867
|
+
['gr', '57,14', '+17,64+30,87%', '830.178', '+387.169+46,64%'],
|
868
|
+
['5 Tahun', 'Kurs', '', '', '14.154', '+2.126+15,02%'],
|
869
|
+
['oz', '1.277,64', '+1.048,14+82,04%', '18.083.717', '+19.779.982+109,38%'],
|
870
|
+
['gr', '41,08', '+33,70+82,04%', '581.405', '+635.941+109,38%']])
|
871
|
+
(['Home', 'Emas 1 Gram', 'History', 'Trend', 'Perak 1 Gram', 'Pluang'],
|
872
|
+
[[''],
|
873
|
+
['Emas 24 KaratHarga Emas 1 Gram', ''],
|
874
|
+
['USD', '74,78↓', '-0,14-0,19%'],
|
875
|
+
['KURS', '16.238,15↓', '-8,20-0,05%'],
|
876
|
+
['IDR', '1.214.216,82↓', '-2.885,30-0,24%'],
|
877
|
+
['Selasa, 23 April 2024 05:00']],
|
878
|
+
[[''],
|
879
|
+
['Emas 1 Gram (IDR)Emas 1 Gram (USD)Kurs USD-IDR',
|
880
|
+
'Hari Ini',
|
881
|
+
'1 Bulan',
|
882
|
+
'1 Tahun',
|
883
|
+
'5 Tahun',
|
884
|
+
'Max',
|
885
|
+
'']],
|
886
|
+
[['Pergerakkan Harga Emas 1 Gram'],
|
887
|
+
['', 'Penutupan Kemarin', 'Pergerakkan Hari Ini', 'Rata-rata'],
|
888
|
+
['USD', '74,92', '74,78 - 74,92', '74,85'],
|
889
|
+
['KURS', '16.246,35', '16.238,15 - 16.246,35', '16.242,25'],
|
890
|
+
['IDR', '1.217.102,12', '1.214.216,82 - 1.217.102,12', '1.215.659,47'],
|
891
|
+
[''],
|
892
|
+
['', 'Awal Tahun', 'Pergerakkan YTD', '+/- YTD'],
|
893
|
+
['USD', '66,32', '64,07 - 77,14', '+8,46 (12,76%)'],
|
894
|
+
['KURS', '15.390,10', '15.390,00 - 16.307,80', '+848,05 (5,51%)'],
|
895
|
+
['IDR', '1.020.729,53', '997.660,12 - 1.256.829,06', '+193.487,29 (18,96%)'],
|
896
|
+
[''],
|
897
|
+
['', 'Tahun Lalu / 52 Minggu', 'Pergerakkan 52 Minggu', '+/- 52 Minggu'],
|
898
|
+
['USD', '63,76', '58,43 - 77,14', '+11,02 (17,28%)'],
|
899
|
+
['KURS', '14.936,00', '14.669,40 - 16.307,80', '+1.302,15 (8,72%)'],
|
900
|
+
['IDR', '952.339,68', '912.925,68 - 1.256.829,06', '+261.877,14 (27,50%)']])
|
901
|
+
```
|
902
|
+
|
742
903
|
## input_char
|
743
904
|
|
744
905
|
`input_char(prompt=None, prompt_ending='', newline_after_input=True, echo_char=True, default=None)`
|
@@ -790,7 +951,7 @@ Output:
|
|
790
951
|
```py
|
791
952
|
8
|
792
953
|
['mana', 'aja']
|
793
|
-
[<Element a at
|
954
|
+
[<Element a at 0x76f9498d20>, <Element a at 0x76ef6ba620>, <Element a at 0x76ef701090>, <Element a at 0x76ef701130>, <Element a at 0x76ef701180>, <Element a at 0x76ef7011d0>, <Element a at 0x76ef701220>, <Element a at 0x76ef701270>, <Element a at 0x76ef7012c0>, <Element a at 0x76ef701310>, <Element a at 0x76ef701360>, <Element a at 0x76ef7013b0>, <Element a at 0x76ef701400>, <Element a at 0x76ef701450>, <Element a at 0x76ef7014a0>, <Element a at 0x76ef7014f0>, <Element a at 0x76ef701540>, <Element a at 0x76ef701590>]
|
794
955
|
False
|
795
956
|
```
|
796
957
|
|
@@ -802,6 +963,7 @@ Improve print function dengan menambahkan color dan pretty print
|
|
802
963
|
Color menggunakan colorama Fore + Back + Style
|
803
964
|
|
804
965
|
```python
|
966
|
+
import colorama
|
805
967
|
iprint(
|
806
968
|
'yang ini',
|
807
969
|
{'12':12,'sdsd':{'12':21,'as':[88]}},
|
@@ -809,6 +971,11 @@ iprint(
|
|
809
971
|
)
|
810
972
|
```
|
811
973
|
|
974
|
+
Output:
|
975
|
+
```py
|
976
|
+
[34m[1myang ini[0m [34m[1m{'12': 12, 'sdsd': {'12': 21, 'as': [88]}}[0m
|
977
|
+
```
|
978
|
+
|
812
979
|
## irange
|
813
980
|
|
814
981
|
`irange(start, finish, step=1)`
|
@@ -825,8 +992,8 @@ print(list(irange(10, 5)))
|
|
825
992
|
|
826
993
|
Output:
|
827
994
|
```py
|
828
|
-
<generator object irange at
|
829
|
-
<generator object irange at
|
995
|
+
<generator object irange at 0x76ef833bc0>
|
996
|
+
<generator object irange at 0x76ef833bc0>
|
830
997
|
['a', 'k', 'u']
|
831
998
|
[1, 2, 3, 4, 5, 6, 7]
|
832
999
|
[10, 9, 8, 7, 6, 5]
|
@@ -943,8 +1110,8 @@ print(list(iscandir("./", recursive=False, scan_file=False)))
|
|
943
1110
|
|
944
1111
|
Output:
|
945
1112
|
```py
|
946
|
-
<generator object iscandir at
|
947
|
-
[PosixPath('.git'), PosixPath('.vscode'), PosixPath('pypipr')]
|
1113
|
+
<generator object iscandir at 0x76ef875640>
|
1114
|
+
[PosixPath('.git'), PosixPath('.vscode'), PosixPath('pypipr'), PosixPath('__pycache__'), PosixPath('dist')]
|
948
1115
|
```
|
949
1116
|
|
950
1117
|
## isplit
|
@@ -1002,7 +1169,7 @@ print(password_generator())
|
|
1002
1169
|
|
1003
1170
|
Output:
|
1004
1171
|
```py
|
1005
|
-
|
1172
|
+
1,7'~v%p
|
1006
1173
|
```
|
1007
1174
|
|
1008
1175
|
## pip_freeze_without_version
|
@@ -1054,10 +1221,72 @@ print_colorize("Print some text", color=colorama.Fore.RED)
|
|
1054
1221
|
Print property dan method yang tersedia pada variabel
|
1055
1222
|
|
1056
1223
|
```python
|
1224
|
+
import pathlib
|
1057
1225
|
p = pathlib.Path("https://www.google.com/")
|
1058
1226
|
print_dir(p, colorize=False)
|
1059
1227
|
```
|
1060
1228
|
|
1229
|
+
Output:
|
1230
|
+
```py
|
1231
|
+
__bytes__ : b'https:/www.google.com'
|
1232
|
+
__class__ : .
|
1233
|
+
__dir__ : ['__module__', '__doc__', '__slots__', '__new__', '_make_child_relpath', '__enter__', '__exit__', 'cwd', 'home', 'samefile', 'iterdir', '_scandir', 'glob', 'rglob', 'absolute', 'resolve', 'stat', 'owner', 'group', 'open', 'read_bytes', 'read_text', 'write_bytes', 'write_text', 'readlink', 'touch', 'mkdir', 'chmod', 'lchmod', 'unlink', 'rmdir', 'lstat', 'rename', 'replace', 'symlink_to', 'hardlink_to', 'link_to', 'exists', 'is_dir', 'is_file', 'is_mount', 'is_symlink', 'is_block_device', 'is_char_device', 'is_fifo', 'is_socket', 'expanduser', '__reduce__', '_parse_args', '_from_parts', '_from_parsed_parts', '_format_parsed_parts', '_make_child', '__str__', '__fspath__', 'as_posix', '__bytes__', '__repr__', 'as_uri', '_cparts', '__eq__', '__hash__', '__lt__', '__le__', '__gt__', '__ge__', 'drive', 'root', 'anchor', 'name', 'suffix', 'suffixes', 'stem', 'with_name', 'with_stem', 'with_suffix', 'relative_to', 'is_relative_to', 'parts', 'joinpath', '__truediv__', '__rtruediv__', 'parent', 'parents', 'is_absolute', 'is_reserved', 'match', '_cached_cparts', '_drv', '_hash', '_parts', '_pparts', '_root', '_str', '__getattribute__', '__setattr__', '__delattr__', '__ne__', '__init__', '__reduce_ex__', '__getstate__', '__subclasshook__', '__init_subclass__', '__format__', '__sizeof__', '__dir__', '__class__', '_flavour']
|
1234
|
+
__doc__ : Path subclass for non-Windows systems.
|
1235
|
+
|
1236
|
+
On a POSIX system, instantiating a Path should return this object.
|
1237
|
+
|
1238
|
+
__enter__ : https:/www.google.com
|
1239
|
+
__fspath__ : https:/www.google.com
|
1240
|
+
__getstate__ : (None, {'_drv': '', '_root': '', '_parts': ['https:', 'www.google.com'], '_str': 'https:/www.google.com'})
|
1241
|
+
__hash__ : -9044097875519772453
|
1242
|
+
__init__ : None
|
1243
|
+
__init_subclass__ : None
|
1244
|
+
__module__ : pathlib
|
1245
|
+
__reduce__ : (<class 'pathlib.PosixPath'>, ('https:', 'www.google.com'))
|
1246
|
+
__repr__ : PosixPath('https:/www.google.com')
|
1247
|
+
__sizeof__ : 72
|
1248
|
+
__slots__ : ()
|
1249
|
+
__str__ : https:/www.google.com
|
1250
|
+
__subclasshook__ : NotImplemented
|
1251
|
+
_cached_cparts : ['https:', 'www.google.com']
|
1252
|
+
_cparts : ['https:', 'www.google.com']
|
1253
|
+
_drv :
|
1254
|
+
_flavour : <pathlib._PosixFlavour object at 0x76ffdb35d0>
|
1255
|
+
_hash : -9044097875519772453
|
1256
|
+
_parts : ['https:', 'www.google.com']
|
1257
|
+
_root :
|
1258
|
+
_str : https:/www.google.com
|
1259
|
+
absolute : /data/data/com.termux/files/home/pypipr/https:/www.google.com
|
1260
|
+
anchor :
|
1261
|
+
as_posix : https:/www.google.com
|
1262
|
+
cwd : /data/data/com.termux/files/home/pypipr
|
1263
|
+
drive :
|
1264
|
+
exists : False
|
1265
|
+
expanduser : https:/www.google.com
|
1266
|
+
home : /data/data/com.termux/files/home
|
1267
|
+
is_absolute : False
|
1268
|
+
is_block_device : False
|
1269
|
+
is_char_device : False
|
1270
|
+
is_dir : False
|
1271
|
+
is_fifo : False
|
1272
|
+
is_file : False
|
1273
|
+
is_mount : False
|
1274
|
+
is_reserved : False
|
1275
|
+
is_socket : False
|
1276
|
+
is_symlink : False
|
1277
|
+
iterdir : <generator object Path.iterdir at 0x76f8d3a340>
|
1278
|
+
joinpath : https:/www.google.com
|
1279
|
+
name : www.google.com
|
1280
|
+
parent : https:
|
1281
|
+
parents : <PosixPath.parents>
|
1282
|
+
parts : ('https:', 'www.google.com')
|
1283
|
+
resolve : /data/data/com.termux/files/home/pypipr/https:/www.google.com
|
1284
|
+
root :
|
1285
|
+
stem : www.google
|
1286
|
+
suffix : .com
|
1287
|
+
suffixes : ['.google', '.com']
|
1288
|
+
```
|
1289
|
+
|
1061
1290
|
## print_log
|
1062
1291
|
|
1063
1292
|
`print_log(text)`
|
@@ -1065,10 +1294,15 @@ print_dir(p, colorize=False)
|
|
1065
1294
|
Akan melakukan print ke console.
|
1066
1295
|
Berguna untuk memberikan informasi proses program yg sedang berjalan.
|
1067
1296
|
|
1068
|
-
```
|
1297
|
+
```python
|
1069
1298
|
print_log("Standalone Log")
|
1070
1299
|
```
|
1071
1300
|
|
1301
|
+
Output:
|
1302
|
+
```py
|
1303
|
+
[32m[1m>>> Standalone Log[0m
|
1304
|
+
```
|
1305
|
+
|
1072
1306
|
## print_to_last_line
|
1073
1307
|
|
1074
1308
|
`print_to_last_line(text: str)`
|
@@ -1083,7 +1317,7 @@ print_to_last_line(f"masukkan apa saja : {c} [ok]")
|
|
1083
1317
|
|
1084
1318
|
Output:
|
1085
1319
|
```py
|
1086
|
-
masukkan apa saja : [Fmasukkan apa saja :
|
1320
|
+
masukkan apa saja : [Fmasukkan apa saja : [ok]
|
1087
1321
|
```
|
1088
1322
|
|
1089
1323
|
## random_bool
|
@@ -1123,7 +1357,7 @@ x.cancel()
|
|
1123
1357
|
|
1124
1358
|
Output:
|
1125
1359
|
```py
|
1126
|
-
<Timer(Thread-2, started
|
1360
|
+
<Timer(Thread-2, started 510794906864)>
|
1127
1361
|
menghentikan timeout 7
|
1128
1362
|
```
|
1129
1363
|
|
@@ -1141,7 +1375,7 @@ print(list(sets_ordered(array)))
|
|
1141
1375
|
|
1142
1376
|
Output:
|
1143
1377
|
```py
|
1144
|
-
<generator object sets_ordered at
|
1378
|
+
<generator object sets_ordered at 0x76ef89dbe0>
|
1145
1379
|
[2, 3, 12, 42, 1, 43, 41, 4, 24, 32]
|
1146
1380
|
```
|
1147
1381
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
pypipr/__init__.py,sha256=
|
1
|
+
pypipr/__init__.py,sha256=kHMMZ7dK4K8DqL9n3RWOcEtBLM-9dMw3Z9JohUEZQZE,3203
|
2
2
|
pypipr/ibuiltins/ComparePerformance.py,sha256=fCATdlDgmgiz7QkQNLDMF9VweicesjOaTtfQeBRr64U,2229
|
3
3
|
pypipr/ibuiltins/LINUX.py,sha256=p8OJwS9GCs50pz2UlcbUooPWSZgWmLI67PjcnzDTSWI,100
|
4
4
|
pypipr/ibuiltins/RunParallel.py,sha256=D9QAJr6O6l1yYFv5vypKmboeadAX996gBG9sjpHRkiM,5996
|
@@ -6,7 +6,7 @@ pypipr/ibuiltins/WINDOWS.py,sha256=D-qiViq9LWTCaTefJhbxt-7Z2ty8ll7-DZ5NPFitT94,1
|
|
6
6
|
pypipr/ibuiltins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
7
|
pypipr/ibuiltins/avg.py,sha256=wUtX3x8dgLoODhQLyMB-HRMVo8Ha2yz3cp7lgcUNbr0,218
|
8
8
|
pypipr/ibuiltins/basename.py,sha256=nypVfls6YL_7sY-MYHDcatm5flpBpGj2aMlIOKG9YqE,194
|
9
|
-
pypipr/ibuiltins/chunk_array.py,sha256=
|
9
|
+
pypipr/ibuiltins/chunk_array.py,sha256=aodjp-daihl-Xd8kPqcpHZICZub7Jx0QBqyoF0bd0dY,385
|
10
10
|
pypipr/ibuiltins/create_folder.py,sha256=pR1Oq0qM4imZ8lWaQez4kKwBxHblCxvDh7kQA_Q3-mc,500
|
11
11
|
pypipr/ibuiltins/datetime_from_string.py,sha256=-GJ_QHD1feUMX0o8nwCPHGflDPXr84ovN4Awnk1T9r8,466
|
12
12
|
pypipr/ibuiltins/datetime_now.py,sha256=b9BKYa-a97T_bDwPdhOO6NKE95HS1ClIdx_IsAfSLKw,476
|
@@ -14,9 +14,10 @@ pypipr/ibuiltins/dict_first.py,sha256=X_pSaY0DLGZJSR2zJBa17yqbwAFLJrVpzb2gxR5wzZ
|
|
14
14
|
pypipr/ibuiltins/dirname.py,sha256=rG3Y7EdOiY4gQo-BoYE_0C4XFKz3U9A1Ly4D28YaMDY,229
|
15
15
|
pypipr/ibuiltins/exit_if_empty.py,sha256=2qUqmYPSkr1NtKPqIN7BAc-WGtcmPPAw8AdO8HirOv8,321
|
16
16
|
pypipr/ibuiltins/filter_empty.py,sha256=wJH15cR-bz-pgtWvgkduWpUbIxG7d0R36u_ZGCDfQSI,543
|
17
|
-
pypipr/ibuiltins/get_class_method.py,sha256=
|
17
|
+
pypipr/ibuiltins/get_class_method.py,sha256=RThCReUbF0uAlU-n5u0ELuP5yUbFqcKFfShswh7mgqc,639
|
18
18
|
pypipr/ibuiltins/get_filemtime.py,sha256=e8Glf4p9PJcL2yU8ZbrKOHYB-puaSNQsTS6Qhgp9F9s,227
|
19
19
|
pypipr/ibuiltins/get_filesize.py,sha256=2RCjrdZvaBDCdessFj-h7gLi13rPe6IXJXZcAoywWIA,196
|
20
|
+
pypipr/ibuiltins/get_from_index.py,sha256=Mylo_-BX637qXzcuXiJlmodGFQG1bWyphfIwaF6JSYY,339
|
20
21
|
pypipr/ibuiltins/is_empty.py,sha256=eqsH6ATuuOLVVSpIsV_8zTBBibPrWjESu9LCMAv8YyY,683
|
21
22
|
pypipr/ibuiltins/is_iterable.py,sha256=VCzLfFZyQO5qF2wFTVbuZIxyf4BVkflWiRQaOjd9kFs,922
|
22
23
|
pypipr/ibuiltins/is_valid_url.py,sha256=g72vv4_9Zy8dtT0i1JvToRX-mgCzojQCBVHdO1KDwqo,1008
|
@@ -32,8 +33,8 @@ pypipr/iconsole/console_run.py,sha256=vCJqDa1rExisqaFLNeWM-hnuXHfUfiYcyNAOJjldOH
|
|
32
33
|
pypipr/iconsole/input_char.py,sha256=m0OP4T_2rdOiTanq0y2CJZPBC1byYl7zQ_yAj5vu39w,922
|
33
34
|
pypipr/iconsole/log.py,sha256=aQ9DeFG03xIAUQYR4TiBdh80M6WvxDtNDTSjpKOSXHk,1041
|
34
35
|
pypipr/iconsole/print_colorize.py,sha256=cubx_9U1H1peqwxhP1cUId8vhPUgGVqxCtc32YS4gdU,474
|
35
|
-
pypipr/iconsole/print_dir.py,sha256=
|
36
|
-
pypipr/iconsole/print_log.py,sha256=
|
36
|
+
pypipr/iconsole/print_dir.py,sha256=yCzy7ZF__euNIsf6AhzmI5bixyO-4m2OlKWOl37K3_8,930
|
37
|
+
pypipr/iconsole/print_log.py,sha256=Oct2xfcMv_8iK2ySioQYrtlTYou6Cd671PqgPL9IGUE,282
|
37
38
|
pypipr/iconsole/print_to_last_line.py,sha256=sdA1GPvgyrBy-LJbfHmtiOZFzrqtoK8LdLHvJ6IO2YY,318
|
38
39
|
pypipr/iconsole/text_colorize.py,sha256=IVjaCnXBSBu4Rh8pTO3CxDvxpA265HVwyKX_-PRXCcI,396
|
39
40
|
pypipr/idjango/APIMixinView.py,sha256=ECROEfZpGcojFq1gMWaMLkF5jeft5dnR_5zO1b2RdNw,1093
|
@@ -41,7 +42,7 @@ pypipr/idjango/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
41
42
|
pypipr/iengineering/PintUreg.py,sha256=_jmHZhUn8AcgFkXvZ6OTsWnjtp-CYcXUJ-dG_QdcARY,222
|
42
43
|
pypipr/iengineering/PintUregQuantity.py,sha256=ErSZKB-GHShi1zKac30XgFdBwAUrxMo80IQzIjQ2HVc,118
|
43
44
|
pypipr/iengineering/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
44
|
-
pypipr/iengineering/batch_calculate.py,sha256=
|
45
|
+
pypipr/iengineering/batch_calculate.py,sha256=GYJH84KlNlh1MDjUZDdKf7GKVZ81JS-sysjt9vtaaUE,695
|
45
46
|
pypipr/iengineering/batchmaker.py,sha256=4pNoAjQsubHNJT6ZA6myKuPY_RBigKkEeV4mEgWWq2c,1277
|
46
47
|
pypipr/iengineering/calculate.py,sha256=wzEbP8V1haM-JeIz85fBAuT2mgPc7uxQZ7wEuSUEXLc,805
|
47
48
|
pypipr/iflow/auto_reload.py,sha256=fs5-MKiStSM78zljw_yxgqKFrPWfA8lmJR8zd3TE61w,974
|
@@ -58,17 +59,17 @@ pypipr/ifunctions/idumps_html.py,sha256=gKngmLaxGQRip3XEiWEK2TvsVkjYhizapS_Tscqn
|
|
58
59
|
pypipr/ifunctions/ienv.py,sha256=E1WeugbIDyPcQcMI0dNl0RTV_fJxMGd49da-1XyKYIk,623
|
59
60
|
pypipr/ifunctions/iexec.py,sha256=nK_WMRK2LnyZh9i7NpYii_bfDZUKfAsJ5PVf5ZrHuRo,465
|
60
61
|
pypipr/ifunctions/ijoin.py,sha256=tgL-9UofF1gmRPzU6jCkd6X28EOzEUenlNi2cwZDOZk,2069
|
61
|
-
pypipr/ifunctions/iloads.py,sha256=
|
62
|
-
pypipr/ifunctions/iloads_html.py,sha256=
|
62
|
+
pypipr/ifunctions/iloads.py,sha256=eyvSgqDxOXzU5dcPDT8cbtGtUIfjogxOqeQfwIhc92Q,638
|
63
|
+
pypipr/ifunctions/iloads_html.py,sha256=gGGOwv0gHsWAMxxBxNGZL3jpXz9ycTiAbAbarFndckg,4146
|
63
64
|
pypipr/ifunctions/iopen.py,sha256=2nEJRSMwlWCIrLD59DKCnP-Sxy_bPUMV836GNRKNiCY,2808
|
64
|
-
pypipr/ifunctions/iprint.py,sha256=
|
65
|
+
pypipr/ifunctions/iprint.py,sha256=_YXD_h68Olgt-3DbtbseoOpsIB2E2RHuJgIunnJxSOY,849
|
65
66
|
pypipr/ifunctions/irange.py,sha256=x51vzQ8aAbToJBZgCX32QgAjr7Vm_Zw1MdIwSA3tVsM,2407
|
66
67
|
pypipr/ifunctions/ireplace.py,sha256=RcVMXmbXH_cl4hXpTI5wnuzdPtkatpuZgYsZkfBLAJU,722
|
67
68
|
pypipr/ifunctions/iscandir.py,sha256=Ev6jus16vOXdNTN9Ia-_35ESplx7N_ZWA0kYoeimXbk,766
|
68
69
|
pypipr/ifunctions/isplit.py,sha256=N2BiA_wVnrENYwokSzvo0CAiQWk3g7AnwuWFIUgevNM,383
|
69
70
|
pypipr/pypipr.py.bak,sha256=HF-ehQd6BY8hm9fRkQHravLNrJRlI5g_AzbCc3dbikQ,1061
|
70
|
-
pypipr/terminal.py,sha256=
|
71
|
-
pypipr-1.0.
|
72
|
-
pypipr-1.0.
|
73
|
-
pypipr-1.0.
|
74
|
-
pypipr-1.0.
|
71
|
+
pypipr/terminal.py,sha256=4NNTXu8OnDjE5YBCvu_WW7wnqzZMLpeIaabp6SNP9ik,1246
|
72
|
+
pypipr-1.0.76.dist-info/METADATA,sha256=98POOkvlVdMU6noynDG2uIeNu21gCsCg4Z4W4vjOv6U,40884
|
73
|
+
pypipr-1.0.76.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
74
|
+
pypipr-1.0.76.dist-info/entry_points.txt,sha256=ikcrTRCn3jaySem1mM9uhYEPDq2PVOs48CyEqLUkY38,47
|
75
|
+
pypipr-1.0.76.dist-info/RECORD,,
|
File without changes
|
File without changes
|