-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgetQuestionFromLC.py
89 lines (84 loc) · 3.46 KB
/
getQuestionFromLC.py
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
import discord
import requests
async def showQuestion(ctx, questionID): # calls method to get question with ID, and returns info
embed = discord.Embed(title="LeetCode Bot")
try:
questionID = int(questionID) # safely cast questionID to an int
except ValueError: # if not an int, return an error message
embed.colour = discord.Colour.red()
embed.description = f"{questionID} is not a valid ID."
await ctx.send(embed=embed)
return
question = getQuestion(questionID) # call method to get question ID
if question == "INVALID": # if return is invalid, return an error message
embed.colour = discord.Colour.red()
embed.description = f"{questionID} is not a valid ID."
await ctx.send(embed=embed)
return
question = dict(question) # redundant, specifies that this is a dict to the code
embed.colour = discord.Colour.purple()
name = question["title"]
difficulty = question["difficulty"]
link = "https://leetcode.com/problems/" + question["titleSlug"] # titleSlug is what goes after /problems/ in the URL
embed.description = f"\n**Name**: {name}\n**Difficulty**: {difficulty}\n\n {link}"
await ctx.send(embed=embed)
def getQuestion(questionID):
query = f"""query problemsetQuestionList($categorySlug: String, $limit: Int, $skip: Int, $filters: QuestionListFilterInput) {{
problemsetQuestionList: questionList(
categorySlug: $categorySlug
limit: $limit
skip: $skip
filters: $filters
) {{
total: totalNum
questions: data {{
difficulty
title
titleSlug
paidOnly: isPaidOnly
}}
}}
}}"""
params = f"""{{
"categorySlug": "",
"skip": {int(questionID)-1},
"limit": 1,
"filters": {{
}}
}}"""
url = 'https://leetcode.com/graphql' # sends above query and params to this url
r = requests.post(url, json={'query': query, 'variables': params})
question = (r.json())["data"]["problemsetQuestionList"]["questions"] # gets the problems returned from query
try:
question = question[0] # may be empty if ID out of range
except IndexError:
return "INVALID"
return question # return dict of question info
def getAllQuestions():
query = f"""query problemsetQuestionList($categorySlug: String, $limit: Int, $skip: Int, $filters: QuestionListFilterInput) {{
problemsetQuestionList: questionList(
categorySlug: $categorySlug
limit: $limit
skip: $skip
filters: $filters
) {{
total: totalNum
questions: data {{
difficulty
title
titleSlug
paidOnly: isPaidOnly
}}
}}
}}"""
params = f"""{{
"categorySlug": "",
"skip": 0,
"limit": 2543,
"filters": {{
}}
}}"""
url = 'https://leetcode.com/graphql' # sends above query and params to this url
r = requests.post(url, json={'query': query, 'variables': params})
questions_list = (r.json())["data"]["problemsetQuestionList"]['questions'] # gets the problems returned from query
return questions_list