2021. 5. 11. 11:50ㆍData science
Application Programming Interface

REST APIs (REpresentational State Tranfer)

HTTP methods: transmitting data over the internet. (HTTP messages usually contains a Json File)
1) Client request with HTTP file
2) The operation is transmitted to the Web Service via the internet
3) The service performs the operation.
4) Web Service returns a response via an HTTP message(information is returned via json file)

CryptoCurrency data
PyCoinGecko for CoinGecko API: python client by Christoforou Emanouil
1) install and import the library
2) create an object
3) use the function to request our data (data on bitcoin, us dollars for last 30 days in this case)
->Returned data : JSON expressed as a python dictionary of nested file

To make things simple - convert the nested list to a Data Frame
API Keys and Endpoints : These will give the access to the API
'Data science' 카테고리의 다른 글
[CS50x] Lecture 1. (0) | 2021.05.14 |
---|---|
[IBM]What is Data Science? -My thoughts (0) | 2021.05.12 |
[Oracle_Java] Java SE: Programming Complete 2. Primitive Type, Operators, and Flow Control Statements. (0) | 2021.03.31 |
[빅분기] 1과목 1장 4 빅데이터 조직 및 인력 (0) | 2021.03.30 |
[빅분기] 1과목 1장 3 빅데이터 산업의 이해 (0) | 2021.03.30 |