corelp 1.0.38__py3-none-any.whl → 1.0.40__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.
Files changed (33) hide show
  1. corelp/__init__.py +31 -10
  2. corelp/modules/Path_LP/functions/__template__.py +19 -0
  3. corelp/modules/debug_LP/functions/__init__.py +0 -0
  4. corelp/modules/debug_LP/functions/__template__.py +19 -0
  5. corelp/modules/folder_LP/functions/__init__.py +0 -0
  6. corelp/modules/folder_LP/functions/__template__.py +19 -0
  7. corelp/modules/getmodule_LP/functions/__init__.py +0 -0
  8. corelp/modules/getmodule_LP/functions/__template__.py +19 -0
  9. corelp/modules/getmodule_LP/getmodule.py +16 -33
  10. corelp/modules/icon_LP/__init__.py +0 -0
  11. corelp/modules/icon_LP/functions/__init__.py +0 -0
  12. corelp/modules/icon_LP/functions/__template__.py +19 -0
  13. corelp/modules/icon_LP/icon.py +46 -0
  14. corelp/modules/icon_LP/test_icon.py +79 -0
  15. corelp/modules/kwargsself_LP/functions/__init__.py +0 -0
  16. corelp/modules/kwargsself_LP/functions/__template__.py +19 -0
  17. corelp/modules/prop_LP/functions/__init__.py +0 -0
  18. corelp/modules/prop_LP/functions/__template__.py +19 -0
  19. corelp/modules/rfrom_LP/functions/__init__.py +0 -0
  20. corelp/modules/rfrom_LP/functions/__template__.py +19 -0
  21. corelp/modules/selfkwargs_LP/functions/__init__.py +0 -0
  22. corelp/modules/selfkwargs_LP/functions/__template__.py +19 -0
  23. corelp/modules/test_LP/functions/__init__.py +0 -0
  24. corelp/modules/test_LP/functions/__template__.py +19 -0
  25. corelp/routines/__init__.py +0 -0
  26. {corelp-1.0.38.dist-info → corelp-1.0.40.dist-info}/METADATA +1 -1
  27. corelp-1.0.40.dist-info/RECORD +57 -0
  28. {corelp-1.0.38.dist-info → corelp-1.0.40.dist-info}/WHEEL +2 -2
  29. corelp/modules.json +0 -56
  30. corelp/pythonLP.png:Zone.Identifier +0 -0
  31. corelp/scripts.json +0 -1
  32. corelp-1.0.38.dist-info/RECORD +0 -37
  33. /corelp/{scripts → modules/Path_LP/functions}/__init__.py +0 -0
corelp/__init__.py CHANGED
@@ -11,19 +11,40 @@ A library that gathers core functions for python programming.
11
11
 
12
12
 
13
13
 
14
- from pathlib import Path as PathlibPath
14
+ # %% Source import
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
+
29
+
30
+ # %% Hidden imports
31
+ if False :
32
+ import corelp.modules.Path_LP.Path
33
+ import corelp.modules.debug_LP.debug
34
+ import corelp.modules.folder_LP.folder
35
+ import corelp.modules.getmodule_LP.getmodule
36
+ import corelp.modules.icon_LP.icon
37
+ import corelp.modules.kwargsself_LP.kwargsself
38
+ import corelp.modules.prop_LP.prop
39
+ import corelp.modules.rfrom_LP.rfrom
40
+ import corelp.modules.selfkwargs_LP.selfkwargs
41
+ import corelp.modules.test_LP.test
42
+
43
+
15
44
 
16
45
  # %% Lazy imports
17
46
  if __name__ == "__main__":
18
47
  from modules.getmodule_LP.getmodule import getmodule # type: ignore
19
48
  else :
20
49
  from .modules.getmodule_LP.getmodule import getmodule
