Skip to main content

Settings management for Pydantic models using Doppler

Project description

Pydantic Settings Doppler

CI codecov Pydantic v2 only PyPI - Implementation PyPI - Python Version PyPI - License PyPI - Version

Pydantic Settings for Doppler integration! This package provides a seamless way to load configuration values from Doppler into your Pydantic models. It leverages the power of Doppler's secrets management and Pydantic's settings management to make your application configuration secure and easy to use.

🚀 Features

  • Secure: Fetch secrets directly from Doppler.
  • Simple: Integrates seamlessly with Pydantic's BaseSettings.
  • Flexible: Supports environment variable fallbacks and default values.

📦 Installation

Install the package using pip:

pip install pydantic-settings-doppler

🛠️ Usage

Here's a quick example to get you started:

from pydantic_settings import BaseSettings
from pydantic_settings.sources import PydanticBaseSettingsSource
from pydantic_settings_doppler import DopplerSettingsSource


class Settings(BaseSettings):
    database_url: str
    api_key: str

    @classmethod
    def settings_customise_sources(
        cls,
        settings_cls: type[BaseSettings],
        init_settings: PydanticBaseSettingsSource,
        env_settings: PydanticBaseSettingsSource,
        dotenv_settings: PydanticBaseSettingsSource,
        file_secret_settings: PydanticBaseSettingsSource,
    ) -> tuple[PydanticBaseSettingsSource, ...]:
        return (
            init_settings,
            DopplerSettingsSource(
                settings_cls,
                token="your-doppler-token",
                project_id="your-project-id",
                config_id="your-config-id",
            ),
            env_settings,
            dotenv_settings,
            file_secret_settings,
        )


# Load settings
settings = Settings()
print(settings.database_url)
print(settings.api_key)

📖 Documentation

For more details, check out the Doppler documentation and Pydantic documentation.

🧑‍💻 Contributing

Contributions are welcome! Feel free to open issues or submit pull requests.

⚖️ License

This project is licensed under the MIT License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pydantic_settings_doppler-0.1.2.tar.gz (4.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pydantic_settings_doppler-0.1.2-py3-none-any.whl (5.1 kB view details)

Uploaded Python 3

File details

Details for the file pydantic_settings_doppler-0.1.2.tar.gz.

File metadata

File hashes

Hashes for pydantic_settings_doppler-0.1.2.tar.gz
Algorithm Hash digest
SHA256 09600aeac6ae217af80b40e3f8967ca1b6b018f1f2a8a2e0ab275ac1bbdf3364
MD5 042b3b5853b5099f7a3ac0998a2166b3
BLAKE2b-256 ad77988b15da246852e3ea2aba1f4e720f02658fb635913ad1f694791eb8350d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pydantic_settings_doppler-0.1.2.tar.gz:

Publisher: release.yaml on ajauniskis/pydantic-settings-doppler

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pydantic_settings_doppler-0.1.2-py3-none-any.whl.

File metadata

File hashes

Hashes for pydantic_settings_doppler-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 344e71b44ee27bc0311219ebf4562719f6fbccaee2981bad4716c0f1c30d45b0
MD5 045e1c41c545e842dd9f65f7edf7c4a7
BLAKE2b-256 c39eb36bd75f62a08cd4e733f91b7b632aadfc7504766370d0cee1bfc3b70065

See more details on using hashes here.

Provenance

The following attestation bundles were made for pydantic_settings_doppler-0.1.2-py3-none-any.whl:

Publisher: release.yaml on ajauniskis/pydantic-settings-doppler

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page