This is an old revision of the document!


02. [20p] Making HTTP Requests

Now that we have the requests library, we can easily send HTTP requests to any URL. This prompts the server to respond with the information we need. When the request is successful, the server will reply with a standard status code: 200 (Success), indicating everything went smoothly. Simply replace the URL with the desired website, and you’re ready to go!

import requests    # Imports the library in the script
 
url = "https://example.com"
response = requests.get(url)  # Send request to website
html_content = response.text  # Get the HTML content of the page
ii/labs/03/tasks/02.1730927793.txt.gz · Last modified: 2024/11/06 23:16 by florin.stancu
CC Attribution-Share Alike 3.0 Unported
www.chimeric.de Valid CSS Driven by DokuWiki do yourself a favour and use a real browser - get firefox!! Recent changes RSS feed Valid XHTML 1.0