- Sort Score
- Result 10 results
- Languages All
Results 151 - 160 of 231 for icon (0.04 sec)
-
docs/es/docs/benchmarks.md
La jerarquía sería: * **Uvicorn**: como servidor ASGI * **Starlette**: (usa Uvicorn) un microframework web * **FastAPI**: (usa Starlette) un microframework API con varias características adicionales para construir APIs, con validación de datos, etc. * **Uvicorn**: * Tendrá el mejor rendimiento, ya que no tiene mucho código extra aparte del propio servidor.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Wed Feb 07 11:39:50 UTC 2024 - 3.9K bytes - Viewed (0) -
docs/tr/docs/features.md
### Kısa Her şey için mantıklı bir **varsayılanı** var. Parametrelerini opsiyonel olarak tanımlayıp API'nı istediğin gibi modifiye edebilirsin. Hepsi varsayılan olarak **çalışıyor**. ### Doğrulama * Neredeyse bütün (ya da hepsi?) Python **data typeları** için doğrulama, kapsadıkları: * JSON objeleri (`dict`).
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 11.1K bytes - Viewed (0) -
docs/tr/docs/advanced/index.md
Belki de öğrenme tarzınıza daha iyi uyduğu için başka kursları tercih edebilirsiniz.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 1.9K bytes - Viewed (0) -
docs/es/docs/how-to/graphql.md
Puedes combinar *operaciones de path* regulares de la library de FastAPI con GraphQL en la misma aplicación. /// tip | Consejo **GraphQL** resuelve algunos casos de uso específicos. Tiene **ventajas** y **desventajas** cuando lo comparas con **APIs web** comunes.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 3.5K bytes - Viewed (0) -
docs/es/docs/tutorial/query-params.md
``` http://127.0.0.1:8000/items/?skip=0&limit=10 ``` ...los parámetros de query son: * `skip`: con un valor de `0` * `limit`: con un valor de `10` Dado que son parte de la URL son strings "naturalmente". Pero cuando los declaras con tipos de Python (en el ejemplo arriba, como `int`) son convertidos a ese tipo y son validados con él. Todo el proceso que aplicaba a los parámetros de path también aplica a los parámetros de query:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 5.1K bytes - Viewed (0) -
internal/event/target/nats_tls_contrib_test.go
}, Subject: "test", Secure: true, CertAuthority: path.Join("testdata", "contrib", "certs", "root_ca_cert.pem"), } con, err := clientConfig.connectNats() if err != nil { t.Errorf("Could not connect to nats: %v", err) } defer con.Close() } func TestNatsConnTLSClientAuthorization(t *testing.T) {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 2.1K bytes - Viewed (0) -
docs/tr/docs/deployment/cloud.md
# FastAPI Uygulamasını Bulut Sağlayıcılar Üzerinde Yayınlama FastAPI uygulamasını yayınlamak için hemen hemen **herhangi bir bulut sağlayıcıyı** kullanabilirsiniz. Büyük bulut sağlayıcıların çoğu FastAPI uygulamasını yayınlamak için kılavuzlara sahiptir. ## Bulut Sağlayıcılar - Sponsorlar
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue May 28 14:05:55 UTC 2024 - 1.3K bytes - Viewed (0) -
docs/tr/docs/tutorial/path-params.md
Bu sayede, **FastAPI**'ın bizzat kendisi <a href="http://127.0.0.1:8000/redoc" class="external-link" target="_blank">http://127.0.0.1:8000/redoc</a> sayfasından erişebileceğiniz alternatif (ReDoc kullanan) bir API dokümantasyonu sağlar: <img src="/img/tutorial/path-params/image02.png">
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 10.8K bytes - Viewed (0) -
docs/tr/docs/tutorial/first-steps.md
Ayrıca, API'ınızla iletişim kuracak önyüz, mobil veya IoT uygulamaları gibi istemciler için otomatik olarak kod oluşturabilirsiniz. ## Adım Adım Özetleyelim ### Adım 1: `FastAPI`yı Projemize Dahil Edelim ```Python hl_lines="1" {!../../docs_src/first_steps/tutorial001.py!} ``` `FastAPI`, API'niz için tüm işlevselliği sağlayan bir Python sınıfıdır. /// note | "Teknik Detaylar"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 10.5K bytes - Viewed (0) -
docs/tr/docs/tutorial/static-files.md
* Bir `StaticFiles()` örneğini belirli bir yola bağlayın. ```Python hl_lines="2 6" {!../../docs_src/static_files/tutorial001.py!} ``` /// note | "Teknik Detaylar" Projenize dahil etmek için `from starlette.staticfiles import StaticFiles` kullanabilirsiniz.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 1.8K bytes - Viewed (0)