-
Notifications
You must be signed in to change notification settings - Fork 2
/
secrets.py.example
48 lines (41 loc) · 1.25 KB
/
secrets.py.example
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
'''
*** Rename this file to keys.py and fill in your own keys ***
you must register for an API key separately for each ideascale
site. the url for API documentation and registration is at:
[agency_site_name].ideascale.com/a/ideascaleStatic.do?mode=api
eg: opennasa.ideascale.com/a/ideascaleStatic.do?mode=api
'''
# API keys for each agency's ideascale site
api_keys = {
"usaid": "your key here...",
"comm":"your key here...",
"dod": "your key here...",
"ed": "your key here...",
"energy": "your key here...",
"nasa":"your key here...",
'dot': "your key here...",
"int": "your key here...",
"va": "your key here...",
"treas": "your key here...",
"gsa": "your key here...",
"opm": "your key here...",
"labor": "your key here...",
"doj": "your key here...",
"ssa": "your key here...",
"state": "your key here...",
"nsf": "your key here...",
"hud": "your key here...",
"epa": "your key here...",
"sba": "your key here...",
"dhs": "your key here...",
"nrc": "your key here...",
"ostp": "your key here...",
}
twitter = {
'username': 'your twitter username',
'password': 'your twitter password',
}
bitly = {
'username': 'your username',
'apikey': 'your api key',
}