1

Hello I want to ask if there is a way to get my current url every second printed without the selenium library in Python. Selenium would be probably the easier way i know but this is not in my interests. Thanks!

1 Answer 1

1

what are you trying to do, exactly? If you just want to get a request from the url you are talking about.. You can use the requests library.

To make a request, simply do:

import requests

with requests.get('https://url.com') as response:
    print(response)

If the output is Response[200], you're good.

Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.