Skip to content

Commit

Permalink
set version of request to use
Browse files Browse the repository at this point in the history
  • Loading branch information
abhishek97 committed May 28, 2017
1 parent 74f2653 commit 286ccde
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ctdl/ctdl.py
Expand Up @@ -6,7 +6,7 @@
from urllib.request import urlopen
except ImportError:
from urllib2 import urlopen
from urllib3.util import Retry
from requests.packages.urllib3.util.retry import Retry
from requests.adapters import HTTPAdapter
from bs4 import BeautifulSoup
from .downloader import download_series, download_parallel
Expand Down
2 changes: 1 addition & 1 deletion ctdl/downloader.py
@@ -1,7 +1,7 @@
import os
import threading
import requests
from urllib3.util import Retry
from requests.packages.urllib3.util.retry import Retry
from requests.adapters import HTTPAdapter
from tqdm import tqdm, trange

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
@@ -1,4 +1,4 @@
requests
requests>=2.5.0
lxml
bs4
tqdm

0 comments on commit 286ccde

Please sign in to comment.