Project Outline

  • In this project, we will be scraping data from github/topics
  • We will get top 25 repositories in each topic
  • For each topic, we will grab Repo name, Author, Stars and Repo URL

Use Requests Library to download webpages

Requests is a python library for downloading webpages

import requests
topics_url = 'https://github.com/topics'
response = requests.get(topics_url)