- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 39 for read_url (0.17 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
docs/en/docs/alternatives.md
```Python response = requests.get("http://example.com/some/url") ``` The FastAPI counterpart API *path operation* could look like: ```Python hl_lines="1" @app.get("/some/url") def read_url(): return {"message": "Hello World"} ``` See the similarities in `requests.get(...)` and `@app.get(...)`. /// check | Inspired **FastAPI** to * Have a simple and intuitive API.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 22.2K bytes - Click Count (0) -
docs/zh/docs/alternatives.md
它的用法非常简单。例如,进行一次 `GET` 请求,你会这样写: ```Python response = requests.get("http://example.com/some/url") ``` 对应地,FastAPI 的 API 路径操作可能看起来是这样的: ```Python hl_lines="1" @app.get("/some/url") def read_url(): return {"message": "Hello World"} ``` 可以看到 `requests.get(...)` 与 `@app.get(...)` 的相似之处。 /// check | 启发 **FastAPI**: * 提供简单直观的 API。 * 直接、自然地使用 HTTP 方法名(操作)。 * 具备合理默认值,同时支持强大定制能力。
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 20.1K bytes - Click Count (0) -
docs/zh-hant/docs/alternatives.md
用法非常簡單。例如,發出一個 `GET` 請求,你會寫: ```Python response = requests.get("http://example.com/some/url") ``` 相對地,FastAPI 的 API 路徑操作(path operation)可能像這樣: ```Python hl_lines="1" @app.get("/some/url") def read_url(): return {"message": "Hello World"} ``` 看看 `requests.get(...)` 與 `@app.get(...)` 的相似之處。 /// check | 啟發 **FastAPI** * 擁有簡單直觀的 API。 * 直接使用 HTTP 方法名稱(操作),以直接、直觀的方式表達。 * 具備合理的預設值,同時提供強大的自訂能力。
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 20K bytes - Click Count (0) -
docs/ja/docs/alternatives.md
使い方はとても簡単です。例えば、`GET`リクエストを実行するには、このように書けば良いです: ```Python response = requests.get("http://example.com/some/url") ``` 対応するFastAPIのAPIのpath operationはこのようになります: ```Python hl_lines="1" @app.get("/some/url") def read_url(): return {"message": "Hello World"} ``` `requests.get(...)` と`@app.get(...)` には類似点が見受けられます。 /// check | **FastAPI**へ与えたインスピレーション * シンプルで直感的なAPIを持っている点。 * HTTPメソッド名を直接利用し、単純で直感的である。
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 30.6K bytes - Click Count (0) -
docs/tr/docs/alternatives.md
```Python response = requests.get("http://example.com/some/url") ``` Buna karşılık bir FastAPI API *path operation*’ı şöyle olabilir: ```Python hl_lines="1" @app.get("/some/url") def read_url(): return {"message": "Hello World"} ``` `requests.get(...)` ile `@app.get(...)` arasındaki benzerliklere bakın. /// check | **FastAPI**'a ilham olan * Basit ve sezgisel bir API’ya sahip olmak.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 24K bytes - Click Count (0) -
docs/ru/docs/alternatives.md
```Python response = requests.get("http://example.com/some/url") ``` Соответствующая в FastAPI API-операция пути могла бы выглядеть так: ```Python hl_lines="1" @app.get("/some/url") def read_url(): return {"message": "Hello World"} ``` Посмотрите, насколько похожи `requests.get(...)` и `@app.get(...)`. /// check | Вдохновило **FastAPI** на * Иметь простой и понятный API.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:56:20 GMT 2026 - 37.1K bytes - Click Count (0) -
docs/fr/docs/alternatives.md
```Python response = requests.get("http://example.com/some/url") ``` L’opération de chemin d'accès correspondante dans **FastAPI** pourrait ressembler à ceci : ```Python hl_lines="1" @app.get("/some/url") def read_url(): return {"message": "Hello World"} ``` Notez les similitudes entre `requests.get(...)` et `@app.get(...)`. /// check | A inspiré **FastAPI** à * Avoir une API simple et intuitive.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 26.6K bytes - Click Count (0) -
docs/de/docs/alternatives.md
```Python response = requests.get("http://example.com/some/url") ``` Die entsprechende *Pfadoperation* der FastAPI-API könnte wie folgt aussehen: ```Python hl_lines="1" @app.get("/some/url") def read_url(): return {"message": "Hello World"} ``` Sehen Sie sich die Ähnlichkeiten in `requests.get(...)` und `@app.get(...)` an. /// check | Inspirierte **FastAPI**
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 26K bytes - Click Count (0) -
docs/ko/docs/alternatives.md
```Python response = requests.get("http://example.com/some/url") ``` 이에 대응하는 FastAPI의 API *경로 처리*는 다음과 같이 보일 수 있습니다: ```Python hl_lines="1" @app.get("/some/url") def read_url(): return {"message": "Hello World"} ``` `requests.get(...)`와 `@app.get(...)`의 유사성을 확인해 보세요. /// check | **FastAPI**에 영감을 준 것 * 단순하고 직관적인 API를 갖기.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 26.3K bytes - Click Count (0) -
compat/maven-compat/src/test/java/org/apache/maven/artifact/resolver/TestMavenWorkspaceReader.java
import org.eclipse.aether.repository.WorkspaceRepository; public class TestMavenWorkspaceReader implements MavenWorkspaceReader { static final String REPO_LAYOUT = "test"; static final String REPO_URL = "https://test/me"; static final String REPO_ID = "custom"; static final String GROUP_ID = "org.apache.maven"; static final String ARTIFACT_ID = "this.is.a.test";Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.6K bytes - Click Count (0)