일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- drf
- 라이엇
- 그리디알고리즘
- Riot
- 알고리즘
- java
- 프로그래머스
- sort
- greedy
- 리그오브레전드
- 자바
- SQL
- 백준
- 탐욕알고리즘
- python
- 파이썬
- 스파르타내일배움캠프TIL
- programmers
- API
- 롤
- 코딩테스트준비
- 스파르타내일배움캠프
- 그리디
- lol
- Django
- 장고
- 코딩테스트
- git
- github
- 내일배움캠프
- Today
- Total
목록분류 전체보기 (121)
Lina's Toolbox
나를 정말 괴롭혔던 이녀석...1. Model 확인 아니 분명히 blank=True, null=True로 되어있는데 parent_id의 not null 제약조건에 걸린다고;; 2. views.py 확인# 예시: parent_comment가 없을 경우 명시적으로 None으로 설정def create_comment(request, article_id): article = get_object_or_404(Articles, id=article_id) parent_comment_id = request.POST.get('parent_comment') if parent_comment_id: parent_comment = get_object_or_404(Comments, id=pare..
puuid로 챔피언 마스터리 정보 불러오기 https://developer.riotgames.com/apis#champion-mastery-v4 Riot Developer Portal developer.riotgames.com챔피언 숙련도 관련 정보는 여기서 얻을 수 있다!나는 puuid를 통해 상위 n개의 선호 챔피언 정보를 가져오는/lol/champion-mastery/v4/champion-masteries/by-puuid/{encryptedPUUID}/top를 사용했다. 리턴 값이 꽤 많은데, 사실 내가 사용할 건 championId 딱 하나다. 😅 account-v1를 통해 조회한 인코딩된 puuid를 입력하고,내가 보고싶은 상위 선호 챔피언의 갯수(count)를 적고 Api key 선택 후 요..
1. puuid로 matchId 구하기나는 소환사가 주로 플레이하는, 선호하는 포지션(라인) 정보를 가져오기를 원했다.그런데 지금 Secret Client를 발급을 못받았기 때문에 RSO가 불가능한 상황인데, 이상하게 지금 공식 docs에는 매치정보는 RSO로 조회하는 것밖에 없다..ㅠㅠ 그래서 포기해야하나.. 하다가 그냥 Endpoint를 내맘대로 작성해봤는데,ㅋㅋㅋㅋㅋ아닠ㅋㅋ혹시나 해서 https://asia.api.riotgames.com/lol/match/v5/matches/by-puuid/{puuid}/ids?api_key={api_key} 이렇게 해봤더니 진짜 된다!!!그래서 신나게 이걸 이용했다! 파이썬 코드def get_match_ids(api_key, puuid): """PUUID로..
SummonerID로 소환사의 리그 관련 정보 불러오기 https://developer.riotgames.com/apis#league-v4/GET_getLeagueEntriesForSummoner Riot Developer Portal developer.riotgames.com /lol/league/v4/entries/by-summoner/{encryptedSummonerId} 을 이용해보겠다. Return Value이 전 포스팅까지 썼던 api에 비해, 리턴 밸류가 많은 편인 걸 볼 수 있다. queueType솔로랭크인지, 자유 랭크인지 등의 랭크 타입을 나타낸다.hotSteak해당 유저가 최근에 연승 중일 경우 True veteran이 값은 소환사가 얼마나 많은 게임을 플레이했는지. 일반적으로 많은..
https://kimwoolina.tistory.com/136 [RIOT API] 라이엇 API 사용하는법 1. Production API Key 발급 받기 / 라이엇 계정으로 로그인(RSO)? - Secret C먼저 개발자 API key 를 발급받자.https://developer.riotgames.com/ Riot Developer PortalAbout 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. Thikimwoolina.tistory.comhttps://kimwoolina.tis..
https://developer.riotgames.com/apis Riot Developer Portal developer.riotgames.com라이엇 API는 여기에 정리 되어있다! 소환사명 + 태그로 puuid 발급 받기라이엇 API는 대부분 원하는 정보를 바로 얻을 수 없고,대부분 1을 구한 뒤 , 1을 이용해 2를 구하고, 2를 이용해 마침내 내가 원하던 정보 3을 구할 수 있는 식이다.가장 1번이 되는 게 보통 이 puuid를 구하는 것이다. Jump to Inputs 눌러서(아래) 가보자. 파라미터를 입력해준다. 나는 내가 사랑하는 우리혁의 유저네임으로 입력해봤다.다음으로 맞는 지역을 선택하자. 한국은 ASIA서버에 속해있다. 그리고 API Key는 발급받은 production key가 있..
먼저 개발자 API key 를 발급받자.https://developer.riotgames.com/ Riot Developer PortalAbout 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 anddeveloper.riotgames.com이 키를 그냥 사용해도 되지만, Rate limit도 작고 1일 정도 후에 만..
raise TypeError("Cannot filter a query once a slice has been taken.")TypeError: Cannot filter a query once a slice has been taken.[11/Oct/2024 17:14:42] "POST /auth/users/recommendations/ HTTP/1.1" 500 106817 이런 에러가 발생했다. 이미 슬라이싱이 된 쿼리는 filter를 할수 없다고? def post(self, request, *args, **kwargs): # 초기화 matching_reviewee_id = None # 요청에서 필터링 값 가져오기 riot_tiers = request.da..
Discord OAuth2 인증 구현 중..자꾸 날 괴롭혔던 에러.Redirects를 discordlogin/으로 연결했는데,discordlogin은 URL 패턴인데 자꾸 discordlogin이라는 모듈이 없다고해서 헷갈렸다.그래서 내가 어딘가에서 discordlogin을 모듈로 잘못 사용하고 있는 것 같아 내 코드에서 discordlogin을 검색해봤고 settings.pyAUTHENTICATION_BACKENDS = ( 'users.auth.DiscordAuthenticationBackend', # discord 백엔드 'django.contrib.auth.backends.ModelBackend', # 기본 백엔드 'allauth.account.auth_backends.Authe..
문제 설명 풀이import java.util.*;public class BagProblem { static int[] weights; // 물건들의 무게 static int n, k, t; // n: 물건 개수, k: 최소 선택 개수, t: 최대 무게 static int count = 0; // 경우의 수 카운트 public static void main(String[] args) { Scanner scanner = new Scanner(System.in); // 첫째 줄에 n, k, t 입력 n = scanner.nextInt(); k = scanner.nextInt(); t = scanner.nextInt(); ..