Blog/backend/req_test.py
2024-01-19 00:37:48 +03:00

14 lines
391 B
Python

import requests
# Отправляем GET запрос на сервер
response = requests.get(
'http://localhost:2281',
params={
"command_type": "get",
"method": "getPost",
"command_id": "8",
"contract": "post",
"args": ["post_1"]})
# Выводим ответ от сервера
print('Ответ от сервера:', response.text)