twitch-autosave/lifeChk.py
2020-02-17 21:46:13 +03:00

23 lines
635 B
Python
Executable File

#!/usr/bin/python3
#################
# return 0 if streamer is live (continue exec while in bash), 1 if not
#################
import sys
import conf_python
#if not sys.argv[1]:
# sys.exit(2)
from twitch import TwitchClient
client = TwitchClient(client_id=twitchid) #client init
user_id=client.users.translate_usernames_to_ids(sys.argv[1])[0].id #get id
#get live by id (if var not empty)
if client.streams.get_stream_by_user(user_id):
print(user_id)
print(client.streams.get_stream_by_user(user_id).stream_type)
if client.streams.get_stream_by_user(user_id).stream_type == 'live':
sys.exit(0)
sys.exit(1)