Skip to content
Open

18 #645

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
f0531d9
Github actions
ruandiego23 Jan 27, 2022
b94079e
Delete .github/workflows directory
ruandiego23 Jan 27, 2022
092d0dc
REQUERIMENTS
Jan 27, 2022
0286ac0
Merge remote-tracking branch 'origin/master'
Jan 27, 2022
c413a9a
Mudanças durante as aulas
Jan 27, 2022
03a0bfd
Update mccabe from 0.6.1 to 0.7.0
pyup-bot Jan 27, 2022
2ec02d7
Update certifi from 2019.6.16 to 2021.10.8
pyup-bot Jan 27, 2022
fa3bf35
Update chardet from 3.0.4 to 4.0.0
pyup-bot Jan 27, 2022
943692e
Update idna from 2.8 to 3.3
pyup-bot Jan 27, 2022
2f5a590
Update requests from 2.22.0 to 2.27.1
pyup-bot Jan 27, 2022
0598ad4
Update urllib3 from 1.25.3 to 1.26.8
pyup-bot Jan 27, 2022
bee4e56
Update atomicwrites from 1.3.0 to 1.4.0
pyup-bot Jan 27, 2022
2287fe1
Update attrs from 19.1.0 to 21.4.0
pyup-bot Jan 27, 2022
878201a
Update coverage from 4.5.3 to 6.3
pyup-bot Jan 27, 2022
a8a1178
Update flake8 from 3.7.7 to 4.0.1
pyup-bot Jan 27, 2022
f952c9d
Update importlib-metadata from 0.18 to 4.10.1
pyup-bot Jan 27, 2022
ae66707
Update more-itertools from 7.0.0 to 8.12.0
pyup-bot Jan 27, 2022
104b567
Update packaging from 19.0 to 21.3
pyup-bot Jan 27, 2022
d059cf8
Update pluggy from 0.12.0 to 1.0.0
pyup-bot Jan 27, 2022
afe663f
Update py from 1.8.0 to 1.11.0
pyup-bot Jan 27, 2022
ca8f9b4
Update pycodestyle from 2.5.0 to 2.8.0
pyup-bot Jan 27, 2022
feb7226
Update pyflakes from 2.1.1 to 2.4.0
pyup-bot Jan 27, 2022
35d41e5
Update pyparsing from 2.4.0 to 3.0.7
pyup-bot Jan 27, 2022
17d93aa
Update pytest from 4.6.3 to 6.2.5
pyup-bot Jan 27, 2022
3589922
Update pytest-cov from 2.7.1 to 3.0.0
pyup-bot Jan 27, 2022
5dc4745
Update pytest-mock from 1.10.4 to 3.6.1
pyup-bot Jan 27, 2022
8d51646
Update six from 1.12.0 to 1.16.0
pyup-bot Jan 27, 2022
f89d114
Update wcwidth from 0.1.7 to 0.2.5
pyup-bot Jan 27, 2022
94b6df1
Update zipp from 0.5.1 to 3.7.0
pyup-bot Jan 27, 2022
73d7ec9
Mudanças no PyUp
Jan 27, 2022
67f6805
Merge pull request #2 from Rudie23/pyup-initial-update
ruandiego23 Jan 27, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/inspectionProfiles/profiles_settings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions .idea/libpythonpro.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

224 changes: 115 additions & 109 deletions Pipfile.lock

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ Link para o curso [Python Pro](https://www.python.pro.br/)
[![Python 3](https://pyup.io/repos/github/pythonprobr/libpythonpro/python-3-shield.svg)](https://pyup.io/repos/github/pythonprobr/libpythonpro/)
[![codecov](https://codecov.io/gh/pythonprobr/libpythonpro/branch/master/graph/badge.svg)](https://codecov.io/gh/pythonprobr/libpythonpro)

Minhas mudanças

[![Python 3](https://pyup.io/repos/github/Rudie23/libpythonpro/python-3-shield.svg)](https://pyup.io/repos/github/Rudie23/libpythonpro/)

Suportada versão 3 de Python

Para instalar:
Expand Down
3 changes: 3 additions & 0 deletions flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[flake8]
max-line-lenght = 120
exclude = .venv
4 changes: 4 additions & 0 deletions libpythonpro/github_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,7 @@ def buscar_avatar(usuario):
url = f'https://api.github.com/users/{usuario}'
resp = requests.get(url)
return resp.json()['avatar_url']


if __name__ == '__main__':
print(buscar_avatar('renzon'))
5 changes: 5 additions & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
flake8==4.0.1
mccabe==0.6.1
pycodestyle==2.8.0
pyflakes==2.4.0
-r requirements.txt
5 changes: 5 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
certifi==2021.10.8
charset-normalizer==2.0.10
idna==3.3
requests==2.27.1
urllib3==1.26.8