File tree Expand file tree Collapse file tree 4 files changed +24
-1
lines changed
Expand file tree Collapse file tree 4 files changed +24
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,23 @@ Nesse curso é ensinado como contribuir com projetos de código aberto
66
77Link para o curso [ Python Pro] ( https://plataforma.dev.pro.br/ )
88
9+ Suportada versão 3 de python
10+
11+ Para instalar:
12+
13+ '''console
14+ python3 -m venv venv
15+ source venv/bin/activate
16+ pip install -r requirements-dev.txt
17+ '''
18+
19+ Para conferir qualidade do código:
20+
21+ '''
22+ console
23+ flake8
24+ '''
25+
926[ ![ Build Status] ( https://travis-ci.org/pythonprobr/libpythonpro.svg?branch=master )] ( https://travis-ci.org/pythonprobr/libpythonpro )
1027[ ![ Updates] ( https://pyup.io/repos/github/pythonprobr/libpythonpro/shield.svg )] ( https://pyup.io/repos/github/pythonprobr/libpythonpro/ )
1128[ ![ Python 3] ( https://pyup.io/repos/github/pythonprobr/libpythonpro/python-3-shield.svg )] ( https://pyup.io/repos/github/pythonprobr/libpythonpro/ )
Original file line number Diff line number Diff line change 11[flake8]
22max-line-length = 120
3- exclude =. venv
3+ exclude =venv
Original file line number Diff line number Diff line change 11import requests
22
33
4+
45def buscar_avatar (usuario ):
56 """
67 Busca o avatar de um usuário no Github
Original file line number Diff line number Diff line change 1+ flake8 == 4.0.1
2+ mccabe == 0.6.1
3+ pycodestyle == 2.8.0
4+ pyflakes == 2.4.0
5+ -r requirements.txtflake8
You can’t perform that action at this time.
0 commit comments