About 50 results
Open links in new tab
  1. python - How to set extra index with credentials for uv like pip ...

    Nov 4, 2025 · Similar to this question, we want to specify an extra package index to be used by uv. However, our package index url contains private information, i.e., user name and token. Up to now, …

  2. How to set an index URL for 'uv'-like pip configurations

    May 2, 2025 · When using pip to install Python packages, we can set the configurations, so that it can refer to some private repository to install packages. The use case is, for example, for big companies …

  3. python - "extra fields not permitted" when subclassing model with ...

    Mar 2, 2023 · If you are using pydantic 2 with pydantic-settings and BaseSettings instead of BaseModel, then set the config value of extra to allow or ignore. This is the new way of ignoring the extra configs …

  4. Pydantic validations for extra fields that not defined in schema

    Apr 12, 2022 · Pydantic v2 You can use the extra field in the model_config class attribute to forbid extra attributes during model initialisation (by default, additional attributes will be ignored). For example:

  5. g++ - extra qualification error in C++ - Stack Overflow

    Apr 24, 2015 · I have a member function that is defined as follows: Value JSONDeserializer::ParseValue(TDR type, const json_string& valueString); When I compile the …

  6. Can pip.conf specify two index-url at the same time?

    Jun 17, 2015 · I have tried using pip with index-url in pip.conf. However, i can not make sure that we can get all the necessary python library. So, i want to know if pip support specify more than one index-url ...

  7. XML Error: Extra content at the end of the document

    XML Error: Extra content at the end of the document Asked 12 years, 10 months ago Modified 2 years, 2 months ago Viewed 204k times

  8. Why does a pull request show extra commits after a rebase?

    Jan 31, 2020 · So I started with a pull request that was a few commits ahead of develop, let's call this branch feature. feature had 1 merge conflict with develop. So I decided to rebase it and resolve the …

  9. python - Sum extra credit - Stack Overflow

    Feb 9, 2023 · Stuck at an issue during an exercise. Assign sum_extra with the total extra credit received given list test_grades. Full credit is 100, so anything over 100 is extra credit. What I've arranged. f...

  10. Python typing: Does TypedDict allow additional / extra keys?

    Apr 10, 2022 · Does typing.TypedDict allow extra keys? Does a value pass the typechecker, if it has keys which are not present on the definition of the TypedDict?