-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGQL_parse.py
40 lines (34 loc) · 1.25 KB
/
GQL_parse.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
import os
import re
""" Global variables declaration """
SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__))
QUERIES_PATH = os.path.join(SCRIPT_DIR, 'queries.graphql')
URL = 'https://leetcode.com/graphql/'
""" Parser class is responsible for extracting the queries from
.graphql files. """
class Parser():
def __init__(self, filename = QUERIES_PATH):
self.filename = filename
def extract_query_names(self):
with open(self.filename, 'r', encoding='utf-8') as file:
query_names = []
for line in file:
if line.startswith('query '):
query_name = re.split(r'[(|)]', line)[0].split(' ')[1]
query_names.append(query_name)
return query_names
def extract_query(self, query_name):
with open(self.filename, 'r', encoding='utf-8') as file:
query = ''
for line in file:
if line.startswith('query ' + query_name):
query += line
break
if not query:
return None
for line in file:
if line.startswith('}'):
query += line
break
query += line
return query