Im trying to write script that login to website using requests lib and then monitor some informations.
Code here:
import requests
POST_LOGIN_URL = 'https://app.distill.io/login'
REQUEST_URL = 'https://app.distill.io/watchlist#inbox '
payload = {
'name': 'username',
'password': 'pass'
}
h = {
'authority': 'app.distill.io ',
...