Tagged Questions
0
votes
1answer
38 views
mechanize._mechanize.FormNotFoundError: no form matching name 'q'
Can anyone help me get this form selection correct?
Trying to get a crawl of google, I get the error:
mechanize._mechanize.FormNotFoundError: no form matching name 'q'
Unusual, since I have seen ...
0
votes
0answers
77 views
Following mysterious link with mechanize
I'm using mechanize to crawl a website. I stumbled over a mysterious link: when I literally click on it, it takes me to the page I want; when I use br.click_link(text='Click here'), it doesn't.
...
0
votes
1answer
80 views
What does this error mean: ValueError: unknown POST form encoding type ' ' (and how to solve it?)
I'm trying to crawl a website (http://www.dataescolabrasil.inep.gov.br/dataEscolaBrasil/home.seam) using mechanize but I am getting an error I cannot understand (and therefore cannot solve). That's ...
0
votes
0answers
62 views
clicking a link for screen scraping using mechanize
Here is the program which uses mechanize to extract contents from multiple pages by following the link of pages.But still i get content of the first page
import re
import mechanize
...
0
votes
0answers
125 views
How to open Firefox with Python and run an iMacros script?
I've been trying to windows extensions for python to run the iMacros script, however I receive a really weird error that I believe is the same as the error that occurred in this stackoverflow ...
3
votes
1answer
641 views
Perl WWW::Mechanize Web Spider. How to find all links
I am currently attempting to create a Perl webspider using WWW::Mechanize.
What I am trying to do is create a webspider that will crawl the whole site of the URL (entered by the user) and extract all ...
0
votes
1answer
67 views
Recover net::ERR_CONNECTION_SET Mechanize Ruby
I'm creating a web crawler using Mechanize for ruby. I'll be running batches of 200k at a time and I want to be able to set an instance variable that the site is not valid and move on with the next ...
1
vote
1answer
287 views
Ruby Mechanize Parse Meta Tags
I'm using Mechanize to crawl a bunch of web pages, and I'm having trouble getting at the meta tags.
<meta property="og:longitude" content="-74.0100365">
<meta property="og:latitude" ...
0
votes
3answers
323 views
Creating a Web Crawler in Ruby. How to tackle performance issues?
I'm building a web crawler in Ruby, Rails as the front-end. I'm using Mechanize which is built on top of Nokogiri. I already implemented a solution that will crawl the web pages but I looking to be ...
0
votes
1answer
209 views
mechanize, urllib, beautifulsoup & relative paths
Does mechanize, urllib or beautifulsoup have any built in methods for handling crawling of websites with a mixture of absolute and relative urls?
A solution is lots of exceptions
'http://' + ...
0
votes
1answer
98 views
Can python's mechanize extract the text associated with a control?
I'm writing a crawler, and I keep encountering forms controls for which mechanize can give me no information beyond type. Is there any way that I can get the human-readable text associated with the ...
0
votes
1answer
290 views
Trouble logging in with Ruby Mechanize
I'm trying to use Mechanize Ruby to login to a website. I've looked at every example on this site, but an a ruby beginner and get confused as to which page I should even be getting to access the form. ...
0
votes
2answers
115 views
How to get cookies stored by javascript?
I am using mechanize to retrieve data from many web site. When I tried to log into www.douban.com , I found there are a lot of cookies not set when I log in success. Finally, I find they came from ...
0
votes
2answers
2k views
Web Crawler - Ignore Robots.txt file?
Some servers have a robots.txt file in order to stop web crawlers from crawling through their websites. Is there a way to make a web crawler ignore the robots.txt file? I am using Mechanize for ...
0
votes
1answer
548 views
How to crawl a site using Python and Mechanize
How can I use Mechanize with Python to crawl a website, recursively following every link on every page?
Every example I've seen in tutorials and Mechanize documentation shows how to follow a browsing ...
2
votes
2answers
2k views
Downloading pdf files using mechanize and urllib
I am new to Python, and my current task is to write a web crawler that looks for PDF files in certain webpages and downloads them. Here's my current approach (just for 1 sample url):
import mechanize
...
0
votes
1answer
170 views
Mechanze form submission causes 'Assertion Error' in response when .read() is attempted
I am writing a web-crawl program with python and am unable to login using mechanize. The form on the site looks like:
<form method="post" action="PATLogon">
<h2 ...
1
vote
3answers
430 views
Improving BeautifulSoup Perf
SO I have the following set of code parsing delicious information. It prints data from a Delicious page in the following format
Bookmark | Number of People
Bookmark | Number of People
etc...
I used ...
1
vote
1answer
501 views
Python + Mechanize Async Tasks
So I have this bit of python code that runs through a delicious page and scrapes some links off of it. The extract method contains some magic that pull out the required content. However, running the ...
3
votes
1answer
2k views
Python + Mechanize not working with Delicious
I'm using Mechanize and Beautiful soup to scrape some data off Delicious
from mechanize import Browser
from BeautifulSoup import BeautifulSoup
mech = Browser()
url = ...
2
votes
2answers
657 views
Facebook Permission request form for Crawling?
I have been Googling for sometime but I guess I am using the wrong set of keywords. Does anyone know this URI that lets me request permission from Facebook to let me crawl their network? Last time I ...
1
vote
1answer
423 views
Mechanize::Firefox gets stuck
I'm using WWW::Mechanize::Firefox to crawl pages that load some JavaScript after they have been loaded.
My code regarding this problem:
my ($firemech) = WWW::Mechanize::Firefox->new(tab => ...