The task is to scrape the web
I have solved it by scrapping the web
You can install the project by running python scraper.py on the command line
import requests
from bs4 import BeautifulSoup
def request_github_trending(url):
response = requests.get(url)
return response.content