Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for ADD (0.02 sec)

  1. docs/en/docs/release-notes.md

    ## 0.127.0
    
    ### Breaking Changes
    
    * 🔊 Add deprecation warnings when using `pydantic.v1`. PR [#14583](https://github.com/fastapi/fastapi/pull/14583) by [@tiangolo](https://github.com/tiangolo).
    
    ### Translations
    
    * đź”§ Add LLM prompt file for Korean, generated from the existing translations. PR [#14546](https://github.com/fastapi/fastapi/pull/14546) by [@tiangolo](https://github.com/tiangolo).
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 19:06:15 UTC 2025
    - 586.7K bytes
    - Viewed (0)
  2. .pre-commit-config.yaml

            require_serial: true
            language: unsupported
            types: [python]
    
          - id: add-permalinks-pages
            language: unsupported
            name: add-permalinks-pages
            entry: uv run ./scripts/docs.py add-permalinks-pages
            args:
              - --update-existing
            files: ^docs/en/docs/.*\.md$
    
          - id: generate-readme
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Dec 26 11:36:58 UTC 2025
    - 1.8K bytes
    - Viewed (1)
  3. .github/workflows/translate.yml

          command:
            description: Command to run
            type: choice
            options:
              - translate-page
              - translate-lang
              - update-outdated
              - add-missing
              - update-and-add
              - remove-removable
          language:
            description: Language to translate to as a letter code (e.g. "es" for Spanish)
            type: string
            required: false
            default: ""
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 18:48:45 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  4. scripts/docs.py

                        permalinks.add(slug)
    
                        line = f"{hashes} {title} {{ #{slug} }}\n"
    
            updated_lines.append(line)
    
        with path.open("w", encoding="utf-8") as f:
            f.writelines(updated_lines)
    
    
    @app.command()
    def add_permalinks_pages(pages: list[Path], update_existing: bool = False) -> None:
        """
        Add or update header permalinks in specific pages of En docs.
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sun Dec 21 17:40:17 UTC 2025
    - 16.9K bytes
    - Viewed (0)
  5. scripts/translate.py

        available_commands = [
            "translate-page",
            "translate-lang",
            "update-outdated",
            "add-missing",
            "update-and-add",
            "remove-removable",
        ]
        default_commands = [
            "remove-removable",
            "update-outdated",
            "add-missing",
        ]
        if command:
            if command in available_commands:
                print(json.dumps([command]))
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 19:05:53 UTC 2025
    - 34.1K bytes
    - Viewed (0)
  6. docs/zh/llm-prompt.md

    2) Address the reader naturally (commonly using “你/你的”).
    
    ### Headings
    
    1) Follow existing Simplified Chinese heading style (short and descriptive).
    2) Do not add trailing punctuation to headings.
    3) If a heading contains only the name of a FastAPI feature, do not translate it.
    
    ### Quotes and punctuation
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 18:49:08 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  7. docs/zh-hant/llm-prompt.md

    2) Address the reader naturally (commonly using “你/你的”).
    
    ### Headings
    
    1) Follow existing Traditional Chinese heading style (short and descriptive).
    2) Do not add trailing punctuation to headings.
    
    ### Quotes and punctuation
    
    1) Keep punctuation style consistent with existing Traditional Chinese docs (they often mix English terms like “FastAPI” with Chinese text).
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 18:49:46 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  8. .github/workflows/pre-commit.yml

            if: env.HAS_SECRETS == 'true'
            run: |
              git config user.name "github-actions[bot]"
              git config user.email "github-actions[bot]@users.noreply.github.com"
              git add -A
              if git diff --staged --quiet; then
                echo "No changes to commit"
              else
                git commit -m "🎨 Auto format"
                git push
              fi
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 23 11:17:16 UTC 2025
    - 3K bytes
    - Viewed (0)
  9. fastapi/_compat/v2.py

        if lenient_issubclass(field_type, BaseModel):
            if field_type in known_models:
                return known_models
            known_models.add(field_type)
            get_flat_models_from_model(field_type, known_models=known_models)
        elif lenient_issubclass(field_type, Enum):
            known_models.add(field_type)
        else:
            get_flat_models_from_annotation(field_type, known_models=known_models)
        return known_models
    
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 19.1K bytes
    - Viewed (0)
  10. docs/de/docs/tutorial/query-params-str-validations.md

    ## Mehr Validierungen hinzufĂĽgen { #add-more-validations }
    
    Sie können auch einen `min_length`-Parameter hinzufügen:
    
    {* ../../docs_src/query_params_str_validations/tutorial003_an_py310.py hl[10] *}
    
    ## Reguläre Ausdrücke hinzufügen { #add-regular-expressions }
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 24 10:28:19 UTC 2025
    - 19.1K bytes
    - Viewed (0)
Back to top