"Python 웹에서 JSON 가져오기"의 두 판 사이의 차이

3번째 줄: 3번째 줄:
;파이썬 인터넷에서 JSON 가져오기
;파이썬 인터넷에서 JSON 가져오기


<syntaxhighlight lang='python'>
<syntaxhighlight lang='python' run>
import requests
import requests
r = requests.get('https://jsonplaceholder.typicode.com/posts/1')
r = requests.get('https://jsonplaceholder.typicode.com/posts/1')

2021년 7월 12일 (월) 10:46 판

1 개요

Python 웹에서 JSON 가져오기
파이썬 인터넷에서 JSON 가져오기
import requests
r = requests.get('https://jsonplaceholder.typicode.com/posts/1')
print( r.status_code )
# 200
print( r.headers['content-type'] )
# application/json; charset=utf8
j = r.json()
print( type(j) )
# <class 'dict'>
print( j )
# {'userId': 1, 'id': 1, 'title': 'sunt aut facere repellat provident occaecati excepturi opti reprehenderit', 'body': 'quia et suscipit\nsuscipit recusandae consequuntur expedita et cumnreprehenderit molestiae ut ut quas totam\nnostrum rerum est autem sunt rem eveniet architeco'}

2 같이 보기

3 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}