일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 자바스크립트
- ci/cd
- docker
- GlobalStyle
- Recoil
- mysqlclient
- 롤
- route53
- e.preventDefault()
- liunx
- Object.freeze()
- e.stopPropagation()
- AWS
- styled-component
- typeorm
- Python
- 카카오 로그인
- s3
- code-server
- Django
- nestjs
- Github Actions
- 리액트
- requests
- CloudFront
- React
- riotapi
- ACM
- 배포
- 전역스타일
- Today
- Total
목록requests (2)
군붕이의 메모장
라이엇에서 제공하는 소환사 아이콘 이미지를 다운로드 할려고 한다. 하지만 라이엇에서 제공하는 아이콘은 약 2800개 정도로 일일히 다운로드 하는것은 불가능했다. 그래서 python 에서 제공하는 request 모듈을 사용하여 사진 자동저장을 제작했다. ● 롤 프로필 아이콘 리스트 가져오기 Json Link : ddragon.leagueoflegends.com/cdn/11.4.1/data/en_US/profileicon.json 우선 프로필 아이콘의 id 와 json 에서 반환해주는 data 내의 key 값이 동일한점을 참고한다. import requests def getIconId(url): req = requests.get(url).json()['data'] iconIdList = list(req.ke..
● Riot API 발급받기 우선 riot 개발자 페이지에 접속해야한다. URL : developer.riotgames.com/ Riot Developer Portal About the Riot Games API With this site we hope to provide the League of Legends developer community with access to game data in a secure and reliable way. This is just part of our ongoing effort to respond to players' and developers' requests for data and developer.riotgames.com 접속후 상단 Login 을 눌러 본인의 리..