fediplug/stream
2017-12-29 08:31:46 -05:00

19 lines
390 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(API_BASE_URL)