Skip to content

Commit 72724a4

Browse files
committed
Added some mechanisms (download handler, middleware, requests, and response) that enable scraping using Selenium webdriver
1 parent 23a469a commit 72724a4

File tree

9 files changed

+804
-0
lines changed

9 files changed

+804
-0
lines changed

.gitignore

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Emacs rope configuration
2+
.ropeproject
3+
.project
4+
.pydevproject
5+
.settings
6+
7+
# Python
8+
*.py[co]
9+
10+
## Packages
11+
*.egg
12+
*.egg-info
13+
dist
14+
build
15+
eggs
16+
parts
17+
bin
18+
var
19+
sdist
20+
deb_dist
21+
develop-eggs
22+
.installed.cfg
23+
24+
## Installer logs
25+
pip-log.txt
26+
27+
## Unit test / coverage reports
28+
.coverage
29+
.tox
30+
31+
## Translations
32+
*.mo

0 commit comments

Comments
 (0)