usso 0.10.0__py3-none-any.whl → 0.11.0__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.
usso/__init__.py CHANGED
@@ -0,0 +1 @@
1
+ from .core import UserData
usso/core.py CHANGED
@@ -29,6 +29,10 @@ class UserData(BaseModel):
29
29
 
30
30
  return uuid.UUID(user_id)
31
31
 
32
+ @property
33
+ def b64id(self) -> uuid.UUID:
34
+ return b64tools.b64_encode_uuid_strip(self.uid)
35
+
32
36
 
33
37
  def get_authorization_scheme_param(
34
38
  authorization_header_value: Optional[str],
usso/fastapi/__init__.py CHANGED
@@ -0,0 +1 @@
1
+ from .integration import jwt_access_security, user_data_from_token
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: usso
3
- Version: 0.10.0
3
+ Version: 0.11.0
4
4
  Summary: A plug-and-play client for integrating universal single sign-on (SSO) with Python frameworks, enabling secure and seamless authentication across microservices.
5
5
  Author-email: Mahdi Kiani <mahdikiany@gmail.com>
6
6
  Maintainer-email: Mahdi Kiani <mahdikiany@gmail.com>
@@ -0,0 +1,13 @@
1
+ usso/__init__.py,sha256=bHjlWFkwxHTNsC0g-aUqynQ8IrtXp1apELqCqsrynns,27
2
+ usso/b64tools.py,sha256=6YCBx2lLaYFdk36f064VNZ1RejJTHtmgxqq0eT1sCwQ,518
3
+ usso/core.py,sha256=dYV6Oq7IFpSHKRIhKpCvvWF_a1r7cTHL_p35uxQi2ec,1114
4
+ usso/exceptions.py,sha256=hawOAuVbvQtjgRfwp1KFZ4SmV7fh720y5Gom9JVA8W8,504
5
+ usso/package_data.dat,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
+ usso/fastapi/__init__.py,sha256=lp2o47nCG-vIobgEOKdEnnPBGizv5om7oPXjqe0R9qU,67
7
+ usso/fastapi/integration.py,sha256=WGDSYGMRA-jguHzyQr96iGZEoV_pbP0OaCRt_Tm6mtg,2583
8
+ usso-0.11.0.dist-info/LICENSE.txt,sha256=ceC9ZJOV9H6CtQDcYmHOS46NA3dHJ_WD4J9blH513pc,1081
9
+ usso-0.11.0.dist-info/METADATA,sha256=68ofbLz-xZhxHV84BZckCOBZy98XiNeke9Y677AAU_I,4306
10
+ usso-0.11.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
11
+ usso-0.11.0.dist-info/entry_points.txt,sha256=4Zgpm5ELaAWPf0jPGJFz1_X69H7un8ycT3WdGoJ0Vvk,35
12
+ usso-0.11.0.dist-info/top_level.txt,sha256=g9Jf6h1Oyidh0vPiFni7UHInTJjSvu6cUalpLTIvthg,5
13
+ usso-0.11.0.dist-info/RECORD,,
@@ -1,13 +0,0 @@
1
- usso/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- usso/b64tools.py,sha256=6YCBx2lLaYFdk36f064VNZ1RejJTHtmgxqq0eT1sCwQ,518
3
- usso/core.py,sha256=ym9A9rwASFoRV7TQ_bKbnIST806bXbOnJXdIzRWdJQA,1009
4
- usso/exceptions.py,sha256=hawOAuVbvQtjgRfwp1KFZ4SmV7fh720y5Gom9JVA8W8,504
5
- usso/package_data.dat,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
- usso/fastapi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
- usso/fastapi/integration.py,sha256=WGDSYGMRA-jguHzyQr96iGZEoV_pbP0OaCRt_Tm6mtg,2583
8
- usso-0.10.0.dist-info/LICENSE.txt,sha256=ceC9ZJOV9H6CtQDcYmHOS46NA3dHJ_WD4J9blH513pc,1081
9
- usso-0.10.0.dist-info/METADATA,sha256=uGSzelvISKfCq1MHyfgssn-C5hHMRx1bqVYCfxO8ZmQ,4306
10
- usso-0.10.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
11
- usso-0.10.0.dist-info/entry_points.txt,sha256=4Zgpm5ELaAWPf0jPGJFz1_X69H7un8ycT3WdGoJ0Vvk,35
12
- usso-0.10.0.dist-info/top_level.txt,sha256=g9Jf6h1Oyidh0vPiFni7UHInTJjSvu6cUalpLTIvthg,5
13
- usso-0.10.0.dist-info/RECORD,,
File without changes