module utils.jwtoken
class JWTBaseModel
Base class to manage JWT.
The pydantic model fields are the data content of the JWT. The default expiration (exp) is set to 900 seconds. Overwrite the ClassVar exp to change the expiration time.
property model_extra
Get extra fields set during validation.
Returns:
A dictionary of extra fields, or None
if config.extra
is not set to "allow"
.
property model_fields_set
Returns the set of fields that have been explicitly set on this model instance.
Returns: A set of strings representing the fields that have been set, i.e. that were not filled from defaults.
classmethod decode_token
decode_token(key: str, token: str, verify: bool = True)
Decode the token and load the data content into an instance of this class.
Args ---------- key: Secret key used to encrypt the JWT verify: If true, verify the signature is valid, otherwise skip. Default is True
Returns ------- Class instance
method encode_token
encode_token(key: str) → str
Encode the class data into a JWT and return a string.
Args ---------- key: Secret key used to encrypt the JWT
Returns ------- The JWT as a string
This file was automatically generated via lazydocs.