더보기
import requests
movie_ids = [
...
]
for movie_id in movie_ids:
response = requests.get(url=f"~")
movie = response.json()
print("------------------------------------")
.
.
.
[배운 점]
- 신기한 파이썬의 세계..
- 함수, 메소드, 모듈의 늪에 빠지기 시작함
'Study > Python' 카테고리의 다른 글
[Python] flask와 웹 스크래퍼와 사이트 제작 (8) | 2024.11.12 |
---|---|
[Python] BeautifulSoup와 딕셔너리(Dictionary) 배우기 (11) | 2024.11.12 |
[Python] while 반복문과 if-elif 배우기 (4) | 2024.11.12 |
[Python] 세금 계산기 만들기 (4) | 2024.11.12 |
[Python] 계산기 만들기 with. replit (4) | 2024.10.22 |