File tree Expand file tree Collapse file tree
integration_tests/0001_test_import_ldap
0600_ldap_code/repaire/api/app Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2828| [ packaging] ( https://pypi.org/project/packaging ) | 26.0 | ldap |
2929| [ pyasn1] ( https://github.com/pyasn1/pyasn1 ) | 0.6.3 | ldap |
3030| [ pyasn1_modules] ( https://github.com/pyasn1/pyasn1-modules ) | 0.4.1 | ldap |
31+ | [ pydantic-settings] ( https://github.com/pydantic/pydantic-settings ) | 2.14.1 | ldap |
3132| [ pydantic] ( https://github.com/pydantic/pydantic ) | 2.13.4 | ldap |
3233| [ pydantic_core] ( https://github.com/pydantic/pydantic ) | 2.46.4 | ldap |
3334| [ PyJWT] ( https://github.com/jpadilla/pyjwt ) | 2.12.1 | ldap |
35+ | [ python-dotenv] ( https://pypi.org/project/python-dotenv ) | 1.2.2 | ldap |
3436| [ python-ldap] ( https://www.python-ldap.org/ ) | 3.4.5 | ldap |
3537| [ python-multipart] ( https://github.com/Kludex/python-multipart ) | 0.0.29 | ldap |
3638| [ redis] ( https://github.com/redis/redis-py ) | 7.1.1 | ldap |
4446| [ uvicorn] ( https://www.uvicorn.org/ ) | 0.34.2 | ldap |
4547| [ zipp] ( https://pypi.org/project/zipp ) | 3.21.0 | ldap |
4648
47- * (43 components)*
49+ * (45 components)*
Original file line number Diff line number Diff line change 2222import pyasn1_modules
2323import pydantic
2424import pydantic_core
25+ import pydantic_settings
26+ import dotenv
2527import jwt
2628import ldap
2729import multipart
Original file line number Diff line number Diff line change @@ -22,7 +22,9 @@ pyasn1==0.6.3
2222pyasn1-modules==0.4.1
2323pydantic==2.13.4
2424pydantic-core==2.46.4
25+ pydantic-settings==2.14.1
2526PyJWT==2.12.1
27+ python-dotenv==1.2.2
2628python-ldap==3.4.5
2729python-multipart==0.0.29
2830redis==7.1.1
Original file line number Diff line number Diff line change 11from functools import cache
22from typing import Optional
33
4- from pydantic import BaseSettings
4+ from pydantic_settings import BaseSettings
55
66
77class Settings (BaseSettings ):
You can’t perform that action at this time.
0 commit comments