import requests
url = 'https://api.bitfinex.com/v1/pubticker/btcusd'
response = requests.get(url)
response.status_code
response.text
print(response.text)
'Phython' 카테고리의 다른 글
beautifulsoup에서 링크만 빼는법 (0) | 2019.05.28 |
---|---|
시놀리지에서 vpn client 사용하는 방법 (0) | 2019.05.28 |
python 글로벌 변수 메소드에서 사용방법 (0) | 2019.05.21 |
파이썬에서 텔레그램 메세지 에코 (0) | 2019.05.21 |
파이썬 simple json 파싱 (0) | 2019.05.17 |