14 lines
391 B
Python
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)
|