Jan Vlčinský
Jan Vlčinský
I wonder, if Session shall always get `region_name` specified. Signature does not declare `region_name` as obligatory and in other cases it works well. Anyway, I added `region_name` to creation of...
I will have to accept you are correct with region_name being required for creating a session. Since I use mostly S3 services and since bucket names are using global (unique...
Do you mean separate python package (installed independently from `frictionless-py`) or alternative CLI within existing package? You are right, the change is extensive. In long term I could imagine, we...
Issues #321 and #385 are answering such request and explain, that numerical values are required by Prometheus data model. I am providing these references to link those related issues.
Thanks @valyala for correction, I fixed my original text accordingly (with EDIT note).
Observation from my latest tests (regarding various representations of enumeration literals and related storage requirements): I was importing some traffic data: - 12 logical metrics (identifiable in my source XML...
Similar issue exists, if "env" is set for a field. ```python class Settings(BaseSettings): auth_key: str api_key: str = Field(..., env="my_api_key") redis_dsn: RedisDsn = "redis://user:pass@localhost:6379/1" pg_dsn: PostgresDsn = "postgres://postgres:password@localhost:5432/postgres" # to...
# Proposal Keep the solution as is now - thus use the environment variable name in all situations - not only for trying to read values from env var (and...
Thanks @PrettyWood for reaction. Here is my feedback: Following the KISS I would invite not to add any extra option (such as "for secrets use env_prefix yes/no") unless it is...
# Is adding `_yaml_file` argument really a breaking change? The issue could be fixed by adding `_yaml_file` (and possibly `_yaml_file_encoding`) into `BaseSettings.__init__` arguments. @hramezani you mentioned in your https://github.com/pydantic/pydantic-settings/issues/259#issuecomment-2015085791 that...