4단계
그래프에 데이터픽셀을 추가하기
- 다큐먼트 확인
- endpoint(URL)
https://pixe.la/v1/users/<username 사용자이름>/graphs/<graphID 그래프 ID>
- header 헤더
headers = {
"X-USER-TOKEN": parameters["token"],
}
- 필수 파라미터
date: 날짜이다. str 타입으로 입력한다.
quantity: 픽셀에 등록할 양이며, 픽셀 한 칸의 강도를 결정한다. str타입으로 입력한다.
- requests.post(url =?, headers=headers, json=?)
url: endpoint(url)를 넣는다.
headers: headers를 넣는다.
json: 파라미터를 넣는다.
pixel_endpoint = f"https://pixe.la/v1/users/{parameters['username']}/graphs/{gragh_parameters['id']}"
headers = {
"X-USER-TOKEN": parameters["token"],
}
pixel_parameters={
"date": "20220929",
"quantity": "1000"
}
response = requests.post(url=pixel_endpoint, headers=headers, json=pixel_parameters)
print(response.text)
>>{"message":"Success.","isSuccess":true}
열어놓은 브라우저를 새로고침하면
https://pixe.la/v1/users/<username 사용자이름>/graphs/<graphID 그래프 ID>
아래와 같이 0929 날짜의 픽셀이 칠해져 나타난 것을 볼 수 있다.
'파이썬 > 파이썬(python) 중급' 카테고리의 다른 글
[37-6 파이썬 ] 7단계 requests.put(), requests.delete() (0) | 2022.09.30 |
---|---|
[37-5 파이썬] 6단계 datetime 모듈, strftime() (0) | 2022.09.30 |
[37-3 파이썬] 3단계 브라우저에서 그래프 보기 (0) | 2022.09.29 |
[37-2 파이썬] 2단계 그래프 정의하기 (0) | 2022.09.29 |
[37-1 파이썬] 1단계 pixela 사용자 계정 생성하기, HTTP Requests(get, post, put, delete) (0) | 2022.09.29 |