See the dryscape documentation for more information.
Questions tagged [dryscrape]
34 questions
0
votes
1 answer
Dryscrape session can't load any site
I've installed dryscrape at pythonanywhere.com. Yet session var cannot load any site, why?
import dryscrape
# as in demo: http://dryscrape.readthedocs.io/en/latest/usage.html#first-demonstration
dryscrape.start_xvfb()
sess =…

Igor Savinkin
- 5,669
- 8
- 37
- 69
0
votes
2 answers
I can't run `dryscrape` in linux, pythoneverywhere
I've successfuly instaled the dryscrape along with some accompaning packages (webkit-server xvfbwrapper) in pythoneverywhere.com.
13:45 / $ pip3.5 install --user dryscrape
Collecting dryscrape
Using cached dryscrape-1.0.tar.gz
Collecting…

Igor Savinkin
- 5,669
- 8
- 37
- 69
-1
votes
1 answer
Getting too many result on python browser
Friends i want to extract live scores on espncricinfo i try with dryscrape :-
Import dryscrape as d
d.start_xvfb()
br = d.Session()
br.visit('http://www.espncricinfo.com/ci/engine/match/index.html?view=live')
for x in br.xpath('//*[@class =…

Harry1992
- 453
- 1
- 5
- 12
-1
votes
1 answer
Dryscrape response always returns with "Product unavailable" when using proxy
I was trying to scrap javascript based website using dryscrape and was getting the right content when not using proxy. But it returns "Product unavailable" when using proxy. Here is the code snippet.
session =…

Sayhan
- 165
- 20