- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 637 for Pythons (0.03 sec)
-
docs/ru/docs/tutorial/extra-models.md
Поэтому, если мы создадим Pydantic-объект `user_in` таким способом: ```Python user_in = UserIn(username="john", password="secret", email="******@****.***") ``` и затем вызовем: ```Python user_dict = user_in.dict() ``` то теперь у нас есть `dict` с данными модели в переменной `user_dict` (это `dict` вместо объекта Pydantic-модели). И если мы вызовем: ```Python print(user_dict) ```
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Sep 30 11:24:39 UTC 2025 - 11.5K bytes - Viewed (0) -
docs/de/docs/tutorial/debugging.md
<div class="termy"> ```console $ python myapp.py ``` </div> aber nicht aufgerufen wird, wenn eine andere Datei sie importiert, wie in: ```Python from myapp import app ``` #### Weitere Details { #more-details } Angenommen, Ihre Datei heißt `myapp.py`. Wenn Sie sie mit folgendem Befehl ausführen: <div class="termy"> ```console $ python myapp.py ``` </div>
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 2.7K bytes - Viewed (0) -
docs/en/docs/async.md
## `async` and `await` { #async-and-await } Modern versions of Python have a very intuitive way to define asynchronous code. This makes it look just like normal "sequential" code and do the "awaiting" for you at the right moments. When there is an operation that will require waiting before giving the results and has support for these new Python features, you can code it like: ```Python burgers = await get_burgers(2) ```Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sun Aug 31 09:56:21 UTC 2025 - 24K bytes - Viewed (0) -
docs/pt/docs/tutorial/extra-models.md
Então, se criarmos um objeto Pydantic `user_in` como: ```Python user_in = UserIn(username="john", password="secret", email="******@****.***") ``` e depois chamarmos: ```Python user_dict = user_in.dict() ``` agora temos um `dict` com os dados na variável `user_dict` (é um `dict` em vez de um objeto de modelo Pydantic). E se chamarmos: ```Python print(user_dict) ``` teríamos um `dict` Python com:
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Nov 12 16:23:57 UTC 2025 - 7.5K bytes - Viewed (0) -
docs/pt/docs/virtual-environments.md
<div class="termy"> ```console $ which python /home/user/code/awesome-project/.venv/bin/python ``` </div> Se ele mostrar o binário `python` em `.venv/bin/python`, dentro do seu projeto (neste caso `awesome-project`), então funcionou. 🎉 //// //// tab | Windows PowerShell <div class="termy"> ```console $ Get-Command python
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Dec 16 20:32:40 UTC 2025 - 23.7K bytes - Viewed (0) -
docs/es/docs/virtual-environments.md
<div class="termy"> ```console $ which python /home/user/code/awesome-project/.venv/bin/python ``` </div> Si muestra el binario de `python` en `.venv/bin/python`, dentro de tu proyecto (en este caso `awesome-project`), entonces funcionó. 🎉 //// //// tab | Windows PowerShell <div class="termy"> ```console $ Get-Command python
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Dec 16 16:33:45 UTC 2025 - 23.3K bytes - Viewed (0) -
docs/ru/docs/alternatives.md
Именно поэтому на официальном сайте сказано: > Requests — один из самых загружаемых Python-пакетов всех времён Пользоваться им очень просто. Например, чтобы сделать запрос `GET`, вы бы написали: ```Python response = requests.get("http://example.com/some/url") ``` Соответствующая в FastAPI API-операция пути могла бы выглядеть так: ```Python hl_lines="1" @app.get("/some/url") def read_url():
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Oct 11 17:48:49 UTC 2025 - 38.5K bytes - Viewed (0) -
docs/fr/docs/tutorial/debugging.md
<div class="termy"> ```console $ python myapp.py ``` </div> mais qui n'est pas appelé lorsqu'un autre fichier l'importe, comme dans : ```Python from myapp import app ``` #### Pour davantage de détails Imaginons que votre fichier s'appelle `myapp.py`. Si vous l'exécutez avec : <div class="termy"> ```console $ python myapp.py ``` </div>
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sun Oct 27 17:31:14 UTC 2024 - 2.9K bytes - Viewed (0) -
docs/pt/docs/tutorial/debugging.md
<div class="termy"> ```console $ python myapp.py ``` </div> mas não é chamado quando outro arquivo o importa, como em: ```Python from myapp import app ``` #### Mais detalhes { #more-details } Digamos que seu arquivo se chama `myapp.py`. Se você executá-lo com: <div class="termy"> ```console $ python myapp.py ``` </div>
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 2.7K bytes - Viewed (0) -
docs/uk/docs/index.md
Ви робите це за допомогою стандартних сучасних типів Python. Вам не потрібно вивчати новий синтаксис, методи чи класи конкретної бібліотеки тощо. Використовуючи стандартний **Python**. Наприклад, для `int`: ```Python item_id: int ``` або для більш складної моделі `Item`: ```Python item: Item ``` ...і з цим єдиним оголошенням Ви отримуєте:
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Oct 11 17:48:49 UTC 2025 - 24.2K bytes - Viewed (0)