-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtwitch_stuff.py
39 lines (35 loc) · 1.02 KB
/
twitch_stuff.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
from twitch import TwitchClient
import requests, json
import cfg
token = cfg.TTV_TOKEN
ID = cfg.TTV_ID
def get_user_id(username):
headers = {
'Accept': 'application/vnd.twitchtv.v5+json',
'Client-ID': ID,
'Authorization': 'OAuth {}'.format(token)
}
url = "https://api.twitch.tv/kraken/users?login={}".format(username)
response = requests.get(url, params=None, headers=headers).json()
try:
userid = response['users'][0]['_id']
return userid
except:
print(response)
return False
def get_status(userid):
headers = {
'Accept': 'application/vnd.twitchtv.v5+json',
'Client-ID': ID,
}
url = 'https://api.twitch.tv/kraken/streams/{}'.format(userid)
response = requests.get(url, params=None, headers=headers).json()
print(response)
try:
if response['stream']==None:
return False
else:
return True
except:
print('we have a problem here')
return