- Sort Score
- Num 10 results
- Language All
Results 121 - 130 of 1,165 for umajin (0.12 seconds)
-
docs/de/docs/advanced/settings.md
Sie könnten beispielsweise eine Datei `config.py` haben mit: {* ../../docs_src/settings/app01_py310/config.py *} Und dann verwenden Sie diese in einer Datei `main.py`: {* ../../docs_src/settings/app01_py310/main.py hl[3,11:13] *} /// tip | Tipp Sie benötigen außerdem eine Datei `__init__.py`, wie in [Größere Anwendungen – mehrere Dateien](../tutorial/bigger-applications.md) gesehen. ///Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 12.5K bytes - Click Count (0) -
docs/ja/docs/deployment/manually.md
``` </div> /// note | 備考 `uvicorn main:app` というコマンドは次を指します: * `main`: ファイル `main.py`(Python の「モジュール」)。 * `app`: `main.py` 内で `app = FastAPI()` により作成されたオブジェクト。 これは次と等価です: ```Python from main import app ``` /// 他の ASGI サーバープログラムでも同様のコマンドがあり、詳細はそれぞれのドキュメントを参照してください。 /// warning | 注意
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 7.8K bytes - Click Count (0) -
docs/zh-hant/docs/advanced/async-tests.md
作為簡單範例,讓我們考慮與[更大型的應用](../tutorial/bigger-applications.md)與[測試](../tutorial/testing.md)中描述的類似檔案結構: ``` . ├── app │ ├── __init__.py │ ├── main.py │ └── test_main.py ``` 檔案 `main.py` 會是: {* ../../docs_src/async_tests/app_a_py310/main.py *} 檔案 `test_main.py` 會包含針對 `main.py` 的測試,現在可能像這樣: {* ../../docs_src/async_tests/app_a_py310/test_main.py *} ## 執行 { #run-it } 如常執行測試: <div class="termy">Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 3.5K bytes - Click Count (0) -
docs/uk/docs/deployment/docker.md
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt # (1)! COPY ./main.py /code/ # (2)! CMD ["fastapi", "run", "main.py", "--port", "80"] ``` 1. Скопіюйте файл `main.py` безпосередньо у директорію `/code` (без будь-якої директорії `./app`). 2. Використовуйте `fastapi run`, щоб обслуговувати ваш застосунок з одного файлу `main.py`.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 44.2K bytes - Click Count (0) -
docs/uk/docs/tutorial/testing.md
Припустимо, у вас є структура файлів, описана в розділі [Bigger Applications](bigger-applications.md): ``` . ├── app │ ├── __init__.py │ └── main.py ``` У файлі `main.py` знаходиться ваш застосунок **FastAPI**: {* ../../docs_src/app_testing/app_a_py310/main.py *} ### Файл тестування { #testing-file }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 8.6K bytes - Click Count (0) -
docs/de/docs/environment-variables.md
```console // Hier setzen wir die Umgebungsvariable noch nicht $ python main.py // Da wir die Umgebungsvariable nicht gesetzt haben, erhalten wir den Defaultwert Hello World from Python // Aber wenn wir zuerst eine Umgebungsvariable erstellen $ export MY_NAME="Wade Wilson" // Und dann das Programm erneut aufrufen $ python main.py // Jetzt kann es die Umgebungsvariable lesen Hello Wade Wilson from Python
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 8.8K bytes - Click Count (0) -
docs/zh/docs/deployment/manually.md
``` </div> /// note | 注意 命令 `uvicorn main:app` 的含义如下: * `main`:指的是 `main.py` 文件(即 Python “模块”)。 * `app`:指的是 `main.py` 文件中通过 `app = FastAPI()` 创建的对象。 它等价于以下导入语句: ```Python from main import app ``` /// 每种 ASGI 服务器程序通常都会有类似的命令,您可以在它们的官方文档中找到更多信息。 /// warning | 警告
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 6.7K bytes - Click Count (0) -
docs/ko/docs/tutorial/testing.md
``` . ├── app │ ├── __init__.py │ └── main.py ``` `main.py` 파일 안에 **FastAPI** app 을 만들었습니다: {* ../../docs_src/app_testing/app_a_py310/main.py *} ### 테스트 파일 { #testing-file } 테스트를 위해 `test_main.py`라는 파일을 생성할 수 있습니다. 이 파일은 동일한 Python 패키지(즉, `__init__.py` 파일이 있는 동일한 디렉터리)에 위치할 수 있습니다. ``` hl_lines="5" . ├── app │ ├── __init__.py │ ├── main.py │ └── test_main.py ```Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 6.8K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/PathScope.java
Set<DependencyScope> dependencyScopes(); PathScope MAIN_COMPILE = pathScope( "main-compile", ProjectScope.MAIN, DependencyScope.COMPILE_ONLY, DependencyScope.COMPILE, DependencyScope.PROVIDED); PathScope MAIN_RUNTIME = pathScope("main-runtime", ProjectScope.MAIN, DependencyScope.COMPILE, DependencyScope.RUNTIME); PathScope TEST_COMPILE = pathScope(
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Jul 10 20:52:34 GMT 2024 - 2.9K bytes - Click Count (0) -
docs/en/docs/advanced/index.md
# Advanced User Guide { #advanced-user-guide } ## Additional Features { #additional-features } The main [Tutorial - User Guide](../tutorial/index.md) should be enough to give you a tour through all the main features of **FastAPI**. In the next sections you will see other options, configurations, and additional features. /// tip The next sections are **not necessarily "advanced"**.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 757 bytes - Click Count (0)