Firstly, the objective is to make a http request every certain time, but there is a problem: the login screen.
In short, i tried to make a request to the link firefaucet.win/start with this code below
import requests
requests.get('https://firefaucet.win/start')
This request returns to the login page, because to use this website you need to have a account.
Doing by the common way, making a POST request with the auth is out of question, because the login is followed by a captcha box. I figured out another way to log in, that is using my own session token, that i got on the cookies of my browser. But this is the point, I don't know how to log in using just the session token.