six-quick-python-projects/github_profile_picture.py
2021-03-25 08:58:09 -04:00

9 lines
No EOL
276 B
Python

import requests
from bs4 import BeautifulSoup as bs
github_user = input('Input GitHub User: ')
url = f'https://github.com/{github_user}'
r = requests.get(url)
soup = bs(r.content, 'html.parser')
profile_image = soup.find('img', {'alt' : 'Avatar'})['src']
print(profile_image)