-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathleet_api.py
27 lines (21 loc) · 980 Bytes
/
leet_api.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
import requests
from leetcode.configuration import Configuration
from leetcode.graphql_query import GraphQLQuery
""" Class responsible for handling the POST requests to the
Leetcode GraphQL API.
config variable should be of Configuration type which contains a session_id
for the proper work of the requests. """
class LeetAPI():
def __init__(self, config: Configuration):
self.config = config
def post_query(self, query: GraphQLQuery):
response = requests.post(url="https://leetcode.com/graphql",
headers=self.config.headers,
json=query.to_dict(),
cookies=self.config.cookies)
return response.json()
def get_request(self, url):
response = requests.get(url=url,
headers=self.config.headers,
cookies=self.config.cookies)
return response.json()