일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- SW Expert Academy
- programmers
- C++
- 백준
- Spring JPA
- 회귀
- spotify
- SWEA
- 프로그래머스
- Spotify Api
- java
- Gem
- Computer Science
- 파이썬
- 스포티파이
- regression
- 회원가입
- MYSQL
- Spring
- c
- Baekjoon
- SECS/GEM
- 비트겟
- SECS
- spring boot
- 자바
- CS
- modern c++
- python
- SECS-II
Archives
- Today
- Total
비버놀로지
[Spotify 스포티파이] 4. Spotify Data 추출 본문
728x90
from spotipy.oauth2 import SpotifyClientCredentials
import spotipy
import pprint
client_id = "YOUR_CLIENT_ID"
client_secret = "YOUR_CLIENT_SECRET"
client_credentials_manager = SpotifyClientCredentials(client_id=client_id, client_secret=client_secret)
sp = spotipy.Spotify(client_credentials_manager=client_credentials_manager)
위의 코드는 Spotipy WEB API를 사용함에 있어 필수적인 코드이다.
Spotify OPEN API를 사용할 때에는 위의 코드는 항상 적어줘야 한다.
그리고 특정 가수의 ID와 이미지 등등 다양한 정보를 추출을 해야한다.
result = sp.search("coldplay", limit=1, type='artist')
pprint.pprint(result)
위의 코드를 작성할 경우, "coldeplay" 라는 가수에 대한 정보를 추출하게 된다.
그 결과는 아래와 같다.
그리고 이중에서 "coldplay"의 아이디와 이미지를 추출하기 위해서 아래의 코드를 추가해 준다.
id = result['artists']['items'][0]['id']
image = result['artists']['items'][0]['images'][0]['url']
pprint.pprint(id)
pprint.pprint(image)
위의 코드를 추가해서 작성할 경우 아래와 같은 결과를 출력해 준다.
이렇게 해당 가수에 대한 정보를 따로 추출할 수도 있고, 그에따른 활용까지도 가능하다.
728x90
'OPEN API 활용' 카테고리의 다른 글
[Spotify 스포티파이] 6. Spring Boot 기본 Code (0) | 2021.03.25 |
---|---|
[Spotify 스포티파이] 5. Spring Boot 사전준비 (0) | 2021.03.25 |
[Spotify 스포티파이] 3. Spotify OPEN API 특정 artist의 top 10 playlist 가져오기 (0) | 2021.03.09 |
[Spotify 스포티파이] 2. Spotify OPEN API 환경준비 (0) | 2021.03.09 |
[Spotify 스포티파이] 1. Spotify OPEN API 가입 (0) | 2021.03.09 |
Comments