blob: bc9b16ee86ae26c8b29c30d5138f556e62d4a2f9 (
plain)
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
|
import requests
import sys
import json
from wikijscmd.config import config
def handle_errors(r):
error = False
if r.status_code != 200:
error = True
print("Error status code: %s" % r.status_code)
json = r.json()
if "errors" in json:
error = True
for e in json["errors"]:
print(e["message"])
print(e)
if error:
sys.exit(1)
def get_headers():
return { "Authorization": "Bearer %s" % config["wiki"]["key"] }
def send_query(query, query_vars):
'''Returns status code, json'''
payload = { "query": query, "variables": query_vars}
r = requests.post(config["wiki"]["url"], json=payload, headers = get_headers())
handle_errors(r)
return r.json()
|