pypomes-iam 0.3.6__tar.gz → 0.6.4__tar.gz
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.
Potentially problematic release.
This version of pypomes-iam might be problematic. Click here for more details.
- {pypomes_iam-0.3.6 → pypomes_iam-0.6.4}/PKG-INFO +1 -2
- {pypomes_iam-0.3.6 → pypomes_iam-0.6.4}/pyproject.toml +1 -2
- pypomes_iam-0.6.4/src/__init__.py +0 -0
- pypomes_iam-0.6.4/src/pypomes_iam/__init__.py +39 -0
- pypomes_iam-0.6.4/src/pypomes_iam/iam_actions.py +834 -0
- pypomes_iam-0.6.4/src/pypomes_iam/iam_common.py +388 -0
- pypomes_iam-0.6.4/src/pypomes_iam/iam_pomes.py +156 -0
- pypomes_iam-0.6.4/src/pypomes_iam/iam_services.py +394 -0
- pypomes_iam-0.6.4/src/pypomes_iam/provider_pomes.py +242 -0
- {pypomes_iam-0.3.6 → pypomes_iam-0.6.4}/src/pypomes_iam/token_pomes.py +39 -2
- pypomes_iam-0.3.6/src/pypomes_iam/__init__.py +0 -36
- pypomes_iam-0.3.6/src/pypomes_iam/iam_common.py +0 -279
- pypomes_iam-0.3.6/src/pypomes_iam/iam_pomes.py +0 -509
- pypomes_iam-0.3.6/src/pypomes_iam/iam_services.py +0 -282
- pypomes_iam-0.3.6/src/pypomes_iam/jusbr_pomes.py +0 -126
- pypomes_iam-0.3.6/src/pypomes_iam/keycloak_pomes.py +0 -140
- pypomes_iam-0.3.6/src/pypomes_iam/provider_pomes.py +0 -146
- {pypomes_iam-0.3.6 → pypomes_iam-0.6.4}/.gitignore +0 -0
- {pypomes_iam-0.3.6 → pypomes_iam-0.6.4}/LICENSE +0 -0
- {pypomes_iam-0.3.6 → pypomes_iam-0.6.4}/README.md +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pypomes_iam
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.6.4
|
|
4
4
|
Summary: A collection of Python pomes, penyeach (IAM modules)
|
|
5
5
|
Project-URL: Homepage, https://github.com/TheWiseCoder/PyPomes-IAM
|
|
6
6
|
Project-URL: Bug Tracker, https://github.com/TheWiseCoder/PyPomes-IAM/issues
|
|
@@ -10,7 +10,6 @@ Classifier: License :: OSI Approved :: MIT License
|
|
|
10
10
|
Classifier: Operating System :: OS Independent
|
|
11
11
|
Classifier: Programming Language :: Python :: 3
|
|
12
12
|
Requires-Python: >=3.12
|
|
13
|
-
Requires-Dist: cachetools>=6.2.1
|
|
14
13
|
Requires-Dist: flask>=3.1.2
|
|
15
14
|
Requires-Dist: pyjwt>=2.10.1
|
|
16
15
|
Requires-Dist: pypomes-core>=2.8.1
|
|
@@ -6,7 +6,7 @@ build-backend = "hatchling.build"
|
|
|
6
6
|
|
|
7
7
|
[project]
|
|
8
8
|
name = "pypomes_iam"
|
|
9
|
-
version = "0.
|
|
9
|
+
version = "0.6.4"
|
|
10
10
|
authors = [
|
|
11
11
|
{ name="GT Nunes", email="wisecoder01@gmail.com" }
|
|
12
12
|
]
|
|
@@ -19,7 +19,6 @@ classifiers = [
|
|
|
19
19
|
"Operating System :: OS Independent"
|
|
20
20
|
]
|
|
21
21
|
dependencies = [
|
|
22
|
-
"cachetools>=6.2.1",
|
|
23
22
|
"Flask>=3.1.2",
|
|
24
23
|
"PyJWT>=2.10.1",
|
|
25
24
|
"pypomes-core>=2.8.1",
|
|
File without changes
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
from .iam_actions import (
|
|
2
|
+
action_callback, action_exchange,
|
|
3
|
+
action_login, action_logout, action_token
|
|
4
|
+
)
|
|
5
|
+
from .iam_common import (
|
|
6
|
+
IamServer, IamParam
|
|
7
|
+
)
|
|
8
|
+
from .iam_pomes import (
|
|
9
|
+
iam_setup, iam_get_env_parameters, iam_get_token
|
|
10
|
+
)
|
|
11
|
+
from .iam_services import (
|
|
12
|
+
jwt_required, logger_register
|
|
13
|
+
)
|
|
14
|
+
from .provider_pomes import (
|
|
15
|
+
provider_register, provider_get_token
|
|
16
|
+
)
|
|
17
|
+
from .token_pomes import (
|
|
18
|
+
token_validate
|
|
19
|
+
)
|
|
20
|
+
|
|
21
|
+
__all__ = [
|
|
22
|
+
# iam_actions
|
|
23
|
+
"action_callback", "action_exchange",
|
|
24
|
+
"action_login", "action_logout", "action_token",
|
|
25
|
+
# iam_commons
|
|
26
|
+
"IamServer", "IamParam",
|
|
27
|
+
# iam_pomes
|
|
28
|
+
"iam_setup", "iam_get_env_parameters", "iam_get_token",
|
|
29
|
+
# iam_services
|
|
30
|
+
"jwt_required", "logger_register",
|
|
31
|
+
# provider_pomes
|
|
32
|
+
"provider_register", "provider_get_token",
|
|
33
|
+
# token_pomes
|
|
34
|
+
"token_validate"
|
|
35
|
+
]
|
|
36
|
+
|
|
37
|
+
from importlib.metadata import version
|
|
38
|
+
__version__ = version("pypomes_iam")
|
|
39
|
+
__version_info__ = tuple(int(i) for i in __version__.split(".") if i.isdigit())
|