pypomes-jwt 0.7.3__py3-none-any.whl → 0.7.4__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.
Potentially problematic release.
This version of pypomes-jwt might be problematic. Click here for more details.
- pypomes_jwt/jwt_constants.py +3 -6
- pypomes_jwt/jwt_data.py +1 -1
- {pypomes_jwt-0.7.3.dist-info → pypomes_jwt-0.7.4.dist-info}/METADATA +1 -1
- pypomes_jwt-0.7.4.dist-info/RECORD +8 -0
- pypomes_jwt-0.7.3.dist-info/RECORD +0 -8
- {pypomes_jwt-0.7.3.dist-info → pypomes_jwt-0.7.4.dist-info}/WHEEL +0 -0
- {pypomes_jwt-0.7.3.dist-info → pypomes_jwt-0.7.4.dist-info}/licenses/LICENSE +0 -0
pypomes_jwt/jwt_constants.py
CHANGED
|
@@ -16,12 +16,9 @@ JWT_DB_USER: Final[str] = env_get_str(key=f"{APP_PREFIX}_JWT_DB_USER")
|
|
|
16
16
|
JWT_DB_PWD: Final[str] = env_get_str(key=f"{APP_PREFIX}_JWT_DB_PWD")
|
|
17
17
|
JWT_DB_CLIENT: Final[str] = env_get_str(key=f"{APP_PREFIX}_JWT_DB_CLIENT") # for Oracle, only
|
|
18
18
|
JWT_DB_DRIVER: Final[str] = env_get_str(key=f"{APP_PREFIX}_JWT_DB_DRIVER") # for SQLServer, only
|
|
19
|
-
JWT_DB_TABLE: Final[str] = env_get_str(key=f"{APP_PREFIX}_JWT_DB_TABLE"
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
def_value="account_id")
|
|
23
|
-
JWT_DB_COL_TOKEN: Final[str] = env_get_str(key=f"{APP_PREFIX}_JWT_DB_COL_TOKEN",
|
|
24
|
-
def_value="token")
|
|
19
|
+
JWT_DB_TABLE: Final[str] = env_get_str(key=f"{APP_PREFIX}_JWT_DB_TABLE")
|
|
20
|
+
JWT_DB_COL_ACCOUNT: Final[str] = env_get_str(key=f"{APP_PREFIX}_JWT_DB_COL_ACCOUNT")
|
|
21
|
+
JWT_DB_COL_TOKEN: Final[str] = env_get_str(key=f"{APP_PREFIX}_JWT_DB_COL_TOKEN")
|
|
25
22
|
# define the database engine
|
|
26
23
|
__db_engine: str | None = env_get_str(key=f"{APP_PREFIX}_JWT_DB_ENGINE")
|
|
27
24
|
if __db_engine:
|
pypomes_jwt/jwt_data.py
CHANGED
|
@@ -113,7 +113,7 @@ class JwtData:
|
|
|
113
113
|
with self.access_lock:
|
|
114
114
|
if account_id not in self.access_data:
|
|
115
115
|
self.access_data[account_id] = {
|
|
116
|
-
"
|
|
116
|
+
"reference-url": reference_url,
|
|
117
117
|
"access-max-age": access_max_age,
|
|
118
118
|
"refresh-max-age": refresh_max_age,
|
|
119
119
|
"grace-interval": grace_interval,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pypomes_jwt
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.4
|
|
4
4
|
Summary: A collection of Python pomes, penyeach (JWT module)
|
|
5
5
|
Project-URL: Homepage, https://github.com/TheWiseCoder/PyPomes-JWT
|
|
6
6
|
Project-URL: Bug Tracker, https://github.com/TheWiseCoder/PyPomes-JWT/issues
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
pypomes_jwt/__init__.py,sha256=dkWeYPNwypjwFuTjx4YtC8QV9ihykF4xcJJ7x86Wc5g,1130
|
|
2
|
+
pypomes_jwt/jwt_constants.py,sha256=xUX2raEaDUPJsjAm78lQ0APs4KSs5GYBxSPC5QKrrFE,4327
|
|
3
|
+
pypomes_jwt/jwt_data.py,sha256=YH3v8zvOURkB_o0XLMu2y2sFkKCxZBmbyWU5rC2gre4,16419
|
|
4
|
+
pypomes_jwt/jwt_pomes.py,sha256=zFU1TyeR3BhK9ToC1Vs1wh67uE2DGvzH9FltiQxI0EM,12160
|
|
5
|
+
pypomes_jwt-0.7.4.dist-info/METADATA,sha256=DwlCneMVk9Qv4RovwWslSRK_zb2DF5lgnJd4nRVeeWE,599
|
|
6
|
+
pypomes_jwt-0.7.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
7
|
+
pypomes_jwt-0.7.4.dist-info/licenses/LICENSE,sha256=NdakochSXm_H_-DSL_x2JlRCkYikj3snYYvTwgR5d_c,1086
|
|
8
|
+
pypomes_jwt-0.7.4.dist-info/RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
pypomes_jwt/__init__.py,sha256=dkWeYPNwypjwFuTjx4YtC8QV9ihykF4xcJJ7x86Wc5g,1130
|
|
2
|
-
pypomes_jwt/jwt_constants.py,sha256=zuU-JvVojYuNeEWfvPC62_IL2KZYshppYLZ3MnSpp4c,4523
|
|
3
|
-
pypomes_jwt/jwt_data.py,sha256=gKXL-gRm2ABfSD_X42bSzBciv5nclO2uiqOSvUUgE3k,16419
|
|
4
|
-
pypomes_jwt/jwt_pomes.py,sha256=zFU1TyeR3BhK9ToC1Vs1wh67uE2DGvzH9FltiQxI0EM,12160
|
|
5
|
-
pypomes_jwt-0.7.3.dist-info/METADATA,sha256=FRPBH-XDlmst_zCKAAaRzSZa4LJvEZIcXe0Rw2GDprU,599
|
|
6
|
-
pypomes_jwt-0.7.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
7
|
-
pypomes_jwt-0.7.3.dist-info/licenses/LICENSE,sha256=NdakochSXm_H_-DSL_x2JlRCkYikj3snYYvTwgR5d_c,1086
|
|
8
|
-
pypomes_jwt-0.7.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|