Web Scraping using Beautiful Soup
Learn how to scrape Github data using Beautiful Soup.
Scrape GitHub data
Create a function to get the data:
def getData(userName):
pass
The URL https://github.com/{user_name}?tab=repositories contains the user’s information and their recent public repositories. We’ll use the requests ...
Ask