/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/python/lab-1133-004/main.py
20 строк
445 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
import requests # --- GET --- r = requests.get( "https://jsonplaceholder.typicode.com/posts/1", timeout=10, ) r.raise_for_status() data = r.json() print("Заголовок:", data["title"]) # --- POST JSON --- r = requests.post( "https://jsonplaceholder.typicode.com/posts", json={"title": "hello", "body": "text", "userId": 1}, timeout=10, ) r.raise_for_status() created = r.json() print("Новый id:", created["id"])