Coverage for docs_src / settings / app03_an_py310 / config.py: 100%

6 statements  

« prev     ^ index     » next       coverage.py v7.13.3, created at 2026-04-06 01:24 +0000

1from pydantic_settings import BaseSettings, SettingsConfigDict 1aefbcd

2 

3 

4class Settings(BaseSettings): 1aefbcd

5 app_name: str = "Awesome API" 1aefbcd

6 admin_email: str 1abcd

7 items_per_user: int = 50 1aefbcd

8 

9 model_config = SettingsConfigDict(env_file=".env") 1aefbcd