Answers for "--output curl in Python"

8

Curl in python

import requests

headers = {
    'Content-type': 'application/json',
}

data = '{"text":"Hello, World!"}'

response = requests.post('https://hooks.slack.com/services/asdfasdfasdf', headers=headers, data=data)
Posted by: Guest on June-05-2020

Python Answers by Framework

Browse Popular Code Answers by Language