21
- __getattr__, __all__ = getmodule(__file__)
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__)
50
+ __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!')
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!')
@@ -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(file) :
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
- file : str
30
- __file__ string in the __init__.py file.
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(__file__)
47
+ ... __getattr__, __all__ = getmodule(sources)
50
48
  '''
51
49
 
52
- # Get paths
53
- file = Path(file)
54
- libfolder = file.parent
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 = [module for module in modules] + [script for script in scripts]
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 = modules.get(attr, None)
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 json files")
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(f"{name}.{path2module}")
88
- obj = getattr(mod, obj_name, None)
70
+ mod = importlib.import_module(module)
71
+ obj = getattr(mod, attr, None)
89
72
  if obj is None :
90
- raise AttributeError(f"module {name}.{path2module} has no attribute {obj_name}")
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
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,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: corelp
3
- Version: 1.0.38
3
+ Version: 1.0.40
4
4
  Summary: A library that gathers core functions for python programming.
5
5
  Requires-Python: >=3.12
6
6
  Description-Content-Type: text/markdown
@@ -0,0 +1,57 @@
1
+ corelp/__init__.py,sha256=B7uZnl6UmbC-OqLb_uPhxCoxGf8OTbIHkL8u78Mp57g,1438
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.40.dist-info/WHEEL,sha256=XV0cjMrO7zXhVAIyyc8aFf1VjZ33Fen4IiJk5zFlC3g,80
56
+ corelp-1.0.40.dist-info/METADATA,sha256=b7H6THgtZrtFdpeuhLuldBiCsl0pKK-Q0gYZLOUGnm8,1656
57
+ corelp-1.0.40.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: uv 0.9.24
2
+ Generator: uv 0.9.26
3
3
  Root-Is-Purelib: true
4
- Tag: py3-none-any
4
+ Tag: py3-none-any
corelp/modules.json DELETED
@@ -1,56 +0,0 @@
1
- {
2
- "Path": {
3
- "date": "2025-09-02",
4
- "description": "This function is a wrapper around the pathlib.Path and returns a compatible Path with a windows path copied inside Linux (for WSL)",
5
- "module": "modules/Path_LP/Path",
6
- "object": "Path"
7
- },
8
- "debug": {
9
- "date": "2025-08-25",
10
- "description": "This function will give and create the debug folder for a given python file.",
11
- "module": "modules/debug_LP/debug",
12
- "object": "debug"
13
- },
14
- "folder": {
15
- "date": "2025-08-25",
16
- "description": "This function creates a new folder, while crushing previous instances if already exists.",
17
- "module": "modules/folder_LP/folder",
18
- "object": "folder"
19
- },
20
- "getmodule": {
21
- "date": "2025-08-25",
22
- "description": "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.",
23
- "module": "modules/getmodule_LP/getmodule",
24
- "object": "getmodule"
25
- },
26
- "kwargsself": {
27
- "date": "2025-08-27",
28
- "description": "This function will return all the attributes of an object (self) into a dictionnary (kwargs)",
29
- "module": "modules/kwargsself_LP/kwargsself",
30
- "object": "kwargsself"
31
- },
32
- "prop": {
33
- "date": "2025-08-25",
34
- "description": "This function serves as an improved property decorator.",
35
- "module": "modules/prop_LP/prop",
36
- "object": "prop"
37
- },
38
- "rfrom": {
39
- "date": "2025-08-29",
40
- "description": "This function allows to do a relative import that works in module and script modes.",
41
- "module": "modules/rfrom_LP/rfrom",
42
- "object": "rfrom"
43
- },
44
- "selfkwargs": {
45
- "date": "2025-08-27",
46
- "description": "This function takes a dictionnary and sets all its values to an object (self).",
47
- "module": "modules/selfkwargs_LP/selfkwargs",
48
- "object": "selfkwargs"
49
- },
50
- "test": {
51
- "date": "2025-08-25",
52
- "description": "This function will launch the testfile for the current file using pytest library.",
53
- "module": "modules/test_LP/test",
54
- "object": "test"
55
- }
56
- }
Binary file
corelp/scripts.json DELETED
@@ -1 +0,0 @@
1
- {}
@@ -1,37 +0,0 @@
1
- corelp/__init__.py,sha256=JMGz_b8Xz6heIsLVRtZpfpZ1DMF_Vsi-Xw8l7pnqy6c,684
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/test_Path.py,sha256=E4m0n4aEaS0_KCNNpOxqnCQpiapHv3uAIaJSWwXpSY0,708
6
- corelp/modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
- corelp/modules/debug_LP/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
- corelp/modules/debug_LP/debug.py,sha256=Mkn3WPTkaKSXdfmY8ioEwu4OXQqiDoM2Akhbz62Nnis,1623
9
- corelp/modules/debug_LP/test_debug.py,sha256=FIDfwO-OAwflEQ5y2djQNUh_-BcxgQDm9jPLvaUdzDo,716
10
- corelp/modules/folder_LP/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- corelp/modules/folder_LP/folder.py,sha256=Wd5gaT0oX1rWpXPUcHTVIPQjNPD-IPWPEcGSgetPl1U,2497
12
- corelp/modules/folder_LP/test_folder.py,sha256=zccBcsE10dTQLnCX7tK-Fa2n3F_JzmyzSkQVAXz50yw,928
13
- corelp/modules/getmodule_LP/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
- corelp/modules/getmodule_LP/getmodule.py,sha256=7I4ehsBtgfi-wUyiQ5eT07lc8FiUVN7Fbdm0pXLA5T4,2694
15
- corelp/modules/kwargsself_LP/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
- corelp/modules/kwargsself_LP/kwargsself.py,sha256=24HVn1G7ALdhQFSLT0U2dVjVzop6c2s-nr7DrMK53iw,1865
17
- corelp/modules/kwargsself_LP/test_kwargsself.py,sha256=BaqGu0bqFuFemiYUEDMviFfegTb0aF6lmeFm3KJa8sw,1241
18
- corelp/modules/prop_LP/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
- corelp/modules/prop_LP/prop.py,sha256=lfsENmjg65mpXxt9V9n3Nn__wHgNJA61l8_UXBKn1lc,3999
20
- corelp/modules/prop_LP/test_prop.py,sha256=X5GJwIyik5Gzd6Z28h1kGdZzVVhb1D5FXTHXvXBbwfA,2302
21
- corelp/modules/rfrom_LP/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
- corelp/modules/rfrom_LP/rfrom.py,sha256=f5-zPUUxlxInnaBM_WMuAaSMjdaoyOjsn5WbpLIfSVk,1690
23
- corelp/modules/rfrom_LP/test_rfrom.py,sha256=Sq9FeWnzpItiT8RGh6CzCdMnoZm4e2-dbkTs6dW2XPY,666
24
- corelp/modules/selfkwargs_LP/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
- corelp/modules/selfkwargs_LP/selfkwargs.py,sha256=7yWkpVQRwb2VnDPUGxREXjyVIn0n8RpptlP3lnP57wU,1203
26
- corelp/modules/selfkwargs_LP/test_selfkwargs.py,sha256=Ex-y60W9oD1OUtDlRvyxn-Wlq1l3JmIJY0Iot2uGQbY,826
27
- corelp/modules/test_LP/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
28
- corelp/modules/test_LP/test.py,sha256=KwAeIZWQ7pZX85J50q6qfB4HuJUgREu1ieB_byPqI2g,1361
29
- corelp/modules/test_LP/test_test.py,sha256=sXI6G4OBnWXSqrfMy9QdabkYIvcD80EmnNcnQiXxcRI,605
30
- corelp/modules.json,sha256=3zREFn0--UhICcQJQG8syet8Ni1HdsG_pN0K86SQiXo,2230
31
- corelp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
32
- corelp/pythonLP.png:Zone.Identifier,sha256=uVLSTPcBvE56fSHhroXGEYJOgFeaiYNsDLSbGTRGzP4,25
33
- corelp/scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
- corelp/scripts.json,sha256=RBNvo1WzZ4oRRq0W9-hknpT7T8If536DEMBg9hyq_4o,2
35
- corelp-1.0.38.dist-info/WHEEL,sha256=eycQt0QpYmJMLKpE3X9iDk8R04v2ZF0x82ogq-zP6bQ,79
36
- corelp-1.0.38.dist-info/METADATA,sha256=I0RpZ1oe4qOcO5R7WAHrjHSYNmmqKVbhFEBy7bgufpA,1656
37
- corelp-1.0.38.dist-info/RECORD,,