ariG23498/community-blogs
Created by the following code: !pip install -Uq datasets import requests from bs4 import BeautifulSoup, Comment import pandas as pd from datasets import Dataset def get_content(url): response = requests.get(url) if response.status_code == 200: soup = BeautifulSoup(response.text, 'html.parser') return soup url = "https://huggingface.co/blog/community" soup = get_content(url) articles = soup.find_all("article") titles = [article.h4.text for article in articles] links =… See the full description on the dataset page: https://huggingface.co/datasets/ariG23498/community-blogs.
132
