Lightweight Spring Cloud Config client for Python, version 0.1.3, released April 2025. Fetches configuration from Spring Cloud Config Server and supports property sources merging. Active development with monthly releases.
pip install spring-config-client-pythonNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Initialize client with Spring Cloud Config Server URL, application name, and profile.
Replace SpringConfigClient(app=...) with SpringConfigClient(name=...)
Use get_config() for now, but prepare to use fetch_config() in the future.
Use profiles='dev,staging' (no spaces).
Install latest version (pip install --upgrade spring-config-client-python) and use 'from spring_config_client import SpringConfigClient'
Replace 'app' with 'name' in constructor call.
Set SPRING_CONFIG_URI environment variable to correct server URL, ensure server is running.
Verify server endpoints return valid JSON with propertySources array.