BeautifulSoup urllib.request This function extracts all <h1> tag text content from a specified URL, which is the title of the web page. Function 2024-12-16 12:17:12 38 views
BeautifulSoup urllib.request This function fetches the HTML content from a given URL, parses it using BeautifulSoup, and then extracts the href attributes from all <a> tags. Function 2024-12-16 11:34:32 4 views
beautifulsoup4 urllib.request This function extracts all links from a given URL and returns a list containing these links. It uses the BeautifulSoup library to parse HTML and SoupStrainer to optimize the parsing process. Function 2024-12-07 16:12:04 3 views
BeautifulSoup4 urllib.request This function extracts headings from a specified webpage URL using BeautifulSoup4 and returns them as a list of strings. Function 2024-12-07 16:10:10 2 views
BeautifulSoup html.parser This function takes a URL and a BeautifulSoup object as input, fetches the webpage content from the URL, parses these contents using BeautifulSoup, and then extracts and returns all the links from the webpage. Function 2024-12-07 15:58:29 2 views
beautifulsoup4 urllib.request This function is used to extract all links from a given URL. It uses the BeautifulSoup library to parse the HTML content and extracts the `href` attributes from all `<a>` tags to obtain the links. Function 2024-12-07 15:51:33 2 views
Prometheus_client threading This function uses components from the Prometheus library to simulate the process of scraping external metrics, including starting an HTTP server, defining metrics, and asynchronously fetching metric data. Prometheus indicator grab 2024-11-30 16:24:45 4 views
beautifulsoup4 urllib.request This function takes a URL and a BeautifulSoup object as arguments. It retrieves HTML content from the URL using urlopen and parses it with BeautifulSoup. It then extracts all <a> tags with a href attribute and returns a list of all the links. Function 2024-11-30 16:09:26 3 views
BeautifulSoup urllib.request This function takes a URL and a BeautifulSoup object as arguments, opens the URL to get the HTML content, and then parses the HTML content to extract all the links. Extract all links from web pages 2024-11-30 15:56:39 6 views
BeautifulSoup urllib.request This function takes a URL and a BeautifulSoup object as parameters, opens the URL to get the content, then parses the HTML with BeautifulSoup to extract and return the href attributes of all <a> tags. Function 2024-11-30 15:51:45 3 views