로메오의 블로그

[Python] requests 본문

Backend/Python & Blockchain

[Python] requests

romeoh 2022. 11. 17. 10:05
반응형

PYTHON 차례

 

requests 설치

$ pip install requests

 

 

call.py

import requests

def call():
    headers = {
      'Content-Type' : 'application/x-www-form-urlencoded'
    }
    payload = {
      'id': 'foo',
      'name': 'bar'
    }
    url = 'https://domain.com'
    response = requests.post(url, headers=headers, data=payload)
    print(response)

call()

 

 

코드 실행

$ python3 call.py

 

 

 

 

PYTHON 차례

반응형
Comments