fediplug/stream
Matt Behrens 5aefaafd26 IT LIVES 🙌🏻
2017-12-26 16:34:39 -05:00

19 lines
399 B
Python
Executable file

#!/usr/bin/env python
API_BASE_URL = 'https://cybre.space'
import os
from getpass import getpass
from fediplay import register, login, stream
if not os.path.exists('clientcred.secret'):
register(API_BASE_URL)
if not os.path.exists('usercred.secret'):
email = input('Email: ')
password = getpass('Password: ')
login(API_BASE_URL, email, password)
stream('https://cybre.space')