“преобразовать из Python в Curl” Ответ

Как сделать Curl -запрос Python

import pycurl
import StringIO

response = StringIO.StringIO()
c = pycurl.Curl()
c.setopt(c.URL, 'https://www.googleapis.com/qpxExpress/v1/trips/search?key=mykeyhere')
c.setopt(c.WRITEFUNCTION, response.write)
c.setopt(c.HTTPHEADER, ['Content-Type: application/json','Accept-Charset: UTF-8'])
c.setopt(c.POSTFIELDS, '@request.json')
c.perform()
c.close()
print response.getvalue()
response.close()
Blue Buzzard

преобразовать из Python в Curl

import sys

test_str = str(sys.argv)
# printing original string 
res = ''.join(format(ord(i), '08b') for i in test_str)
# printing result 
#print(str(res))#binary
print(str(test_str))#base64
Outrageous Okapi

преобразовать из Python в Curl

import requests
import json

headers = {
    'Content-Type': 'application/json'
}

data = {'keyword': '10256.netify.ubuntu'}
data = json.dumps(data)
response = requests.post('http://127.0.0.1:5000/output', headers=headers, data=data)
print(json.loads(response.content))
Charming Centipede

преобразовать из Python в Curl

import sys

test_str = str(sys.argv)
# printing original string 
res = ''.join(format(ord(i), '08b') for i in test_str)
# printing result 
#print(str(res))#binary
print(str(test_str))#base64
Outrageous Okapi

преобразовать из Python в Curl

import requests

url = "https://api.green-api.com/waInstance{{idInstance}}/sendFileByUpload/{{apiTokenInstance}}"

payload = {'chatId': '79001234567@c.us',
'caption': 'Описание'}
files = [
  ('file', open('/C:/window.jpg','rb'))
]
headers= {}

response = requests.request("POST", url, headers=headers, data = payload, files = files)

print(response.text.encode('utf8'))
Adventurous Anaconda

Ответы похожие на “преобразовать из Python в Curl”

Вопросы похожие на “преобразовать из Python в Curl”

Больше похожих ответов на “преобразовать из Python в Curl” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования