Skip to content

Instantly share code, notes, and snippets.

@ArthurDeveloper
Created August 15, 2021 00:50
Show Gist options
  • Save ArthurDeveloper/ac4a651f3f0f9ee7971360dbbf72ac11 to your computer and use it in GitHub Desktop.
Save ArthurDeveloper/ac4a651f3f0f9ee7971360dbbf72ac11 to your computer and use it in GitHub Desktop.
Pegando foto de perfil do github dinamicamente
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