Skip to content
This repository has been archived by the owner on Mar 8, 2023. It is now read-only.

Commit

Permalink
common: using requests instead of urllib
Browse files Browse the repository at this point in the history
  • Loading branch information
iawia002 committed Mar 11, 2018
1 parent 7b6c212 commit adfadbd
Show file tree
Hide file tree
Showing 19 changed files with 234 additions and 277 deletions.
1 change: 1 addition & 0 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ ipdb = "*"
coverage = "==4.4.2"
cryptography = "==2.1.4"
beautifulsoup4 = "==4.6.0"
requests = "==2.18.4"
106 changes: 67 additions & 39 deletions Pipfile.lock

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

2 changes: 1 addition & 1 deletion fabfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

def test(proxy=False):
cmd = 'PYTHONPATH=./ {} coverage run tests/runtests.py'.format(
'proxychains4' if proxy else ''
'proxychains4 -q' if proxy else ''
)
local(cmd)

Expand Down
Loading

0 comments on commit adfadbd

Please sign in to comment.