pypipr 1.0.98__py3-none-any.whl → 1.0.99__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 +1 -1
- {pypipr-1.0.98.dist-info → pypipr-1.0.99.dist-info}/METADATA +257 -207
- {pypipr-1.0.98.dist-info → pypipr-1.0.99.dist-info}/RECORD +6 -6
- /pypipr/{ibuiltins → ifunctions}/ivars.py +0 -0
- {pypipr-1.0.98.dist-info → pypipr-1.0.99.dist-info}/WHEEL +0 -0
- {pypipr-1.0.98.dist-info → pypipr-1.0.99.dist-info}/entry_points.txt +0 -0
pypipr/__init__.py
CHANGED
@@ -21,7 +21,6 @@ from .ibuiltins.int_to_chr import int_to_chr
|
|
21
21
|
from .ibuiltins.is_empty import is_empty
|
22
22
|
from .ibuiltins.is_iterable import is_iterable
|
23
23
|
from .ibuiltins.is_valid_url import is_valid_url
|
24
|
-
from .ibuiltins.ivars import ivars
|
25
24
|
from .ibuiltins.password_generator import password_generator
|
26
25
|
from .ibuiltins.random_bool import random_bool
|
27
26
|
from .ibuiltins.restart import restart
|
@@ -65,6 +64,7 @@ from .ifunctions.irange import irange
|
|
65
64
|
from .ifunctions.ireplace import ireplace
|
66
65
|
from .ifunctions.iscandir import iscandir
|
67
66
|
from .ifunctions.isplit import isplit
|
67
|
+
from .ifunctions.ivars import ivars
|
68
68
|
import asyncio
|
69
69
|
import colorama
|
70
70
|
import csv
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pypipr
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.99
|
4
4
|
Summary: The Python Package Index Project
|
5
5
|
Author: ufiapjj
|
6
6
|
Author-email: ufiapjj@gmail.com
|
@@ -120,7 +120,7 @@ print(list(chunk_array(arr, 5)))
|
|
120
120
|
|
121
121
|
Output:
|
122
122
|
```py
|
123
|
-
<generator object chunk_array at
|
123
|
+
<generator object chunk_array at 0x77ab274140>
|
124
124
|
[[2, 3, 12, 3, 3], [42, 42, 1, 43, 2], [42, 41, 4, 24, 32], [42, 3, 12, 32, 42], [42]]
|
125
125
|
```
|
126
126
|
|
@@ -171,9 +171,9 @@ print(datetime_now("Etc/GMT+7"))
|
|
171
171
|
|
172
172
|
Output:
|
173
173
|
```py
|
174
|
-
2024-04-
|
175
|
-
2024-04-
|
176
|
-
2024-04-28
|
174
|
+
2024-04-29 09:05:51.123977+07:00
|
175
|
+
2024-04-29 02:05:51.125969+00:00
|
176
|
+
2024-04-28 19:05:51.130704-07:00
|
177
177
|
```
|
178
178
|
|
179
179
|
## dict_first
|
@@ -240,7 +240,7 @@ print(filter_empty(var))
|
|
240
240
|
|
241
241
|
Output:
|
242
242
|
```py
|
243
|
-
<generator object filter_empty at
|
243
|
+
<generator object filter_empty at 0x77ab206d40>
|
244
244
|
```
|
245
245
|
|
246
246
|
## get_by_index
|
@@ -286,8 +286,8 @@ print(list(get_class_method(ExampleGetClassMethod)))
|
|
286
286
|
|
287
287
|
Output:
|
288
288
|
```py
|
289
|
-
<generator object get_class_method at
|
290
|
-
[<function ExampleGetClassMethod.a at
|
289
|
+
<generator object get_class_method at 0x77ab207010>
|
290
|
+
[<function ExampleGetClassMethod.a at 0x77ab279760>, <function ExampleGetClassMethod.b at 0x77ab279620>, <function ExampleGetClassMethod.c at 0x77ab279800>, <function ExampleGetClassMethod.d at 0x77ab2798a0>]
|
291
291
|
```
|
292
292
|
|
293
293
|
## get_filemtime
|
@@ -443,125 +443,6 @@ True
|
|
443
443
|
True
|
444
444
|
```
|
445
445
|
|
446
|
-
## ivars
|
447
|
-
|
448
|
-
`ivars(obj, skip_underscore=True)`
|
449
|
-
|
450
|
-
Membuat dictionary berdasarkan kategori untuk setiap
|
451
|
-
member dari object.
|
452
|
-
|
453
|
-
```python
|
454
|
-
iprint(ivars(__import__('pypipr')))
|
455
|
-
```
|
456
|
-
|
457
|
-
Output:
|
458
|
-
```py
|
459
|
-
{'module': {'ibuiltins': <module 'pypipr.ibuiltins' from '/data/data/com.termux/files/home/pypipr/pypipr/ibuiltins/__init__.py'>,
|
460
|
-
'iconsole': <module 'pypipr.iconsole' from '/data/data/com.termux/files/home/pypipr/pypipr/iconsole/__init__.py'>,
|
461
|
-
'idjango': <module 'pypipr.idjango' from '/data/data/com.termux/files/home/pypipr/pypipr/idjango/__init__.py'>,
|
462
|
-
'iengineering': <module 'pypipr.iengineering' from '/data/data/com.termux/files/home/pypipr/pypipr/iengineering/__init__.py'>,
|
463
|
-
'ifunctions': <module 'pypipr.ifunctions' from '/data/data/com.termux/files/home/pypipr/pypipr/ifunctions/__init__.py'>,
|
464
|
-
'iflow': <module 'pypipr.iflow' (<_frozen_importlib_external.NamespaceLoader object at 0x7770ee6f90>)>,
|
465
|
-
'asyncio': <module 'asyncio' from '/data/data/com.termux/files/usr/lib/python3.11/asyncio/__init__.py'>,
|
466
|
-
'colorama': <module 'colorama' from '/data/data/com.termux/files/usr/lib/python3.11/site-packages/colorama/__init__.py'>,
|
467
|
-
'csv': <module 'csv' from '/data/data/com.termux/files/usr/lib/python3.11/csv.py'>,
|
468
|
-
'datetime': <module 'datetime' from '/data/data/com.termux/files/usr/lib/python3.11/datetime.py'>,
|
469
|
-
'functools': <module 'functools' from '/data/data/com.termux/files/usr/lib/python3.11/functools.py'>,
|
470
|
-
'inspect': <module 'inspect' from '/data/data/com.termux/files/usr/lib/python3.11/inspect.py'>,
|
471
|
-
'io': <module 'io' (frozen)>,
|
472
|
-
'json': <module 'json' from '/data/data/com.termux/files/usr/lib/python3.11/json/__init__.py'>,
|
473
|
-
'lxml': <module 'lxml' from '/data/data/com.termux/files/usr/lib/python3.11/site-packages/lxml/__init__.py'>,
|
474
|
-
'math': <module 'math' from '/data/data/com.termux/files/usr/lib/python3.11/lib-dynload/math.cpython-311.so'>,
|
475
|
-
'multiprocessing': <module 'multiprocessing' from '/data/data/com.termux/files/usr/lib/python3.11/multiprocessing/__init__.py'>,
|
476
|
-
'operator': <module 'operator' from '/data/data/com.termux/files/usr/lib/python3.11/operator.py'>,
|
477
|
-
'os': <module 'os' (frozen)>,
|
478
|
-
'pathlib': <module 'pathlib' from '/data/data/com.termux/files/usr/lib/python3.11/pathlib.py'>,
|
479
|
-
'pint': <module 'pint' from '/data/data/com.termux/files/usr/lib/python3.11/site-packages/pint/__init__.py'>,
|
480
|
-
'pprint': <module 'pprint' from '/data/data/com.termux/files/usr/lib/python3.11/pprint.py'>,
|
481
|
-
'queue': <module 'queue' from '/data/data/com.termux/files/usr/lib/python3.11/queue.py'>,
|
482
|
-
'random': <module 'random' from '/data/data/com.termux/files/usr/lib/python3.11/random.py'>,
|
483
|
-
're': <module 're' from '/data/data/com.termux/files/usr/lib/python3.11/re/__init__.py'>,
|
484
|
-
'requests': <module 'requests' from '/data/data/com.termux/files/usr/lib/python3.11/site-packages/requests/__init__.py'>,
|
485
|
-
'string': <module 'string' from '/data/data/com.termux/files/usr/lib/python3.11/string.py'>,
|
486
|
-
'subprocess': <module 'subprocess' from '/data/data/com.termux/files/usr/lib/python3.11/subprocess.py'>,
|
487
|
-
'sys': <module 'sys' (built-in)>,
|
488
|
-
'textwrap': <module 'textwrap' from '/data/data/com.termux/files/usr/lib/python3.11/textwrap.py'>,
|
489
|
-
'threading': <module 'threading' from '/data/data/com.termux/files/usr/lib/python3.11/threading.py'>,
|
490
|
-
'time': <module 'time' (built-in)>,
|
491
|
-
'tzdata': <module 'tzdata' from '/data/data/com.termux/files/usr/lib/python3.11/site-packages/tzdata/__init__.py'>,
|
492
|
-
'uuid': <module 'uuid' from '/data/data/com.termux/files/usr/lib/python3.11/uuid.py'>,
|
493
|
-
'webbrowser': <module 'webbrowser' from '/data/data/com.termux/files/usr/lib/python3.11/webbrowser.py'>,
|
494
|
-
'yaml': <module 'yaml' from '/data/data/com.termux/files/usr/lib/python3.11/site-packages/yaml/__init__.py'>,
|
495
|
-
'zoneinfo': <module 'zoneinfo' from '/data/data/com.termux/files/usr/lib/python3.11/zoneinfo/__init__.py'>},
|
496
|
-
'class': {'ComparePerformance': <class 'pypipr.ibuiltins.ComparePerformance.ComparePerformance'>,
|
497
|
-
'RunParallel': <class 'pypipr.ibuiltins.RunParallel.RunParallel'>,
|
498
|
-
'APIMixinView': <class 'pypipr.idjango.APIMixinView.APIMixinView'>,
|
499
|
-
'PintUregQuantity': <class 'pint.Quantity'>},
|
500
|
-
'variable': {'LINUX': True,
|
501
|
-
'WINDOWS': False,
|
502
|
-
'PintUreg': <pint.registry.UnitRegistry object at 0x7776e3fd50>},
|
503
|
-
'function': {'avg': <function avg at 0x777bfb6d40>,
|
504
|
-
'basename': <function basename at 0x777bf868e0>,
|
505
|
-
'chr_to_int': <function chr_to_int at 0x7776d79080>,
|
506
|
-
'chunk_array': <function chunk_array at 0x7776d791c0>,
|
507
|
-
'create_folder': <function create_folder at 0x7776d793a0>,
|
508
|
-
'datetime_from_string': <function datetime_from_string at 0x7776d79580>,
|
509
|
-
'datetime_now': <function datetime_now at 0x7776e21620>,
|
510
|
-
'dict_first': <function dict_first at 0x7776e21580>,
|
511
|
-
'dirname': <function dirname at 0x7776e214e0>,
|
512
|
-
'exit_if_empty': <function exit_if_empty at 0x7776e213a0>,
|
513
|
-
'filter_empty': <function filter_empty at 0x7776e211c0>,
|
514
|
-
'get_by_index': <function get_by_index at 0x7776e20e00>,
|
515
|
-
'get_class_method': <function get_class_method at 0x7776e20cc0>,
|
516
|
-
'get_filemtime': <function get_filemtime at 0x7776e20b80>,
|
517
|
-
'get_filesize': <function get_filesize at 0x7776e209a0>,
|
518
|
-
'int_to_chr': <function int_to_chr at 0x7776e20900>,
|
519
|
-
'is_empty': <function is_empty at 0x7776e21260>,
|
520
|
-
'is_iterable': <function is_iterable at 0x7776e20fe0>,
|
521
|
-
'is_valid_url': <function is_valid_url at 0x7776e207c0>,
|
522
|
-
'ivars': <function ivars at 0x7776e20720>,
|
523
|
-
'password_generator': <function password_generator at 0x7776e205e0>,
|
524
|
-
'random_bool': <function random_bool at 0x7776e20400>,
|
525
|
-
'restart': <function restart at 0x7776e23880>,
|
526
|
-
'set_timeout': <function set_timeout at 0x7776e239c0>,
|
527
|
-
'sets_ordered': <function sets_ordered at 0x7776e23b00>,
|
528
|
-
'str_cmp': <function str_cmp at 0x7776e23ba0>,
|
529
|
-
'to_str': <function to_str at 0x7776e20f40>,
|
530
|
-
'choices': <function choices at 0x7776e23c40>,
|
531
|
-
'console_run': <function console_run at 0x7776e23ec0>,
|
532
|
-
'input_char': <function input_char at 0x7776e44040>,
|
533
|
-
'log': <function log at 0x7776e44220>,
|
534
|
-
'print_colorize': <function print_colorize at 0x7776e442c0>,
|
535
|
-
'print_dir': <function print_dir at 0x7776e44400>,
|
536
|
-
'print_log': <function print_log at 0x7776e440e0>,
|
537
|
-
'print_to_last_line': <function print_to_last_line at 0x7776e23e20>,
|
538
|
-
'text_colorize': <function text_colorize at 0x7776e23f60>,
|
539
|
-
'batch_calculate': <function batch_calculate at 0x7770ef1760>,
|
540
|
-
'batchmaker': <function batchmaker at 0x7776e44540>,
|
541
|
-
'calculate': <function calculate at 0x7770ef2480>,
|
542
|
-
'auto_reload': <function auto_reload at 0x7770ef2700>,
|
543
|
-
'github_pull': <function github_pull at 0x7770ef2200>,
|
544
|
-
'github_push': <function github_push at 0x7770ef28e0>,
|
545
|
-
'github_user': <function github_user at 0x7770ef2c00>,
|
546
|
-
'pip_freeze_without_version': <function pip_freeze_without_version at 0x7770c22160>,
|
547
|
-
'poetry_publish': <function poetry_publish at 0x7770c22340>,
|
548
|
-
'poetry_update_version': <function poetry_update_version at 0x7770c46b60>,
|
549
|
-
'iargv': <function iargv at 0x776d2702c0>,
|
550
|
-
'idumps': <function idumps at 0x776d270400>,
|
551
|
-
'idumps_html': <function idumps_html at 0x776d2d4e00>,
|
552
|
-
'ienv': <function ienv at 0x776d270540>,
|
553
|
-
'iexec': <function iexec at 0x776d2d5080>,
|
554
|
-
'ijoin': <function ijoin at 0x7770c220c0>,
|
555
|
-
'iloads': <function iloads at 0x776d2d5120>,
|
556
|
-
'iloads_html': <function iloads_html at 0x776d2d53a0>,
|
557
|
-
'iopen': <function iopen at 0x7770c223e0>,
|
558
|
-
'iprint': <function iprint at 0x776d2d5260>,
|
559
|
-
'irange': <function irange at 0x7770ef25c0>,
|
560
|
-
'ireplace': <function ireplace at 0x776d2d5440>,
|
561
|
-
'iscandir': <function iscandir at 0x776d2d7060>,
|
562
|
-
'isplit': <function isplit at 0x776d2d7100>}}
|
563
|
-
```
|
564
|
-
|
565
446
|
## password_generator
|
566
447
|
|
567
448
|
`password_generator(length=8, characters='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~')`
|
@@ -574,7 +455,7 @@ print(password_generator())
|
|
574
455
|
|
575
456
|
Output:
|
576
457
|
```py
|
577
|
-
|
458
|
+
A"0&%upF
|
578
459
|
```
|
579
460
|
|
580
461
|
## random_bool
|
@@ -592,7 +473,7 @@ print(random_bool())
|
|
592
473
|
|
593
474
|
Output:
|
594
475
|
```py
|
595
|
-
|
476
|
+
False
|
596
477
|
```
|
597
478
|
|
598
479
|
## restart
|
@@ -618,7 +499,7 @@ x.cancel()
|
|
618
499
|
|
619
500
|
Output:
|
620
501
|
```py
|
621
|
-
<Timer(Thread-2, started
|
502
|
+
<Timer(Thread-2, started 513948798192)>
|
622
503
|
menghentikan timeout 7
|
623
504
|
```
|
624
505
|
|
@@ -636,7 +517,7 @@ print(list(sets_ordered(array)))
|
|
636
517
|
|
637
518
|
Output:
|
638
519
|
```py
|
639
|
-
<generator object sets_ordered at
|
520
|
+
<generator object sets_ordered at 0x77ab2842b0>
|
640
521
|
[2, 3, 12, 42, 1, 43, 41, 4, 24, 32]
|
641
522
|
```
|
642
523
|
|
@@ -790,7 +671,7 @@ Output:
|
|
790
671
|
__enter__ : https:/www.google.com
|
791
672
|
__fspath__ : https:/www.google.com
|
792
673
|
__getstate__ : (None, {'_drv': '', '_root': '', '_parts': ['https:', 'www.google.com'], '_str': 'https:/www.google.com'})
|
793
|
-
__hash__ :
|
674
|
+
__hash__ : 8929491664327124594
|
794
675
|
__init__ : None
|
795
676
|
__init_subclass__ : None
|
796
677
|
__module__ : pathlib
|
@@ -803,8 +684,8 @@ Output:
|
|
803
684
|
_cached_cparts : ['https:', 'www.google.com']
|
804
685
|
_cparts : ['https:', 'www.google.com']
|
805
686
|
_drv :
|
806
|
-
_flavour : <pathlib._PosixFlavour object at
|
807
|
-
_hash :
|
687
|
+
_flavour : <pathlib._PosixFlavour object at 0x77c09d8a90>
|
688
|
+
_hash : 8929491664327124594
|
808
689
|
_parts : ['https:', 'www.google.com']
|
809
690
|
_root :
|
810
691
|
_str : https:/www.google.com
|
@@ -826,7 +707,7 @@ Output:
|
|
826
707
|
is_reserved : False
|
827
708
|
is_socket : False
|
828
709
|
is_symlink : False
|
829
|
-
iterdir : <generator object Path.iterdir at
|
710
|
+
iterdir : <generator object Path.iterdir at 0x77ab25cba0>
|
830
711
|
joinpath : https:/www.google.com
|
831
712
|
name : www.google.com
|
832
713
|
parent : https:
|
@@ -893,7 +774,7 @@ print(list(batch_calculate("{1 10} m ** {1 3}")))
|
|
893
774
|
|
894
775
|
Output:
|
895
776
|
```py
|
896
|
-
<generator object batch_calculate at
|
777
|
+
<generator object batch_calculate at 0x77ab207b50>
|
897
778
|
[('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')>)]
|
898
779
|
```
|
899
780
|
|
@@ -918,7 +799,7 @@ print(list(batchmaker(s)))
|
|
918
799
|
|
919
800
|
Output:
|
920
801
|
```py
|
921
|
-
<generator object batchmaker at
|
802
|
+
<generator object batchmaker at 0x77ab26c3a0>
|
922
803
|
['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.']
|
923
804
|
```
|
924
805
|
|
@@ -1347,61 +1228,110 @@ pprint.pprint(iloads_html(iopen("https://harga-emas.org/1-gram/")), depth=10)
|
|
1347
1228
|
Output:
|
1348
1229
|
```py
|
1349
1230
|
(['Home', 'Emas 1 Gram', 'History', 'Trend', 'Perak 1 Gram', 'Pluang'],
|
1350
|
-
[['Harga Emas Hari Ini -
|
1351
|
-
['Spot Emas USD
|
1231
|
+
[['Harga Emas Hari Ini - Senin, 29 April 2024'],
|
1232
|
+
['Spot Emas USD↓2.330,95 (-6,99) / oz',
|
1352
1233
|
'Kurs IDR16.208,00 / USD',
|
1353
|
-
'Emas IDR
|
1354
|
-
['LM Antam (Jual)1.
|
1234
|
+
'Emas IDR↓1.214.656 (-3.642) / gr'],
|
1235
|
+
['LM Antam (Jual)↓1.325.000 (-1.000) / gr',
|
1236
|
+
'LM Antam (Beli)↓1.221.000 (-1.000) / gr']],
|
1355
1237
|
[['Harga Emas Hari Ini'],
|
1356
1238
|
['Gram', 'Gedung Antam Jakarta', 'Pegadaian'],
|
1357
1239
|
['per Gram (Rp)', 'per Batangan (Rp)', 'per Gram (Rp)', 'per Batangan (Rp)'],
|
1358
1240
|
['1000',
|
1359
|
-
'1.
|
1360
|
-
'1.
|
1241
|
+
'1.266 (-1)',
|
1242
|
+
'1.265.600 (-1.000)',
|
1361
1243
|
'1.043.040 (+8.200)',
|
1362
1244
|
'1.043.040.000 (+8.200.000)'],
|
1363
1245
|
['500',
|
1364
|
-
'2.
|
1365
|
-
'1.
|
1246
|
+
'2.531 (-2)',
|
1247
|
+
'1.265.640 (-1.000)',
|
1366
1248
|
'1.043.082 (+8.200)',
|
1367
1249
|
'521.541.000 (+4.100.000)'],
|
1368
1250
|
['250',
|
1369
|
-
'5.
|
1370
|
-
'1.
|
1251
|
+
'5.064 (-4)',
|
1252
|
+
'1.266.060 (-1.000)',
|
1371
1253
|
'1.043.512 (+8.200)',
|
1372
1254
|
'260.878.000 (+2.050.000)'],
|
1373
1255
|
['100',
|
1374
|
-
'12.
|
1375
|
-
'1.
|
1256
|
+
'12.671 (-10)',
|
1257
|
+
'1.267.120 (-1.000)',
|
1376
1258
|
'1.044.600 (+8.200)',
|
1377
1259
|
'104.460.000 (+820.000)'],
|
1378
|
-
['50',
|
1379
|
-
|
1380
|
-
|
1381
|
-
|
1382
|
-
|
1383
|
-
['
|
1384
|
-
|
1385
|
-
|
1386
|
-
|
1387
|
-
'
|
1260
|
+
['50',
|
1261
|
+
'25.358 (-20)',
|
1262
|
+
'1.267.900 (-1.000)',
|
1263
|
+
'1.045.400 (+8.200)',
|
1264
|
+
'52.270.000 (+410.000)'],
|
1265
|
+
['25',
|
1266
|
+
'50.779 (-40)',
|
1267
|
+
'1.269.480 (-1.000)',
|
1268
|
+
'1.047.040 (+8.200)',
|
1269
|
+
'26.176.000 (+205.000)'],
|
1270
|
+
['10',
|
1271
|
+
'127.450 (-100)',
|
1272
|
+
'1.274.500 (-1.000)',
|
1273
|
+
'1.052.200 (+8.200)',
|
1274
|
+
'10.522.000 (+82.000)'],
|
1275
|
+
['5',
|
1276
|
+
'256.000 (-200)',
|
1277
|
+
'1.280.000 (-1.000)',
|
1278
|
+
'1.057.800 (+8.200)',
|
1279
|
+
'5.289.000 (+41.000)'],
|
1280
|
+
['3',
|
1281
|
+
'428.889 (-333)',
|
1282
|
+
'1.286.667 (-1.000)',
|
1283
|
+
'1.064.667 (+8.000)',
|
1284
|
+
'3.194.000 (+24.000)'],
|
1285
|
+
['2',
|
1286
|
+
'647.500 (-500)',
|
1287
|
+
'1.295.000 (-1.000)',
|
1288
|
+
'1.073.500 (+8.500)',
|
1289
|
+
'2.147.000 (+17.000)'],
|
1290
|
+
['1',
|
1291
|
+
'1.325.000 (-1.000)',
|
1292
|
+
'1.325.000 (-1.000)',
|
1293
|
+
'1.104.000 (+8.000)',
|
1294
|
+
'1.104.000 (+8.000)'],
|
1295
|
+
['0.5',
|
1296
|
+
'2.850.000 (-2.000)',
|
1297
|
+
'1.425.000 (-1.000)',
|
1298
|
+
'1.208.000 (+8.000)',
|
1299
|
+
'604.000 (+4.000)'],
|
1300
|
+
['Update harga LM Antam :29 April 2024, pukul 07:56Harga pembelian kembali '
|
1301
|
+
':Rp. 1.221.000/gram (-1.000)',
|
1388
1302
|
'Update harga LM Pegadaian :31 Agustus 2023']],
|
1389
|
-
[['Spot Harga Emas Hari Ini (Market
|
1303
|
+
[['Spot Harga Emas Hari Ini (Market Open)'],
|
1390
1304
|
['Satuan', 'USD', 'Kurs\xa0Dollar', 'IDR'],
|
1391
|
-
['Ounce\xa0(oz)', '2.
|
1392
|
-
['Gram\xa0(gr)', '
|
1393
|
-
['Kilogram\xa0(kg)', '
|
1394
|
-
['Update harga emas :
|
1305
|
+
['Ounce\xa0(oz)', '2.330,95 (-6,99)', '16.208,00', '37.780.038'],
|
1306
|
+
['Gram\xa0(gr)', '74,94', '16.208,00', '1.214.656 (-3.642)'],
|
1307
|
+
['Kilogram\xa0(kg)', '74.941,78', '16.208,00', '1.214.656.415'],
|
1308
|
+
['Update harga emas :29 April 2024, pukul 09:04Update kurs :28 April 2024, '
|
1395
1309
|
'pukul 13:10']],
|
1396
1310
|
[['Gram', 'UBS Gold 99.99%'],
|
1397
1311
|
['Jual', 'Beli'],
|
1398
1312
|
['/ Batang', '/ Gram', '/ Batang', '/ Gram'],
|
1399
|
-
['100',
|
1400
|
-
|
1401
|
-
|
1402
|
-
|
1403
|
-
|
1404
|
-
['
|
1313
|
+
['100',
|
1314
|
+
'126.712.000 (-100.000)',
|
1315
|
+
'1.267.120 (-1.000)',
|
1316
|
+
'124.985.000',
|
1317
|
+
'1.249.850'],
|
1318
|
+
['50',
|
1319
|
+
'63.395.000 (-50.000)',
|
1320
|
+
'1.267.900 (-1.000)',
|
1321
|
+
'62.545.000',
|
1322
|
+
'1.250.900'],
|
1323
|
+
['25',
|
1324
|
+
'31.737.000 (-25.000)',
|
1325
|
+
'1.269.480 (-1.000)',
|
1326
|
+
'31.375.000',
|
1327
|
+
'1.255.000'],
|
1328
|
+
['10',
|
1329
|
+
'12.745.000 (-10.000)',
|
1330
|
+
'1.274.500 (-1.000)',
|
1331
|
+
'12.600.000',
|
1332
|
+
'1.260.000'],
|
1333
|
+
['5', '6.400.000 (-5.000)', '1.280.000 (-1.000)', '6.352.000', '1.270.400'],
|
1334
|
+
['1', '1.325.000 (-1.000)', '1.325.000 (-1.000)', '1.303.000', '1.303.000'],
|
1405
1335
|
['', 'Update :26 April 2024, pukul 13:52']],
|
1406
1336
|
[['Konversi Satuan'],
|
1407
1337
|
['Satuan', 'Ounce (oz)', 'Gram (gr)', 'Kilogram (kg)'],
|
@@ -1413,36 +1343,36 @@ Output:
|
|
1413
1343
|
['Unit', 'USD', 'IDR'],
|
1414
1344
|
['Angka', '+/-', 'Angka', '+/-'],
|
1415
1345
|
['Hari Ini', 'Kurs', '', '', '16.208', '%'],
|
1416
|
-
['oz', '2.
|
1417
|
-
['gr', '75,
|
1346
|
+
['oz', '2.337,94', '-6,99-0,30%', '37.893.332', '-113.294-0,30%'],
|
1347
|
+
['gr', '75,17', '-0,22-0,30%', '1.218.299', '-3.642-0,30%'],
|
1418
1348
|
['30 Hari', 'Kurs', '', '', '15.853', '+355+2,24%'],
|
1419
|
-
['oz', '2.232,75', '+
|
1420
|
-
['gr', '71,78', '+3,
|
1421
|
-
['2 Bulan', 'Kurs', '', '', '15.
|
1422
|
-
['oz', '2.
|
1423
|
-
['gr', '65,
|
1424
|
-
['6 Bulan', 'Kurs', '', '', '15.
|
1425
|
-
['oz', '1.
|
1426
|
-
['gr', '
|
1349
|
+
['oz', '2.232,75', '+98,20+4,40%', '35.395.786', '+2.384.252+6,74%'],
|
1350
|
+
['gr', '71,78', '+3,16+4,40%', '1.138.001', '+76.655+6,74%'],
|
1351
|
+
['2 Bulan', 'Kurs', '', '', '15.673', '+535+3,41%'],
|
1352
|
+
['oz', '2.045,83', '+285,12+13,94%', '32.064.294', '+5.715.744+17,83%'],
|
1353
|
+
['gr', '65,77', '+9,17+13,94', '1.030.891', '+183.765+17,83%'],
|
1354
|
+
['6 Bulan', 'Kurs', '', '', '15.897', '+311+1,96%'],
|
1355
|
+
['oz', '1.977,80', '+353,15+17,86%', '31.441.087', '+6.338.951+20,16%'],
|
1356
|
+
['gr', '63,59', '+11,35+17,86%', '1.010.854', '+203.802+20,16%'],
|
1427
1357
|
['1 Tahun', 'Kurs', '', '', '15.731', '+477+3,03%'],
|
1428
|
-
['oz', '1.823,86', '+
|
1429
|
-
['gr', '58,64', '+16,
|
1358
|
+
['oz', '1.823,86', '+507,09+27,80%', '28.691.142', '+9.088.896+31,68%'],
|
1359
|
+
['gr', '58,64', '+16,30+27,80%', '922.442', '+292.215+31,68%'],
|
1430
1360
|
['2 Tahun', 'Kurs', '', '', '14.418', '+1.790+12,42%'],
|
1431
|
-
['oz', '1.
|
1432
|
-
['gr', '
|
1433
|
-
['3 Tahun', 'Kurs', '', '', '14.
|
1434
|
-
['oz', '1.
|
1435
|
-
['gr', '56,
|
1361
|
+
['oz', '1.896,95', '+434,00+22,88%', '27.350.225', '+10.429.813+38,13%'],
|
1362
|
+
['gr', '60,99', '+13,95+22,88%', '879.330', '+335.326+38,13%'],
|
1363
|
+
['3 Tahun', 'Kurs', '', '', '14.468', '+1.740+12,03%'],
|
1364
|
+
['oz', '1.767,08', '+563,87+31,91%', '25.566.113', '+12.213.924+47,77%'],
|
1365
|
+
['gr', '56,81', '+18,13+31,91%', '821.970', '+392.687+47,77%'],
|
1436
1366
|
['5 Tahun', 'Kurs', '', '', '14.215', '+1.993+14,02%'],
|
1437
|
-
['oz', '1.
|
1438
|
-
['gr', '41,
|
1367
|
+
['oz', '1.280,61', '+1.050,34+82,02%', '18.203.871', '+19.576.166+107,54%'],
|
1368
|
+
['gr', '41,17', '+33,77+82,02%', '585.268', '+629.388+107,54%']])
|
1439
1369
|
(['Home', 'Emas 1 Gram', 'History', 'Trend', 'Perak 1 Gram', 'Pluang'],
|
1440
1370
|
[[''],
|
1441
1371
|
['Emas 24 KaratHarga Emas 1 Gram', ''],
|
1442
|
-
['USD', '
|
1443
|
-
['KURS', '16.
|
1444
|
-
['IDR', '1.
|
1445
|
-
['
|
1372
|
+
['USD', '74,92↓', '-0,25-0,33%'],
|
1373
|
+
['KURS', '16.234,15↓', '-7,15-0,04%'],
|
1374
|
+
['IDR', '1.216.308,20↓', '-4.493,74-0,37%'],
|
1375
|
+
['Senin, 29 April 2024 09:05']],
|
1446
1376
|
[[''],
|
1447
1377
|
['Emas 1 Gram (IDR)Emas 1 Gram (USD)Kurs USD-IDR',
|
1448
1378
|
'Hari Ini',
|
@@ -1453,19 +1383,19 @@ Output:
|
|
1453
1383
|
'']],
|
1454
1384
|
[['Pergerakkan Harga Emas 1 Gram'],
|
1455
1385
|
['', 'Penutupan Kemarin', 'Pergerakkan Hari Ini', 'Rata-rata'],
|
1456
|
-
['USD', '75,17', '
|
1457
|
-
['KURS', '16.241,30', '16.
|
1458
|
-
['IDR', '1.220.801,94', '1.
|
1386
|
+
['USD', '75,17', '74,92 - 75,17', '75,05'],
|
1387
|
+
['KURS', '16.241,30', '16.234,15 - 16.241,30', '16.237,73'],
|
1388
|
+
['IDR', '1.220.801,94', '1.216.308,20 - 1.220.801,94', '1.218.555,07'],
|
1459
1389
|
[''],
|
1460
1390
|
['', 'Awal Tahun', 'Pergerakkan YTD', '+/- YTD'],
|
1461
|
-
['USD', '66,32', '64,07 - 77,14', '+8,
|
1462
|
-
['KURS', '15.390,10', '15.390,00 - 16.307,80', '+
|
1463
|
-
['IDR', '1.020.729,53', '997.660,12 - 1.256.829,06', '+
|
1391
|
+
['USD', '66,32', '64,07 - 77,14', '+8,60 (12,97%)'],
|
1392
|
+
['KURS', '15.390,10', '15.390,00 - 16.307,80', '+844,05 (5,48%)'],
|
1393
|
+
['IDR', '1.020.729,53', '997.660,12 - 1.256.829,06', '+195.578,67 (19,16%)'],
|
1464
1394
|
[''],
|
1465
1395
|
['', 'Tahun Lalu / 52 Minggu', 'Pergerakkan 52 Minggu', '+/- 52 Minggu'],
|
1466
|
-
['USD', '
|
1467
|
-
['KURS', '14.
|
1468
|
-
['IDR', '
|
1396
|
+
['USD', '64,04', '58,43 - 77,14', '+10,88 (16,99%)'],
|
1397
|
+
['KURS', '14.671,35', '14.669,40 - 16.307,80', '+1.562,80 (10,65%)'],
|
1398
|
+
['IDR', '939.568,98', '912.925,68 - 1.256.829,06', '+276.739,22 (29,45%)']])
|
1469
1399
|
```
|
1470
1400
|
|
1471
1401
|
## iopen
|
@@ -1507,7 +1437,8 @@ Output:
|
|
1507
1437
|
```py
|
1508
1438
|
8
|
1509
1439
|
['mana', 'aja']
|
1510
|
-
|
1440
|
+
Timeout 3
|
1441
|
+
[<Element a at 0x77ab267200>, <Element a at 0x77ab2b2800>, <Element a at 0x77ab2b28a0>, <Element a at 0x77ab2b28f0>, <Element a at 0x77ab2b2940>, <Element a at 0x77ab2b2990>, <Element a at 0x77ab2b29e0>, <Element a at 0x77ab2b2a30>, <Element a at 0x77ab2b2a80>, <Element a at 0x77ab2b2ad0>, <Element a at 0x77ab2b2b20>, <Element a at 0x77ab2b2b70>, <Element a at 0x77ab2b2bc0>, <Element a at 0x77ab2b2c10>, <Element a at 0x77ab2b2c60>, <Element a at 0x77ab2b2cb0>, <Element a at 0x77ab2b2d00>, <Element a at 0x77ab2b2d50>, <Element a at 0x77ab2b2da0>, <Element a at 0x77ab2b2df0>]
|
1511
1442
|
False
|
1512
1443
|
```
|
1513
1444
|
|
@@ -1548,8 +1479,8 @@ print(list(irange(10, 5)))
|
|
1548
1479
|
|
1549
1480
|
Output:
|
1550
1481
|
```py
|
1551
|
-
<generator object irange at
|
1552
|
-
<generator object irange at
|
1482
|
+
<generator object irange at 0x77ab23aac0>
|
1483
|
+
<generator object irange at 0x77ab23aac0>
|
1553
1484
|
['a', 'k', 'u']
|
1554
1485
|
[1, 2, 3, 4, 5, 6, 7]
|
1555
1486
|
[10, 9, 8, 7, 6, 5]
|
@@ -1592,7 +1523,7 @@ print(list(iscandir("./", recursive=False, scan_file=False)))
|
|
1592
1523
|
|
1593
1524
|
Output:
|
1594
1525
|
```py
|
1595
|
-
<generator object iscandir at
|
1526
|
+
<generator object iscandir at 0x77ab274740>
|
1596
1527
|
[PosixPath('.git'), PosixPath('.vscode'), PosixPath('pypipr'), PosixPath('__pycache__'), PosixPath('dist')]
|
1597
1528
|
```
|
1598
1529
|
|
@@ -1612,6 +1543,125 @@ Output:
|
|
1612
1543
|
['', 'ini', 'contoh', 'path', '']
|
1613
1544
|
```
|
1614
1545
|
|
1546
|
+
## ivars
|
1547
|
+
|
1548
|
+
`ivars(obj, skip_underscore=True)`
|
1549
|
+
|
1550
|
+
Membuat dictionary berdasarkan kategori untuk setiap
|
1551
|
+
member dari object.
|
1552
|
+
|
1553
|
+
```python
|
1554
|
+
iprint(ivars(__import__('pypipr')))
|
1555
|
+
```
|
1556
|
+
|
1557
|
+
Output:
|
1558
|
+
```py
|
1559
|
+
{'module': {'ibuiltins': <module 'pypipr.ibuiltins' from '/data/data/com.termux/files/home/pypipr/pypipr/ibuiltins/__init__.py'>,
|
1560
|
+
'iconsole': <module 'pypipr.iconsole' from '/data/data/com.termux/files/home/pypipr/pypipr/iconsole/__init__.py'>,
|
1561
|
+
'idjango': <module 'pypipr.idjango' from '/data/data/com.termux/files/home/pypipr/pypipr/idjango/__init__.py'>,
|
1562
|
+
'iengineering': <module 'pypipr.iengineering' from '/data/data/com.termux/files/home/pypipr/pypipr/iengineering/__init__.py'>,
|
1563
|
+
'ifunctions': <module 'pypipr.ifunctions' from '/data/data/com.termux/files/home/pypipr/pypipr/ifunctions/__init__.py'>,
|
1564
|
+
'iflow': <module 'pypipr.iflow' (<_frozen_importlib_external.NamespaceLoader object at 0x77b33bf290>)>,
|
1565
|
+
'asyncio': <module 'asyncio' from '/data/data/com.termux/files/usr/lib/python3.11/asyncio/__init__.py'>,
|
1566
|
+
'colorama': <module 'colorama' from '/data/data/com.termux/files/usr/lib/python3.11/site-packages/colorama/__init__.py'>,
|
1567
|
+
'csv': <module 'csv' from '/data/data/com.termux/files/usr/lib/python3.11/csv.py'>,
|
1568
|
+
'datetime': <module 'datetime' from '/data/data/com.termux/files/usr/lib/python3.11/datetime.py'>,
|
1569
|
+
'functools': <module 'functools' from '/data/data/com.termux/files/usr/lib/python3.11/functools.py'>,
|
1570
|
+
'inspect': <module 'inspect' from '/data/data/com.termux/files/usr/lib/python3.11/inspect.py'>,
|
1571
|
+
'io': <module 'io' (frozen)>,
|
1572
|
+
'json': <module 'json' from '/data/data/com.termux/files/usr/lib/python3.11/json/__init__.py'>,
|
1573
|
+
'lxml': <module 'lxml' from '/data/data/com.termux/files/usr/lib/python3.11/site-packages/lxml/__init__.py'>,
|
1574
|
+
'math': <module 'math' from '/data/data/com.termux/files/usr/lib/python3.11/lib-dynload/math.cpython-311.so'>,
|
1575
|
+
'multiprocessing': <module 'multiprocessing' from '/data/data/com.termux/files/usr/lib/python3.11/multiprocessing/__init__.py'>,
|
1576
|
+
'operator': <module 'operator' from '/data/data/com.termux/files/usr/lib/python3.11/operator.py'>,
|
1577
|
+
'os': <module 'os' (frozen)>,
|
1578
|
+
'pathlib': <module 'pathlib' from '/data/data/com.termux/files/usr/lib/python3.11/pathlib.py'>,
|
1579
|
+
'pint': <module 'pint' from '/data/data/com.termux/files/usr/lib/python3.11/site-packages/pint/__init__.py'>,
|
1580
|
+
'pprint': <module 'pprint' from '/data/data/com.termux/files/usr/lib/python3.11/pprint.py'>,
|
1581
|
+
'queue': <module 'queue' from '/data/data/com.termux/files/usr/lib/python3.11/queue.py'>,
|
1582
|
+
'random': <module 'random' from '/data/data/com.termux/files/usr/lib/python3.11/random.py'>,
|
1583
|
+
're': <module 're' from '/data/data/com.termux/files/usr/lib/python3.11/re/__init__.py'>,
|
1584
|
+
'requests': <module 'requests' from '/data/data/com.termux/files/usr/lib/python3.11/site-packages/requests/__init__.py'>,
|
1585
|
+
'string': <module 'string' from '/data/data/com.termux/files/usr/lib/python3.11/string.py'>,
|
1586
|
+
'subprocess': <module 'subprocess' from '/data/data/com.termux/files/usr/lib/python3.11/subprocess.py'>,
|
1587
|
+
'sys': <module 'sys' (built-in)>,
|
1588
|
+
'textwrap': <module 'textwrap' from '/data/data/com.termux/files/usr/lib/python3.11/textwrap.py'>,
|
1589
|
+
'threading': <module 'threading' from '/data/data/com.termux/files/usr/lib/python3.11/threading.py'>,
|
1590
|
+
'time': <module 'time' (built-in)>,
|
1591
|
+
'tzdata': <module 'tzdata' from '/data/data/com.termux/files/usr/lib/python3.11/site-packages/tzdata/__init__.py'>,
|
1592
|
+
'uuid': <module 'uuid' from '/data/data/com.termux/files/usr/lib/python3.11/uuid.py'>,
|
1593
|
+
'webbrowser': <module 'webbrowser' from '/data/data/com.termux/files/usr/lib/python3.11/webbrowser.py'>,
|
1594
|
+
'yaml': <module 'yaml' from '/data/data/com.termux/files/usr/lib/python3.11/site-packages/yaml/__init__.py'>,
|
1595
|
+
'zoneinfo': <module 'zoneinfo' from '/data/data/com.termux/files/usr/lib/python3.11/zoneinfo/__init__.py'>},
|
1596
|
+
'class': {'ComparePerformance': <class 'pypipr.ibuiltins.ComparePerformance.ComparePerformance'>,
|
1597
|
+
'RunParallel': <class 'pypipr.ibuiltins.RunParallel.RunParallel'>,
|
1598
|
+
'APIMixinView': <class 'pypipr.idjango.APIMixinView.APIMixinView'>,
|
1599
|
+
'PintUregQuantity': <class 'pint.Quantity'>},
|
1600
|
+
'variable': {'LINUX': True,
|
1601
|
+
'WINDOWS': False,
|
1602
|
+
'PintUreg': <pint.registry.UnitRegistry object at 0x77b794b750>},
|
1603
|
+
'function': {'avg': <function avg at 0x77c3b2ed40>,
|
1604
|
+
'basename': <function basename at 0x77c3afe8e0>,
|
1605
|
+
'chr_to_int': <function chr_to_int at 0x77c0961080>,
|
1606
|
+
'chunk_array': <function chunk_array at 0x77c09611c0>,
|
1607
|
+
'create_folder': <function create_folder at 0x77c09613a0>,
|
1608
|
+
'datetime_from_string': <function datetime_from_string at 0x77c0961580>,
|
1609
|
+
'datetime_now': <function datetime_now at 0x77c0a09620>,
|
1610
|
+
'dict_first': <function dict_first at 0x77c0a09580>,
|
1611
|
+
'dirname': <function dirname at 0x77c0a094e0>,
|
1612
|
+
'exit_if_empty': <function exit_if_empty at 0x77c0a093a0>,
|
1613
|
+
'filter_empty': <function filter_empty at 0x77c0a091c0>,
|
1614
|
+
'get_by_index': <function get_by_index at 0x77c0a08e00>,
|
1615
|
+
'get_class_method': <function get_class_method at 0x77c0a08cc0>,
|
1616
|
+
'get_filemtime': <function get_filemtime at 0x77c0a08b80>,
|
1617
|
+
'get_filesize': <function get_filesize at 0x77c0a089a0>,
|
1618
|
+
'int_to_chr': <function int_to_chr at 0x77c0a08900>,
|
1619
|
+
'is_empty': <function is_empty at 0x77c0a09260>,
|
1620
|
+
'is_iterable': <function is_iterable at 0x77c0a08fe0>,
|
1621
|
+
'is_valid_url': <function is_valid_url at 0x77c0a087c0>,
|
1622
|
+
'password_generator': <function password_generator at 0x77c0a08680>,
|
1623
|
+
'random_bool': <function random_bool at 0x77c0a084a0>,
|
1624
|
+
'restart': <function restart at 0x77c0a0b7e0>,
|
1625
|
+
'set_timeout': <function set_timeout at 0x77c0a0b920>,
|
1626
|
+
'sets_ordered': <function sets_ordered at 0x77c0a0ba60>,
|
1627
|
+
'str_cmp': <function str_cmp at 0x77c0a0bb00>,
|
1628
|
+
'to_str': <function to_str at 0x77c0a08f40>,
|
1629
|
+
'choices': <function choices at 0x77c0a0bba0>,
|
1630
|
+
'console_run': <function console_run at 0x77c0a0be20>,
|
1631
|
+
'input_char': <function input_char at 0x77c0a0bf60>,
|
1632
|
+
'log': <function log at 0x77c0a2c180>,
|
1633
|
+
'print_colorize': <function print_colorize at 0x77c0a2c220>,
|
1634
|
+
'print_dir': <function print_dir at 0x77c0a2c360>,
|
1635
|
+
'print_log': <function print_log at 0x77c0a2c040>,
|
1636
|
+
'print_to_last_line': <function print_to_last_line at 0x77c0a0bd80>,
|
1637
|
+
'text_colorize': <function text_colorize at 0x77c0a0bec0>,
|
1638
|
+
'batch_calculate': <function batch_calculate at 0x77b33d96c0>,
|
1639
|
+
'batchmaker': <function batchmaker at 0x77b33da160>,
|
1640
|
+
'calculate': <function calculate at 0x77b33da3e0>,
|
1641
|
+
'auto_reload': <function auto_reload at 0x77b33da660>,
|
1642
|
+
'github_pull': <function github_pull at 0x77b33da5c0>,
|
1643
|
+
'github_push': <function github_push at 0x77b33da840>,
|
1644
|
+
'github_user': <function github_user at 0x77b33dab60>,
|
1645
|
+
'pip_freeze_without_version': <function pip_freeze_without_version at 0x77b31020c0>,
|
1646
|
+
'poetry_publish': <function poetry_publish at 0x77b31022a0>,
|
1647
|
+
'poetry_update_version': <function poetry_update_version at 0x77b3126ac0>,
|
1648
|
+
'iargv': <function iargv at 0x77ab484220>,
|
1649
|
+
'idumps': <function idumps at 0x77ab484360>,
|
1650
|
+
'idumps_html': <function idumps_html at 0x77ab4ecd60>,
|
1651
|
+
'ienv': <function ienv at 0x77ab4844a0>,
|
1652
|
+
'iexec': <function iexec at 0x77ab4ecfe0>,
|
1653
|
+
'ijoin': <function ijoin at 0x77b3102020>,
|
1654
|
+
'iloads': <function iloads at 0x77ab4ed080>,
|
1655
|
+
'iloads_html': <function iloads_html at 0x77ab4ed300>,
|
1656
|
+
'iopen': <function iopen at 0x77b3102340>,
|
1657
|
+
'iprint': <function iprint at 0x77ab4ed1c0>,
|
1658
|
+
'irange': <function irange at 0x77b33da520>,
|
1659
|
+
'ireplace': <function ireplace at 0x77ab4ed3a0>,
|
1660
|
+
'iscandir': <function iscandir at 0x77ab4eefc0>,
|
1661
|
+
'isplit': <function isplit at 0x77ab4ef060>,
|
1662
|
+
'ivars': <function ivars at 0x77ab4ef100>}}
|
1663
|
+
```
|
1664
|
+
|
1615
1665
|
# CLASS
|
1616
1666
|
|
1617
1667
|
## ComparePerformance
|
@@ -1649,7 +1699,7 @@ print(ExampleComparePerformance().compare_performance())
|
|
1649
1699
|
|
1650
1700
|
Output:
|
1651
1701
|
```py
|
1652
|
-
{'a': <generator object ExampleComparePerformance.a.<locals>.<genexpr> at
|
1702
|
+
{'a': <generator object ExampleComparePerformance.a.<locals>.<genexpr> at 0x77ab284450>,
|
1653
1703
|
'b': (0, 1, 2, 3, 4, 5, 6, 7, 8, 9),
|
1654
1704
|
'c': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
|
1655
1705
|
'd': [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
pypipr/__init__.py,sha256=
|
1
|
+
pypipr/__init__.py,sha256=xF-QLYZ6yu0LyMnM8mXP1D_y4e6xqT2whzOqasu3Jfc,3488
|
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=BnMasZTnr2gUVVy9dOXePlL_-ud2rWkVPFL2i-sN7rg,7358
|
@@ -23,7 +23,6 @@ pypipr/ibuiltins/int_to_chr.py,sha256=B-HnKziRQgDObsr2vMd2TnL3EkZAIMbK6fSY8b8r_d
|
|
23
23
|
pypipr/ibuiltins/is_empty.py,sha256=eqsH6ATuuOLVVSpIsV_8zTBBibPrWjESu9LCMAv8YyY,683
|
24
24
|
pypipr/ibuiltins/is_iterable.py,sha256=VCzLfFZyQO5qF2wFTVbuZIxyf4BVkflWiRQaOjd9kFs,922
|
25
25
|
pypipr/ibuiltins/is_valid_url.py,sha256=g72vv4_9Zy8dtT0i1JvToRX-mgCzojQCBVHdO1KDwqo,1008
|
26
|
-
pypipr/ibuiltins/ivars.py,sha256=CM9HFjF9qLg9Bn385CZXLtTALCt_pxhEOEueTm1uNDM,899
|
27
26
|
pypipr/ibuiltins/password_generator.py,sha256=NnFAYkAr6kZiED4JZIJ15_VeGWSpBCCy9rSA5Re_CW4,496
|
28
27
|
pypipr/ibuiltins/random_bool.py,sha256=99kM1fy7figeG5mZhbPzQ3FFzV47Jxg1aPImF78298E,405
|
29
28
|
pypipr/ibuiltins/restart.py,sha256=yFqjvFAEtmEnv1wUubyW7sgIKUFqO441R9T1D3GSIFk,114
|
@@ -71,9 +70,10 @@ pypipr/ifunctions/irange.py,sha256=x51vzQ8aAbToJBZgCX32QgAjr7Vm_Zw1MdIwSA3tVsM,2
|
|
71
70
|
pypipr/ifunctions/ireplace.py,sha256=RcVMXmbXH_cl4hXpTI5wnuzdPtkatpuZgYsZkfBLAJU,722
|
72
71
|
pypipr/ifunctions/iscandir.py,sha256=U1zvRZrz--5Kge0JooQbY4kQN17bRt-8XR26ZFxUyoA,748
|
73
72
|
pypipr/ifunctions/isplit.py,sha256=N2BiA_wVnrENYwokSzvo0CAiQWk3g7AnwuWFIUgevNM,383
|
73
|
+
pypipr/ifunctions/ivars.py,sha256=CM9HFjF9qLg9Bn385CZXLtTALCt_pxhEOEueTm1uNDM,899
|
74
74
|
pypipr/pypipr.py.bak,sha256=HF-ehQd6BY8hm9fRkQHravLNrJRlI5g_AzbCc3dbikQ,1061
|
75
75
|
pypipr/terminal.py,sha256=4w-2p_Rudm_dNdfG-rkO24heVgKLrve4xVXiRpWxVcc,1800
|
76
|
-
pypipr-1.0.
|
77
|
-
pypipr-1.0.
|
78
|
-
pypipr-1.0.
|
79
|
-
pypipr-1.0.
|
76
|
+
pypipr-1.0.99.dist-info/METADATA,sha256=-AfNSio1vcc7Upi3UPTm96BHtNhYDPMnDXWvEFVJCvw,51669
|
77
|
+
pypipr-1.0.99.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
78
|
+
pypipr-1.0.99.dist-info/entry_points.txt,sha256=ikcrTRCn3jaySem1mM9uhYEPDq2PVOs48CyEqLUkY38,47
|
79
|
+
pypipr-1.0.99.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|