Created
August 15, 2021 00:50
-
-
Save ArthurDeveloper/ac4a651f3f0f9ee7971360dbbf72ac11 to your computer and use it in GitHub Desktop.
Pegando foto de perfil do github dinamicamente
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
# Replace with your username | |
username = 'arthurdeveloper' | |
with open('image.png', 'wb') as file: | |
file.write(requests.get(f'https://github.com/{username}.png').content) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment