-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconsts.py
25 lines (17 loc) · 788 Bytes
/
consts.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
import os
GDBC_HEADERS = {
"content-type": "application/json", ##it needs to be added for graphQl version
"X-RapidAPI-Key": os.environ['GEODBCITIES_APIKEY'],
"X-RapidAPI-Host": "geodb-cities-graphql.p.rapidapi.com"
}
GDBC_URL = "https://geodb-cities-graphql.p.rapidapi.com/"
GITHUB_HEADERS = {"Authorization": os.environ['GH_APIKEY']}
GITHUB_URL = "https://api.github.com/graphql"
RAPIDAPI_HEADERS = {
"content-type": "application/json", ##it needs to be added for graphQl version
"X-RapidAPI-Key": os.environ['RAPIDAPI_APIKEY'],
"X-RapidAPI-Host": "graphql-rapidapi-test.p.rapidapi.com"
}
RAPIDAPI_URL = 'https://graphql-rapidapi-test.p.rapidapi.com/'
RE_HEADERS = { "Content-Type": "application/json" }
RE_URL = "https://rippleenergy.com/graphql"