Top 100 Visited Sites Web Scraper
Project description
Top 100 Visited Sites Web Scraper
Description
This Python script is a simple web scraper that fetches data from a Wikipedia's Top 100 Sites (https://en.wikipedia.org/wiki/List_of_most-visited_websites), specifically an HTML table, and converts it into a list of dictionaries. It also accesses each domain in the list and prints its response code.
I created this script to automate testing of Firewall, Content Filtering and NAT related services. It can be used to test if a domain is accessible or not. It can also be used to test if a domain is being redirected to another domain.
Using this script helps me debug whether a rule (code) is working as expected or not. For example, if I have a rule that blocks access to a domain, I can use this script to test if the domain is indeed blocked or not. At the same time, I can get useful Syslogs for each run.
Dependencies
- Python 3.6 or higher
requests
libraryBeautifulSoup
frombs4
libraryurlparse
fromurllib.parse
library
Functions
is_valid_url(url: str) -> bool
: Checks if the URL is valid.html_table_to_list(url: str, num_columns: int) -> list
: Converts an HTML table into a list of dictionaries.access_domains(top_100: list) -> None
: Accesses each domain in a list and prints its response code.
Usage
- Install the required dependencies.
- Run the script with Python 3.6 or higher.
- The script will fetch data from the specified URL, convert the HTML table into a list of dictionaries, and print the response code for each domain.
Please note that the URL of the webpage containing the table and the number of columns in the table are parameters for the html_table_to_list
function. The default number of columns is set to 5.
The access_domains
function takes in a list of dictionaries representing a table of domains and prints their response codes.
Example
# Use the function
top_100_reference = "https://en.wikipedia.org/wiki/List_of_most-visited_websites" # Replace with your URL
top_100_list = html_table_to_list(top_100_reference)
access_domains(top_100_list)
In this example, the script fetches data from a Wikipedia page that lists the most visited websites, converts the HTML table into a list of dictionaries, and prints the response code for each domain.
Disclaimer
Please use this script responsibly and ensure that you are allowed to scrape the websites you choose to scrape. Some websites may prohibit scraping in their terms of service. Always respect others' intellectual property rights.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file top_100-0.1.4.tar.gz
.
File metadata
- Download URL: top_100-0.1.4.tar.gz
- Upload date:
- Size: 6.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.11.6 Darwin/23.2.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e9bfdded63f2b3e9b476c7a9d010284ea3ff9be26589daac7ecde9c2c94c481d |
|
MD5 | 5500e78ca493b38761e69f7a106387c7 |
|
BLAKE2b-256 | 2878abbbf8a0295a43091cb9ea05010a94b2e3c1c0290a9f9e13b0e22840e6c7 |
File details
Details for the file top_100-0.1.4-py3-none-any.whl
.
File metadata
- Download URL: top_100-0.1.4-py3-none-any.whl
- Upload date:
- Size: 8.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.11.6 Darwin/23.2.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d70ac508716feb6d0c4df065b31f72570e78b54fed61315326b1023c789f2aeb |
|
MD5 | 398033b0bb3ab491b0d789f17c184426 |
|
BLAKE2b-256 | a0f77f76a5b9ca51c4692fb74907091b376862f27090fe5b5564927875093fe8 |