- Sort Score
- Result 10 results
- Languages All
Results 291 - 300 of 318 for xHello (0.08 sec)
-
docs/en/docs/virtual-environments.md
<div class="termy"> ```console $ python main.py Hello World ``` </div> ## Configure Your Editor
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Aug 24 03:16:23 UTC 2024 - 21.7K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/URLConnectionTest.kt
Request( url = server.url("/"), body = "Hello".toRequestBody(null), ), ) assertThat(response.code).isEqualTo(200) assertThat(readAscii(response.body.byteStream(), Int.MAX_VALUE)) .isEqualTo("Body") val request1 = server.takeRequest() assertThat(request1.body.readUtf8()).isEqualTo("Hello") val request2 = server.takeRequest()
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Jan 20 10:30:28 UTC 2024 - 131.7K bytes - Viewed (0) -
docs/em/docs/deployment/docker.md
* โ ๐ ๐ `__init__.py`. * โ `main.py` ๐ โฎ๏ธ: ```Python from typing import Union from fastapi import FastAPI app = FastAPI() @app.get("/") def read_root(): return {"Hello": "World"} @app.get("/items/{item_id}") def read_item(item_id: int, q: Union[str, None] = None): return {"item_id": item_id, "q": q} ``` ### ๐ ๐ ๐ ๐ ๐ โ ๐ `Dockerfile` โฎ๏ธ:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Aug 12 21:47:53 UTC 2024 - 27.9K bytes - Viewed (0) -
docs/pt/docs/virtual-environments.md
Depois de ativar o ambiente virtual, vocรช pode executar seu programa, e ele usarรก o Python dentro do seu ambiente virtual com os pacotes que vocรช instalou lรก. <div class="termy"> ```console $ python main.py Hello World ``` </div> ## Configure seu editor
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Sep 10 10:37:13 UTC 2024 - 22.6K bytes - Viewed (0) -
tests/test_path.py
from .main import app client = TestClient(app) def test_text_get(): response = client.get("/text") assert response.status_code == 200, response.text assert response.json() == "Hello World" def test_nonexistent(): response = client.get("/nonexistent") assert response.status_code == 404, response.text assert response.json() == {"detail": "Not Found"} def test_path_foobar():
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Apr 18 19:40:57 UTC 2024 - 34.4K bytes - Viewed (0) -
docs/em/docs/alternatives.md
```Python response = requests.get("http://example.com/some/url") ``` FastAPI ๐ ๐ ๏ธ *โก ๐ ๏ธ* ๐ช ๐ ๐: ```Python hl_lines="1" @app.get("/some/url") def read_url(): return {"message": "Hello World"} ``` ๐ ๐ `requests.get(...)` & `@app.get(...)`. /// check | "๐ฎ **FastAPI** " * โ๏ธ ๐ & ๐๏ธ ๐ ๏ธ. * โ๏ธ ๐บ๐ธ๐ ๐ฉโ๐ฌ ๐ (๐ ๏ธ) ๐, ๐ฏ & ๐๏ธ ๐. * โ๏ธ ๐ค ๐ข, โ๏ธ ๐๏ธ ๐. ///
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 20 19:20:23 UTC 2024 - 18.7K bytes - Viewed (0) -
docs/pt/docs/alternatives.md
``` A contra-parte da aplicaรงรฃo FastAPI, *rota de operaรงรฃo*, poderia parecer como: ```Python hl_lines="1" @app.get("/some/url") def read_url(): return {"message": "Hello World"} ``` Veja as similaridades em `requests.get(...)` e `@app.get(...)`. /// check | "**FastAPI** inspirado para" * Ter uma API simples e intuitiva.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 20 19:20:23 UTC 2024 - 25.5K bytes - Viewed (0) -
src/main/resources/suggest_indices/suggest_analyzer.json
"bromfiets=>bromfiets", "ei=>eier", "kind=>kinder" ] }, "english_keywords": { "type": "keyword_marker", "keywords": ["hello"] }, "finnish_stop": { "type": "stop", "stopwords": "_finnish_" }, "finnish_keywords": { "type": "keyword_marker",
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu May 23 05:09:51 UTC 2019 - 57.7K bytes - Viewed (0) -
doc/go1.17_spec.html
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Oct 10 18:25:45 UTC 2024 - 211.6K bytes - Viewed (0) -
docs/en/docs/deployment/docker.md
* Create a `main.py` file with: ```Python from typing import Union from fastapi import FastAPI app = FastAPI() @app.get("/") def read_root(): return {"Hello": "World"} @app.get("/items/{item_id}") def read_item(item_id: int, q: Union[str, None] = None): return {"item_id": item_id, "q": q} ``` ### Dockerfile
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Wed Sep 18 16:09:57 UTC 2024 - 28.5K bytes - Viewed (0)