corelp 1.0.37__py3-none-any.whl → 1.0.39__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.
- corelp/__init__.py +17 -10
- corelp/modules/Path_LP/functions/__template__.py +19 -0
- corelp/modules/Path_LP/test_Path.py +1 -1
- corelp/modules/debug_LP/functions/__template__.py +19 -0
- corelp/modules/folder_LP/functions/__template__.py +19 -0
- corelp/modules/getmodule_LP/functions/__template__.py +19 -0
- corelp/modules/getmodule_LP/getmodule.py +16 -33
- corelp/modules/icon_LP/functions/__init__.py +0 -0
- corelp/modules/icon_LP/functions/__template__.py +19 -0
- corelp/modules/icon_LP/icon.py +46 -0
- corelp/modules/icon_LP/test_icon.py +79 -0
- corelp/modules/kwargsself_LP/functions/__init__.py +0 -0
- corelp/modules/kwargsself_LP/functions/__template__.py +19 -0
- corelp/modules/prop_LP/functions/__init__.py +0 -0
- corelp/modules/prop_LP/functions/__template__.py +19 -0
- corelp/modules/rfrom_LP/functions/__init__.py +0 -0
- corelp/modules/rfrom_LP/functions/__template__.py +19 -0
- corelp/modules/rfrom_LP/test_rfrom.py +1 -1
- corelp/modules/selfkwargs_LP/functions/__init__.py +0 -0
- corelp/modules/selfkwargs_LP/functions/__template__.py +19 -0
- corelp/modules/test_LP/functions/__init__.py +0 -0
- corelp/modules/test_LP/functions/__template__.py +19 -0
- corelp/routines/__init__.py +0 -0
- {corelp-1.0.37.dist-info → corelp-1.0.39.dist-info}/METADATA +1 -6
- corelp-1.0.39.dist-info/RECORD +57 -0
- {corelp-1.0.37.dist-info → corelp-1.0.39.dist-info}/WHEEL +2 -2
- corelp/modules/Section_LP/Section.py +0 -176
- corelp/modules/Section_LP/test_Section.py +0 -43
- corelp/modules/main_LP/main.py +0 -251
- corelp/modules/main_LP/test_main.py +0 -74
- corelp/modules/print_LP/print.py +0 -326
- corelp/modules/print_LP/test_print.py +0 -108
- corelp/modules/user_inputs_LP/test_user_inputs.py +0 -46
- corelp/modules/user_inputs_LP/user_inputs.py +0 -87
- corelp/modules.json +0 -80
- corelp/pythonLP.png:Zone.Identifier +0 -0
- corelp/scripts.json +0 -1
- corelp-1.0.37.dist-info/RECORD +0 -49
- /corelp/modules/{Section_LP → Path_LP/functions}/__init__.py +0 -0
- /corelp/modules/{main_LP → debug_LP/functions}/__init__.py +0 -0
- /corelp/modules/{print_LP → folder_LP/functions}/__init__.py +0 -0
- /corelp/modules/{user_inputs_LP → getmodule_LP/functions}/__init__.py +0 -0
- /corelp/{scripts → modules/icon_LP}/__init__.py +0 -0
corelp/__init__.py
CHANGED
|
@@ -11,19 +11,26 @@ A library that gathers core functions for python programming.
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
# %% Source code
|
|
15
|
+
sources = {
|
|
16
|
+
'Path': 'corelp.modules.Path_LP.Path',
|
|
17
|
+
'debug': 'corelp.modules.debug_LP.debug',
|
|
18
|
+
'folder': 'corelp.modules.folder_LP.folder',
|
|
19
|
+
'getmodule': 'corelp.modules.getmodule_LP.getmodule',
|
|
20
|
+
'icon': 'corelp.modules.icon_LP.icon',
|
|
21
|
+
'kwargsself': 'corelp.modules.kwargsself_LP.kwargsself',
|
|
22
|
+
'prop': 'corelp.modules.prop_LP.prop',
|
|
23
|
+
'rfrom': 'corelp.modules.rfrom_LP.rfrom',
|
|
24
|
+
'selfkwargs': 'corelp.modules.selfkwargs_LP.selfkwargs',
|
|
25
|
+
'test': 'corelp.modules.test_LP.test'
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
|
|
15
29
|
|
|
16
30
|
# %% Lazy imports
|
|
31
|
+
|
|
17
32
|
if __name__ == "__main__":
|
|
18
33
|
from modules.getmodule_LP.getmodule import getmodule # type: ignore
|
|
19
34
|
else :
|
|
20
35
|
from .modules.getmodule_LP.getmodule import getmodule
|
|
21
|
-
__getattr__, __all__ = getmodule(
|
|
22
|
-
icon = PathlibPath(__file__).parent / "icon_pythonLP.png"
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
# %% Test function run
|
|
27
|
-
if __name__ == "__main__":
|
|
28
|
-
from corelp import test
|
|
29
|
-
test(__file__)
|
|
36
|
+
__getattr__, __all__ = getmodule(sources)
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
# -*- coding: utf-8 -*-
|
|
3
|
+
# Author : Lancelot PINCET
|
|
4
|
+
# GitHub : https://github.com/LancelotPincet
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
# %% Libraries
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
# %% Function
|
|
14
|
+
def temp(**kwargs) :
|
|
15
|
+
'''
|
|
16
|
+
TODO
|
|
17
|
+
'''
|
|
18
|
+
|
|
19
|
+
print('Hello world!')
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
# -*- coding: utf-8 -*-
|
|
3
|
+
# Author : Lancelot PINCET
|
|
4
|
+
# GitHub : https://github.com/LancelotPincet
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
# %% Libraries
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
# %% Function
|
|
14
|
+
def temp(**kwargs) :
|
|
15
|
+
'''
|
|
16
|
+
TODO
|
|
17
|
+
'''
|
|
18
|
+
|
|
19
|
+
print('Hello world!')
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
# -*- coding: utf-8 -*-
|
|
3
|
+
# Author : Lancelot PINCET
|
|
4
|
+
# GitHub : https://github.com/LancelotPincet
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
# %% Libraries
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
# %% Function
|
|
14
|
+
def temp(**kwargs) :
|
|
15
|
+
'''
|
|
16
|
+
TODO
|
|
17
|
+
'''
|
|
18
|
+
|
|
19
|
+
print('Hello world!')
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
# -*- coding: utf-8 -*-
|
|
3
|
+
# Author : Lancelot PINCET
|
|
4
|
+
# GitHub : https://github.com/LancelotPincet
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
# %% Libraries
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
# %% Function
|
|
14
|
+
def temp(**kwargs) :
|
|
15
|
+
'''
|
|
16
|
+
TODO
|
|
17
|
+
'''
|
|
18
|
+
|
|
19
|
+
print('Hello world!')
|
|
@@ -13,21 +13,19 @@ This function is to be used in a library __init__ file. It creates lazy imports
|
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
# %% Libraries
|
|
16
|
-
from pathlib import Path
|
|
17
|
-
import json
|
|
18
16
|
import importlib
|
|
19
17
|
|
|
20
18
|
|
|
21
19
|
|
|
22
20
|
# %% Function
|
|
23
|
-
def getmodule(
|
|
24
|
-
'''
|
|
25
|
-
This function is to be used in a library __init__ file. It creates lazy imports of the module imported and defines __getattr__ and __all__ for this library.
|
|
21
|
+
def getmodule(sources) :
|
|
22
|
+
f'''
|
|
23
|
+
This function is to be used in a library __init__ file. It creates lazy imports of the module imported and defines __getattr__ and __all__ for this library from a sources dictionnary dict("object"="path2object").
|
|
26
24
|
|
|
27
25
|
Parameters
|
|
28
26
|
----------
|
|
29
|
-
|
|
30
|
-
|
|
27
|
+
sources : dict
|
|
28
|
+
source dictionnary.
|
|
31
29
|
|
|
32
30
|
Returns
|
|
33
31
|
-------
|
|
@@ -46,48 +44,33 @@ def getmodule(file) :
|
|
|
46
44
|
>>> from corelp import getmodule
|
|
47
45
|
...
|
|
48
46
|
>>> # In __init__.py file
|
|
49
|
-
... __getattr__, __all__ = getmodule(
|
|
47
|
+
... __getattr__, __all__ = getmodule(sources)
|
|
50
48
|
'''
|
|
51
49
|
|
|
52
|
-
#
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
name = libfolder.name
|
|
56
|
-
modulesjson = libfolder / 'modules.json'
|
|
57
|
-
scriptsjson = libfolder / 'scripts.json'
|
|
58
|
-
|
|
59
|
-
# Get dicts
|
|
60
|
-
with open(modulesjson, "r") as file :
|
|
61
|
-
modules = json.load(file)
|
|
62
|
-
with open(scriptsjson, "r") as file :
|
|
63
|
-
scripts = json.load(file)
|
|
50
|
+
# Name
|
|
51
|
+
first_key = list(sources.keys())[0]
|
|
52
|
+
name = sources[first_key].split('.')[0]
|
|
64
53
|
|
|
65
54
|
# Objects to return
|
|
66
55
|
_lazy = {}
|
|
67
|
-
_all =
|
|
56
|
+
_all = list(sources.keys())
|
|
68
57
|
def _getattr(attr) :
|
|
69
|
-
|
|
58
|
+
|
|
70
59
|
# Cached
|
|
71
60
|
if attr in _lazy:
|
|
72
61
|
return _lazy[attr]
|
|
73
62
|
|
|
74
63
|
try :
|
|
75
|
-
module =
|
|
76
|
-
funcstring = "module"
|
|
77
|
-
if module is None :
|
|
78
|
-
module = scripts.get(attr, None)
|
|
79
|
-
funcstring = "script"
|
|
64
|
+
module = sources.get(attr, None)
|
|
80
65
|
if module is None :
|
|
81
|
-
raise KeyError(f"{attr} was not found in
|
|
66
|
+
raise KeyError(f"{attr} was not found in sources")
|
|
82
67
|
except KeyError:
|
|
83
68
|
raise AttributeError(f'module {name} has no attribute {attr}')
|
|
84
|
-
path2module = module[funcstring].replace('/', '.')
|
|
85
|
-
obj_name = module["object"]
|
|
86
69
|
|
|
87
|
-
mod = importlib.import_module(
|
|
88
|
-
obj = getattr(mod,
|
|
70
|
+
mod = importlib.import_module(module)
|
|
71
|
+
obj = getattr(mod, attr, None)
|
|
89
72
|
if obj is None :
|
|
90
|
-
raise AttributeError(f"module {
|
|
73
|
+
raise AttributeError(f"module {module} has no object {attr}")
|
|
91
74
|
_lazy[attr] = obj # Cache it
|
|
92
75
|
return obj
|
|
93
76
|
|
|
File without changes
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
# -*- coding: utf-8 -*-
|
|
3
|
+
# Author : Lancelot PINCET
|
|
4
|
+
# GitHub : https://github.com/LancelotPincet
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
# %% Libraries
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
# %% Function
|
|
14
|
+
def temp(**kwargs) :
|
|
15
|
+
'''
|
|
16
|
+
TODO
|
|
17
|
+
'''
|
|
18
|
+
|
|
19
|
+
print('Hello world!')
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
# -*- coding: utf-8 -*-
|
|
3
|
+
# Date : 2026-01-23
|
|
4
|
+
# Author : Lancelot PINCET
|
|
5
|
+
# GitHub : https://github.com/LancelotPincet
|
|
6
|
+
# Library : coreLP
|
|
7
|
+
# Module : icon
|
|
8
|
+
|
|
9
|
+
"""
|
|
10
|
+
This module gives the path to pythonLP icon.
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
# %% Libraries
|
|
16
|
+
from pathlib import Path
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
# %% Function
|
|
22
|
+
def icon() :
|
|
23
|
+
'''
|
|
24
|
+
This module gives the path to pythonLP icon.
|
|
25
|
+
|
|
26
|
+
Returns
|
|
27
|
+
-------
|
|
28
|
+
path : pathlib.Path
|
|
29
|
+
path to icon.
|
|
30
|
+
|
|
31
|
+
Examples
|
|
32
|
+
--------
|
|
33
|
+
>>> from corelp import icon
|
|
34
|
+
...
|
|
35
|
+
>>> icon()
|
|
36
|
+
'''
|
|
37
|
+
|
|
38
|
+
folder = Path(__file__).parents[2] # corelp / modules / icon_LP / icon.py
|
|
39
|
+
return folder / 'icon_pythonLP.png'
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
# %% Test function run
|
|
44
|
+
if __name__ == "__main__":
|
|
45
|
+
from corelp import test
|
|
46
|
+
test(__file__)
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
# -*- coding: utf-8 -*-
|
|
3
|
+
# Date : 2026-01-23
|
|
4
|
+
# Author : Lancelot PINCET
|
|
5
|
+
# GitHub : https://github.com/LancelotPincet
|
|
6
|
+
# Library : coreLP
|
|
7
|
+
# Module : icon
|
|
8
|
+
|
|
9
|
+
"""
|
|
10
|
+
This file allows to test icon
|
|
11
|
+
|
|
12
|
+
icon : This module gives the path to pythonLP icon.
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# %% Libraries
|
|
18
|
+
from corelp import print, debug
|
|
19
|
+
import pytest
|
|
20
|
+
from corelp import icon
|
|
21
|
+
debug_folder = debug(__file__)
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# %% Function test
|
|
26
|
+
def test_function() :
|
|
27
|
+
'''
|
|
28
|
+
Test icon function
|
|
29
|
+
'''
|
|
30
|
+
print('Hello world!')
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
# %% Instance fixture
|
|
35
|
+
@pytest.fixture()
|
|
36
|
+
def instance() :
|
|
37
|
+
'''
|
|
38
|
+
Create a new instance at each test function
|
|
39
|
+
'''
|
|
40
|
+
return icon()
|
|
41
|
+
|
|
42
|
+
def test_instance(instance) :
|
|
43
|
+
'''
|
|
44
|
+
Test on fixture
|
|
45
|
+
'''
|
|
46
|
+
pass
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
# %% Returns test
|
|
50
|
+
@pytest.mark.parametrize("args, kwargs, expected, message", [
|
|
51
|
+
#([], {}, None, ""),
|
|
52
|
+
([], {}, None, ""),
|
|
53
|
+
])
|
|
54
|
+
def test_returns(args, kwargs, expected, message) :
|
|
55
|
+
'''
|
|
56
|
+
Test icon return values
|
|
57
|
+
'''
|
|
58
|
+
assert icon(*args, **kwargs) == expected, message
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
# %% Error test
|
|
63
|
+
@pytest.mark.parametrize("args, kwargs, error, error_message", [
|
|
64
|
+
#([], {}, None, ""),
|
|
65
|
+
([], {}, None, ""),
|
|
66
|
+
])
|
|
67
|
+
def test_errors(args, kwargs, error, error_message) :
|
|
68
|
+
'''
|
|
69
|
+
Test icon error values
|
|
70
|
+
'''
|
|
71
|
+
with pytest.raises(error, match=error_message) :
|
|
72
|
+
icon(*args, **kwargs)
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
# %% Test function run
|
|
77
|
+
if __name__ == "__main__":
|
|
78
|
+
from corelp import test
|
|
79
|
+
test(__file__)
|
|
File without changes
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
# -*- coding: utf-8 -*-
|
|
3
|
+
# Author : Lancelot PINCET
|
|
4
|
+
# GitHub : https://github.com/LancelotPincet
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
# %% Libraries
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
# %% Function
|
|
14
|
+
def temp(**kwargs) :
|
|
15
|
+
'''
|
|
16
|
+
TODO
|
|
17
|
+
'''
|
|
18
|
+
|
|
19
|
+
print('Hello world!')
|
|
File without changes
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
# -*- coding: utf-8 -*-
|
|
3
|
+
# Author : Lancelot PINCET
|
|
4
|
+
# GitHub : https://github.com/LancelotPincet
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
# %% Libraries
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
# %% Function
|
|
14
|
+
def temp(**kwargs) :
|
|
15
|
+
'''
|
|
16
|
+
TODO
|
|
17
|
+
'''
|
|
18
|
+
|
|
19
|
+
print('Hello world!')
|
|
File without changes
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
# -*- coding: utf-8 -*-
|
|
3
|
+
# Author : Lancelot PINCET
|
|
4
|
+
# GitHub : https://github.com/LancelotPincet
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
# %% Libraries
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
# %% Function
|
|
14
|
+
def temp(**kwargs) :
|
|
15
|
+
'''
|
|
16
|
+
TODO
|
|
17
|
+
'''
|
|
18
|
+
|
|
19
|
+
print('Hello world!')
|
|
File without changes
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
# -*- coding: utf-8 -*-
|
|
3
|
+
# Author : Lancelot PINCET
|
|
4
|
+
# GitHub : https://github.com/LancelotPincet
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
# %% Libraries
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
# %% Function
|
|
14
|
+
def temp(**kwargs) :
|
|
15
|
+
'''
|
|
16
|
+
TODO
|
|
17
|
+
'''
|
|
18
|
+
|
|
19
|
+
print('Hello world!')
|
|
File without changes
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
# -*- coding: utf-8 -*-
|
|
3
|
+
# Author : Lancelot PINCET
|
|
4
|
+
# GitHub : https://github.com/LancelotPincet
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
# %% Libraries
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
# %% Function
|
|
14
|
+
def temp(**kwargs) :
|
|
15
|
+
'''
|
|
16
|
+
TODO
|
|
17
|
+
'''
|
|
18
|
+
|
|
19
|
+
print('Hello world!')
|
|
File without changes
|
|
@@ -1,13 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: corelp
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.39
|
|
4
4
|
Summary: A library that gathers core functions for python programming.
|
|
5
|
-
Requires-Dist: joblib ; extra == 'script'
|
|
6
|
-
Requires-Dist: rich ; extra == 'script'
|
|
7
|
-
Requires-Dist: marimo ; extra == 'script'
|
|
8
5
|
Requires-Python: >=3.12
|
|
9
|
-
Provides-Extra: lib
|
|
10
|
-
Provides-Extra: script
|
|
11
6
|
Description-Content-Type: text/markdown
|
|
12
7
|
|
|
13
8
|
# coreLP
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
corelp/__init__.py,sha256=seoBQyMAKpf2TYud-NHsdpMktAXxQJyJQAN_7QKxYsE,971
|
|
2
|
+
corelp/icon_pythonLP.png,sha256=pg386kYEKGspDDRbRF0alOmHXPEm0geMoYIPaxEfQ_o,3805
|
|
3
|
+
corelp/modules/Path_LP/Path.py,sha256=wfvO1DuewIUSEA9_g66O5nCEp95Pr5XM-yxaOOEimTs,2418
|
|
4
|
+
corelp/modules/Path_LP/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
+
corelp/modules/Path_LP/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
+
corelp/modules/Path_LP/functions/__template__.py,sha256=pTGY1L6GD6uNbMyPDTzszhu06hF08FM6EM1D3ljCU9A,241
|
|
7
|
+
corelp/modules/Path_LP/test_Path.py,sha256=E4m0n4aEaS0_KCNNpOxqnCQpiapHv3uAIaJSWwXpSY0,708
|
|
8
|
+
corelp/modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
+
corelp/modules/debug_LP/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
|
+
corelp/modules/debug_LP/debug.py,sha256=Mkn3WPTkaKSXdfmY8ioEwu4OXQqiDoM2Akhbz62Nnis,1623
|
|
11
|
+
corelp/modules/debug_LP/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
+
corelp/modules/debug_LP/functions/__template__.py,sha256=pTGY1L6GD6uNbMyPDTzszhu06hF08FM6EM1D3ljCU9A,241
|
|
13
|
+
corelp/modules/debug_LP/test_debug.py,sha256=FIDfwO-OAwflEQ5y2djQNUh_-BcxgQDm9jPLvaUdzDo,716
|
|
14
|
+
corelp/modules/folder_LP/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
|
+
corelp/modules/folder_LP/folder.py,sha256=Wd5gaT0oX1rWpXPUcHTVIPQjNPD-IPWPEcGSgetPl1U,2497
|
|
16
|
+
corelp/modules/folder_LP/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
|
+
corelp/modules/folder_LP/functions/__template__.py,sha256=pTGY1L6GD6uNbMyPDTzszhu06hF08FM6EM1D3ljCU9A,241
|
|
18
|
+
corelp/modules/folder_LP/test_folder.py,sha256=zccBcsE10dTQLnCX7tK-Fa2n3F_JzmyzSkQVAXz50yw,928
|
|
19
|
+
corelp/modules/getmodule_LP/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
|
+
corelp/modules/getmodule_LP/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
|
+
corelp/modules/getmodule_LP/functions/__template__.py,sha256=pTGY1L6GD6uNbMyPDTzszhu06hF08FM6EM1D3ljCU9A,241
|
|
22
|
+
corelp/modules/getmodule_LP/getmodule.py,sha256=ARzkxe0QARMoSUcLyvNyaFgYeixZsdFAJ5xtuXiL4gA,2101
|
|
23
|
+
corelp/modules/icon_LP/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
24
|
+
corelp/modules/icon_LP/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
25
|
+
corelp/modules/icon_LP/functions/__template__.py,sha256=pTGY1L6GD6uNbMyPDTzszhu06hF08FM6EM1D3ljCU9A,241
|
|
26
|
+
corelp/modules/icon_LP/icon.py,sha256=qHOeyWG8TdlKwLtQznKL0O-7fC9ZTGU9SaLAfXoaGi0,778
|
|
27
|
+
corelp/modules/icon_LP/test_icon.py,sha256=oLhV_PsPGCTMiLa93h3jwrC0QXbFVasDAaYYeVdf8iI,1447
|
|
28
|
+
corelp/modules/kwargsself_LP/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
|
+
corelp/modules/kwargsself_LP/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
30
|
+
corelp/modules/kwargsself_LP/functions/__template__.py,sha256=pTGY1L6GD6uNbMyPDTzszhu06hF08FM6EM1D3ljCU9A,241
|
|
31
|
+
corelp/modules/kwargsself_LP/kwargsself.py,sha256=24HVn1G7ALdhQFSLT0U2dVjVzop6c2s-nr7DrMK53iw,1865
|
|
32
|
+
corelp/modules/kwargsself_LP/test_kwargsself.py,sha256=BaqGu0bqFuFemiYUEDMviFfegTb0aF6lmeFm3KJa8sw,1241
|
|
33
|
+
corelp/modules/prop_LP/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
|
+
corelp/modules/prop_LP/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
35
|
+
corelp/modules/prop_LP/functions/__template__.py,sha256=pTGY1L6GD6uNbMyPDTzszhu06hF08FM6EM1D3ljCU9A,241
|
|
36
|
+
corelp/modules/prop_LP/prop.py,sha256=lfsENmjg65mpXxt9V9n3Nn__wHgNJA61l8_UXBKn1lc,3999
|
|
37
|
+
corelp/modules/prop_LP/test_prop.py,sha256=X5GJwIyik5Gzd6Z28h1kGdZzVVhb1D5FXTHXvXBbwfA,2302
|
|
38
|
+
corelp/modules/rfrom_LP/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
39
|
+
corelp/modules/rfrom_LP/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
40
|
+
corelp/modules/rfrom_LP/functions/__template__.py,sha256=pTGY1L6GD6uNbMyPDTzszhu06hF08FM6EM1D3ljCU9A,241
|
|
41
|
+
corelp/modules/rfrom_LP/rfrom.py,sha256=f5-zPUUxlxInnaBM_WMuAaSMjdaoyOjsn5WbpLIfSVk,1690
|
|
42
|
+
corelp/modules/rfrom_LP/test_rfrom.py,sha256=Sq9FeWnzpItiT8RGh6CzCdMnoZm4e2-dbkTs6dW2XPY,666
|
|
43
|
+
corelp/modules/selfkwargs_LP/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
44
|
+
corelp/modules/selfkwargs_LP/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
45
|
+
corelp/modules/selfkwargs_LP/functions/__template__.py,sha256=pTGY1L6GD6uNbMyPDTzszhu06hF08FM6EM1D3ljCU9A,241
|
|
46
|
+
corelp/modules/selfkwargs_LP/selfkwargs.py,sha256=7yWkpVQRwb2VnDPUGxREXjyVIn0n8RpptlP3lnP57wU,1203
|
|
47
|
+
corelp/modules/selfkwargs_LP/test_selfkwargs.py,sha256=Ex-y60W9oD1OUtDlRvyxn-Wlq1l3JmIJY0Iot2uGQbY,826
|
|
48
|
+
corelp/modules/test_LP/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
49
|
+
corelp/modules/test_LP/functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
50
|
+
corelp/modules/test_LP/functions/__template__.py,sha256=pTGY1L6GD6uNbMyPDTzszhu06hF08FM6EM1D3ljCU9A,241
|
|
51
|
+
corelp/modules/test_LP/test.py,sha256=KwAeIZWQ7pZX85J50q6qfB4HuJUgREu1ieB_byPqI2g,1361
|
|
52
|
+
corelp/modules/test_LP/test_test.py,sha256=sXI6G4OBnWXSqrfMy9QdabkYIvcD80EmnNcnQiXxcRI,605
|
|
53
|
+
corelp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
54
|
+
corelp/routines/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
55
|
+
corelp-1.0.39.dist-info/WHEEL,sha256=XV0cjMrO7zXhVAIyyc8aFf1VjZ33Fen4IiJk5zFlC3g,80
|
|
56
|
+
corelp-1.0.39.dist-info/METADATA,sha256=F33gA4MMgxoY2AiCu1VUZsuJLabhr8gn7UVbLixF4EI,1656
|
|
57
|
+
corelp-1.0.39.dist-info/RECORD,,
|