Learn practical skills, build real-world projects, and advance your career

Github Users Info : Web Scraping Project

alt

Description:

1. Scrape Github User's Account,
2. Create A Helper Function,
3. Create Package & Upload PYPI,
4. Install Package & Use It,

1. Scrape Github User's Account

We are going to scrap user's github account details:

  • Full Name
  • Username
  • Bio Details
  • Number of Followers
  • Number of Followings
  • Number of Stars
  • Organization
  • Location
  • Website
  • Twitter
  • Number of Repositories
  • Number of Projects

Import Libraries

requests allows you to send HTTP requests using Python.

beautifulSoup is a Python library for pulling data out of HTML and XML files.