- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 15 for Modul (0.18 seconds)
-
docs/de/llm-prompt.md
``` ## Another module with `APIRouter` { #another-module-with-apirouter } ``` Translate with (German): ``` ## Ein weiteres Modul mit `APIRouter` { #another-module-with-apirouter } ``` Do NOT translate with (German) – notice the added period: ``` ## Ein weiteres Modul mit `APIRouter`. { #another-module-with-apirouter } ```Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Mon Dec 29 18:54:20 GMT 2025 - 9.8K bytes - Click Count (0) -
docs/de/docs/deployment/manually.md
``` </div> /// note | Hinweis Der Befehl `uvicorn main:app` bezieht sich auf: * `main`: die Datei `main.py` (das Python-„Modul“). * `app`: das Objekt, das innerhalb von `main.py` mit der Zeile `app = FastAPI()` erstellt wurde. Es ist äquivalent zu: ```Python from main import app ``` ///
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 7.3K bytes - Click Count (0) -
docs/de/docs/tutorial/bigger-applications.md
* Es enthält eine Datei `app/main.py`. Da sie sich in einem Python-Package (einem Verzeichnis mit einer Datei `__init__.py`) befindet, ist sie ein „Modul“ dieses Packages: `app.main`. * Es gibt auch eine Datei `app/dependencies.py`, genau wie `app/main.py` ist sie ein „Modul“: `app.dependencies`. * Es gibt ein Unterverzeichnis `app/routers/` mit einer weiteren Datei `__init__.py`, es handelt sich also um ein „Python-Subpackage“: `app.routers`.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 21.9K bytes - Click Count (0) -
docs/tr/docs/tutorial/testing.md
/// ## Testleri Ayırma { #separating-tests } Gerçek bir uygulamada testlerinizi büyük ihtimalle farklı bir dosyada tutarsınız. Ayrıca **FastAPI** uygulamanız birden fazla dosya/modül vb. ile de oluşturulmuş olabilir. ### **FastAPI** Uygulama Dosyası { #fastapi-app-file } [Daha Büyük Uygulamalar](bigger-applications.md)'te anlatılan şekilde bir dosya yapınız olduğunu varsayalım: ``` . ├── appCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 6.3K bytes - Click Count (0) -
docs/de/docs/virtual-environments.md
Um eine virtuelle Umgebung zu erstellen, können Sie das `venv`-Modul verwenden, das mit Python geliefert wird. <div class="termy"> ```console $ python -m venv .venv ``` </div> /// details | Was dieser Befehl bedeutet * `python`: das Programm namens `python` verwenden * `-m`: ein Modul als Skript aufrufen, wir geben als nächstes an, welches Modul
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 24.8K bytes - Click Count (0) -
docs/tr/docs/editor-support.md
## Özellikler { #features }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:51:35 GMT 2026 - 2.5K bytes - Click Count (0) -
docs/de/docs/tutorial/debugging.md
Daher wird der Abschnitt: ```Python uvicorn.run(app, host="0.0.0.0", port=8000) ``` ausgeführt. --- Dies wird nicht passieren, wenn Sie das Modul (die Datei) importieren. Wenn Sie also eine weitere Datei `importer.py` mit folgendem Inhalt haben: ```Python from myapp import app # Hier mehr Code ```Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 2.7K bytes - Click Count (0) -
docs/de/docs/tutorial/security/index.md
/// ## **FastAPI** Tools { #fastapi-utilities } FastAPI stellt für jedes dieser Sicherheitsschemas im Modul `fastapi.security` verschiedene Tools bereit, die die Verwendung dieser Sicherheitsmechanismen vereinfachen.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 07:57:30 GMT 2026 - 5.2K bytes - Click Count (0) -
docs/tr/docs/how-to/migrate-from-pydantic-v1-to-pydantic-v2.md
Bundan sonra testleri çalıştırıp her şeyin çalışıp çalışmadığını kontrol edebilirsiniz. Çalışıyorsa işiniz biter. 😎 ## v2 İçinde Pydantic v1 { #pydantic-v1-in-v2 } Pydantic v2, `pydantic.v1` adlı bir alt modül olarak Pydantic v1'in tamamını içerir. Ancak bu yapı, Python 3.13'ün üzerindeki sürümlerde artık desteklenmemektedir.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 6K bytes - Click Count (0) -
docs/de/docs/tutorial/testing.md
``` hl_lines="5" . ├── app │ ├── __init__.py │ ├── main.py │ └── test_main.py ``` Da sich diese Datei im selben Package befindet, können Sie relative Importe verwenden, um das Objekt `app` aus dem `main`-Modul (`main.py`) zu importieren: {* ../../docs_src/app_testing/app_a_py310/test_main.py hl[3] *} ... und haben den Code für die Tests wie zuvor. ## Testen: erweitertes Beispiel { #testing-extended-example }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 6.6K bytes - Click Count (0)