Requests (1) 썸네일형 리스트형 [RestAPI] Python에서 RestAPI 사용하기 Python에서 RestAPI 사용 Python에서 RestAPI를 사용하는 방법은 requests 모듈을 사용하는것이다. requests를 사용하면 RestAPI의 메서드들을 사용할 수 있다. GET import requests # GET 요청 response = requests.get('https://api.example.com/users') if response.status_code == 200: data = response.json() # JSON 형식의 응답 데이터를 파이썬 객체로 변환 print(data) else: print('Error:', response.status_code) POST import requests # POST 요청 payload = {'username': 'john', .. 이전 1 다음