See the dryscape documentation for more information.
Questions tagged [dryscrape]
34 questions
20
votes
4 answers
pip install dryscrape fails with "error: [Errno 2] No such file or directory: 'src/webkit_server'"?
I need to install dryscrape for python but I got error, what's the problem?
C:\Users\parvij\Anaconda3\Scripts>pip install dryscrape
I got this:
Collecting dryscrape
Collecting webkit-server>=1.0 (from dryscrape)
Using cached…

parvij
- 1,381
- 3
- 15
- 31
2
votes
1 answer
Installing dryscrape (python library for web scraping) in Google Colab
I was trying to install dryscrape and when i write !pip install dryscrape
in google colab i get the following output:
Collecting dryscrape
Downloading…

secondquark
- 21
- 2
2
votes
0 answers
The system cannot find the file specified with dryscrape
I am trying to use dryscrape like this:
import dryscrape
from bs4 import BeautifulSoup
session = dryscrape.Session()
session.visit(my_url)
response = session.body()
But I get the following error, Any way to resolve the following…

Zhivko Vandev
- 29
- 2
2
votes
1 answer
drysrape install Ubuntu server 16.04
I'm having trouble implementing dryscrape on and ubuntu 16.04 server (clean install on digital ocean) - with the objective of scraping JS populated websites.
I'm following dryscrape install instructions from here:
apt-get update
apt-get install…

denski
- 1,768
- 4
- 17
- 35
2
votes
1 answer
Web scraping with dryscrape and BeautifulSoup
I am trying to scrape some data from Yahoo. I have written a script which works - some of the time. Sometimes when I run the script, I am able to download the complete page - other times, the page is only partially loaded - with the data portion…

Homunculus Reticulli
- 65,167
- 81
- 216
- 341
1
vote
2 answers
find() Method Can't Find What I Can
I have been working on a web scraper in python to scrape Google Finance, but I can't find the specific tag I'm looking for using the find() method. Finally, I got so annoyed that I decided to write the returned data to a file and look for it myself.…

ShortsKing
- 47
- 1
- 8
1
vote
0 answers
webkit_server installed but cannot find in script
I have installed webkit-server and dryscrape - but when I run a script I get an error when using a dryscrape function. The error is as follows:
"No such file or directory:…

Floris Holstege
- 59
- 1
- 7
1
vote
1 answer
How to use utf-8 characters in dryscrape in Python?
I need use utf-8 characters in set dryscrape method. But after run show this error:
UnicodeEncodeError: 'ascii' codec can't encode characters in position 0-4: ordinal not in range(128)
My code (for example):
site =…

mySun
- 1,550
- 5
- 32
- 52
1
vote
1 answer
How to maintain session cookies (expire on exit) with Python requests, sessions, or dryscrape?
I ran into some trouble trying to build a python bot to check the status of a application. For explanation, here is an example of the process:
1.) Visit website (https://examplewebsite.com/checkinfo.do?a=sample
2.) Assuming the query string is…

Taylor Amarel
- 11
- 3
1
vote
2 answers
How do I make a dryscrape session?
I'm trying to make a dryscrape session on Mac. The code I'm trying to run is below:
import dryscrape
session = dryscrape.Session(base_url = 'http://google.com')
But when I run it I get this permission error:
Traceback (most recent call last):
…

whackamadoodle3000
- 6,684
- 4
- 27
- 44
1
vote
0 answers
Closing webkit_server at end of python program
I have been trying to figure this out for a couple of days, without success. In my program I'm using dryscrape to scrape some info from a website being rendered with JavaScript. When I run the program dryscrape automatically opens webkit_server to…

FuturePythonWizard
- 43
- 2
- 5
1
vote
2 answers
send files to a website through a 'browse files' on pc
I'm browsing through a website using dryscrape in python and i need to upload a file to this site. But there is only one way of doing it, that is clicking in a button and browse into my files and select the one i want. How can i do it with python? i…

jamescaruso
- 69
- 8
1
vote
1 answer
dryscrape: "No route found for....."
Context:
I am trying to code my own money aggregator because most of available tools on the market does not cover all financial websites yet. I am using python 2.7.9 on a raspberrypi.
I managed to connect to 2 of my accounts so far (one crow-lending…

JB Rolland
- 87
- 10
1
vote
1 answer
dryscrape and BeautifulSoup to get all rows in a js rendered iframe
I am trying to scrape the table on http://apps2.eere.energy.gov/wind/windexchange/economics_tools.asp
enter image description here
the table by default shows 5 entries. I use dryscrape and BeautifulSoup as follows:
import dryscrape
from bs4 import…

lun yu
- 13
- 3
1
vote
0 answers
How to share cookies between dryscrape session and request session? Or how to download pdf straight from dryscrape?
Anyone knows how to share cookies between a dryscrape session and a requests session? I am scraping a website that requires authentication and is full of javascript so I need to use dryscrape but wanted to download a PDF directly from a scraped link…

Daniel Ruhman
- 123
- 2
- 13