Tagged Questions
A library for automated web browsing originally developed for Perl, there are now also Python and Ruby implementations.
30
votes
6answers
5k views
Which is best in Python: urllib2, PycURL or mechanize?
Ok so I need to download some web pages using Python and did a quick investigation of my options.
Included with Python:
urllib - seems to me that I should use urllib2 instead. urllib has no cookie ...
15
votes
9answers
5k views
Is there a PHP equivalent of Perl's WWW::Mechanize?
I'm looking for a library that has functionality similar to Perl's WWW::Mechanize, but for PHP. Basically, it should allow me to submit HTTP GET and POST requests with a simple syntax, and then parse ...
12
votes
2answers
1k views
Is it worth learning Scrapy?
I'm a big fan of Python and currently I have taken a lot of interest in web-scraping.
At the moment I rely on the elegant combination of Mechanize and Beautiful Soup to automate almost all of my ...
10
votes
6answers
1k views
WebBrowsing in C# - Libraries, Tools etc. - Anything like Mechanize in Perl?
Looking for something similar to Mechanize for .NET...
If you don't know what Mechanize is.. http://search.cpan.org/dist/WWW-Mechanize/
I will maintain a list of suggestions here. Anything for ...
9
votes
2answers
2k views
Mechanize submit login form from http to https
I have a web page containing a login form which loads via HTTP, but it submits the data via HTTPS.
I'm using python-mechanize to log into this site, but it seems that the data is submitted via HTTP.
...
8
votes
3answers
1k views
Click on a javascript link within python?
I am navigating a site using python's mechanize module and having trouble clicking on a javascript link for next page. I did a bit of reading and people suggested I need python-spidermonkey and ...
8
votes
3answers
983 views
Force python mechanize/urllib2 to only use A requests?
Here is a related question but I could not figure out how to apply the answer to mechanize/urllib2: ...
7
votes
4answers
155 views
Code review tool for prep for large change to codebase
I have to perform a large change to a codebase that consists of a handful of different types of changes that need to be applied in hundreds of different locations, spread out over hundreds of ...
6
votes
5answers
130 views
Symfony and mechanize
I am trying to access to a local website designed with the Symfony framework.
It works perfectly with the web browser and with CURL but when I use Mechanize I always got the 401 unauthorized answer ...
6
votes
2answers
402 views
mechanize submit form character encoding problem
I am trying to scrape http://www.nscb.gov.ph/ggi/database.asp, specifically all the tables you get from selecting the municipalities/provinces. I am using python with lxml.html and mechanize. my ...
6
votes
2answers
203 views
Ruby Mechanize: multiline value for textarea gets merged
EDIT: upon further testing, it seems like the issue is site-specific and should theoretically work just fine.
Textarea values which should be on multiple lines are being submitted all on one line.
...
6
votes
2answers
2k views
mechanize for Java
I was wondering if there is something like Perl's/Python's mechanize for Java.
Thanks!
6
votes
2answers
1k views
Getting and trapping HTTP response using Mechanize in Python
I am trying to get the response codes from Mechanize in python. While I am able to get a 200 status code anything else isn't returned (404 throws and exception and 30x is ignored). Is there a way to ...
6
votes
4answers
607 views
Is it possible to hook up a more robust HTML parser to Python mechanize?
I am trying to parse and submit a form on a website using mechanize, but it appears that the built-in form parser cannot detect the form and its elements. I suspect that it is choking on poorly formed ...
6
votes
3answers
2k views
Mechanize and BeautifulSoup for PHP?
I was wondering if there was anything similar like Mechanize or BeautifulSoup for PHP?
5
votes
4answers
167 views
Inexplicable Urllib2 problem between virtualenv's.
I have some test code (as a part of a webapp) that uses urllib2 to perform an operation I would usually perform via a browser:
Log in to a remote website
Move to another page
Perform a POST by ...
5
votes
2answers
598 views
Mechanize for Python 3.x
is there any way how to use Mechanize with Python 3.x?
Or is there any substitute which works in Python 3.x?
I've been searching for hours, but I didn't find anything :(
I'm looking for way how to ...
5
votes
4answers
830 views
5
votes
2answers
2k views
how to manually add a cookie to Mechanize state?
[I'm working in Ruby, but my question is valid for other languages as well.]
I have a Mechanize-driven application. The server I'm talking to sets a cookie using javascript (rather than standard ...
5
votes
1answer
431 views
How do I disable history in python mechanize module?
I have a web scraping script that gets new data once every minute, but over the course of a couple of days, the script ends up using 200mb or more of memory, and I found out it's because mechanize is ...
5
votes
3answers
832 views
How to test a ruby application which uses mechanize
I wrote a small program that uses Mechanize to traverse a site.
I want to write tests for it, but don't want it to actually go log onto the site every time I run the tests. I would like to mock the ...
5
votes
3answers
2k views
How can I keep WWW::Mechanize from following redirects?
I have a Perl script that uses WWW::Mechanize to read from a file and perform some automated tasks on a website. However, the website uses a 302 redirect after every time I request a certain page. I ...
5
votes
5answers
7k views
Python mechanize - two buttons of type 'submit'
I have a mechanize script written in python that fills out a web form and is supposed to click on the 'create' button. But there's a problem, the form has two buttons. One for 'add attached file' and ...
4
votes
1answer
118 views
How to get filename from Content-Disposition in headers
I am downloading a file with Mechanize and in response headers there is a string:
Content-Disposition: attachment; filename=myfilename.txt
Is there a quick standard way to get that filename value?
...
4
votes
1answer
129 views
Perl WWW::Mechanize::Firefox screenshots don't include backgrounds
I don't know if this is possible or not, since I only just started using and learning Perl today, but I installed the WWW::Mechanize::Firefox module and made sure to install the mozrepl plugin in ...
4
votes
1answer
452 views
How do I use Nokogiri and Ruby to scrape values from HTML with nested tables?
I am trying to extract the name, ID, Phone, Email, Gender, Ethnicity, DOB, Class, Major, School and GPA from a page I am parsing with Nokogiri.
I tried some different xpath's but everything I try ...
4
votes
3answers
730 views
Cannot sign in using form with Mechanize
I am trying to submit a form with mechanize. But nothing happens on submit. I just get the login page again.
The form:
http://affilate.mikkelsenmedia.dk/partnersystem/mylogins.php
require ...
4
votes
2answers
112 views
in mechanize, is there anyway of rewriting the url to POST to in a form?
I'm running a python script and I'm using mechanize. The form i'm trying to submit normally uses javascript to rewrite the url to POST to, so to correctly submit the form i need to manually do the ...
4
votes
4answers
2k views
Python mechanize, following link by url and what is the nr parameter?
I'm sorry to have to ask something like this but python's mechanize documentation seems to really be lacking and I can't figure this out.. they only give one example that I can find for following a ...
4
votes
2answers
508 views
Error in Python Mechanize - “mechanize._mechanize.BrowserStateError: not viewing HTML”
for link in br.links(url_regex="inquiry-results.jsp"):
cb[link.url] = link
for page_link in cb.values():
for link in br.links(url_regex="inquiryDetail.jis"):
...
4
votes
1answer
1k views
How do I get Python's Mechanize to POST an ajax request?
The site I'm trying to spider is using the javascript:
request.open("POST", url, true);
To pull in extra information over ajax that I need to spider. I've tried various permutations of:
r = ...
4
votes
2answers
976 views
Ruby Mechanize: user agents?
How many user agents are there in Mechanize? Is there a handy list of all the user agent options anywhere?
4
votes
7answers
2k views
Screen scraping: getting around “HTTP Error 403: request disallowed by robots.txt”
Is there a way to get around the following?
httperror_seek_wrapper: HTTP Error 403: request disallowed by robots.txt
Is the only way around this to contact the site-owner (barnesandnoble.com).. i'm ...
4
votes
1answer
5k views
Ruby Nokogiri Parsing HTML table II
I have just installed ruby+mechanize. It seems to me that it is posible in ruby nokogiri what I want to do but I do not know how to do it.
What about this table? It is just part of html of vBulletin ...
4
votes
7answers
2k views
Programmatic Python Browser with JavaScript
I want to screen-scrape a web-site that uses JavaScript.
There is mechanize, the programmatic web browser for Python. However, it (understandably) doesn't interpret javascript. Is there any ...
4
votes
2answers
2k views
upload file with Python Mechanize
When I run the following script:
from mechanize import Browser
br = Browser()
br.open(url)
br.select_form(name="edit_form")
br['file'] = 'file.txt'
br.submit()
I get: ValueError: value attribute is ...
4
votes
3answers
2k views
Errors with Python's mechanize module
I'm using the mechanize module to execute some web queries from Python. I want my program to be error-resilient and handle all kinds of errors (wrong URLs, 403/404 responsese) gracefully. However, I ...
3
votes
1answer
84 views
how to parse website that doesn't show the codes in the view source?
I'm not sure how to describe the problems properly, but anyway,
so I want to use mechanize to grab the form and getting the name of the input.
however, when I parse using mechanize, it does not show ...
3
votes
2answers
139 views
How can I send a URL request to the server with Python without actually opening my browser (“without using the webbrowser module”)?
I want to send this URL as a request to the server to change something on the website while I am logged in. The problem is, when I use mechanize or urllib2 to open the URL it doesn't change anything ...
3
votes
5answers
210 views
What should I do if socket.setdefaulttimeout() is not working?
I'm writing a script(multi-threaded) to retrieve contents from a website, and the site's not very stable so every now and then there's hanging http request which cannot even be time-outed by ...
3
votes
2answers
92 views
Browserless access to LinkedIn with Python
I'm writing a command-line application that accesses linkedin. I'm using the python-linkedin API.
Things work as I expected, but I have a really big gripe about the authentication process. ...
3
votes
1answer
91 views
How do I parse through an infinite scrolling page (ex. Wallbase.cc/search/sky) with Python?
Not sure if there's anything with Mechanize or BeautifulSoup that could help. Any suggestions would be greatly appreciated!
3
votes
2answers
94 views
On what side is 'HTTP Error 403: request disallowed by robots.txt' generated?
I am trying out Mechanize to make some routine simpler. I have managed to bypass that error by using br.set_handle_robots(False). There are talks about how ethical it's to use it. What I wonder about ...
3
votes
1answer
246 views
Python Mechanize: how to select a dropdown list when two have the same name in web page?
The html that I'm trying to make mechanize parse is:
<select id="topic_id2" name="topics[]" title="blabla" tabindex="4" class="createSelect">
here go options
But then right below it there is ...
3
votes
2answers
191 views
How to download files from a web based file server with Python Mechanize
I have a series of files on a private ftp file server that I am trying to download using mechanize.
The mechanize link objects have the structure
...
3
votes
1answer
278 views
How to Get the Page Source with Mechanize/Nokogiri
I'm logged into a webpage/servlet using Mechanize.
I have a page object
jobShortListPg = agent.get(addressOfPage)
When i use the following
puts jobShortListPg
I get the "mechanized" version of ...
3
votes
2answers
444 views
Perl Mechanize find all links within Div
is there a way to find all links within a specific div by using Mechanize?
I tried to use find_all_links but couldn't find a way to get through this.
for example,
<div class="sometag">
...
3
votes
1answer
98 views
Perl WWW::Mechanize as child class; can't stay logged in to scraped site
I have a simple login script using Perl WWW::Mechanize. I am scripting logins to Moodle. When I just do the login steps as procedural steps, it works. For example (assume "$site_url", USERNAME, and ...
3
votes
2answers
202 views
Mechanize Basic Questions
I am working with this website: http://bioinfo.uni-plovdiv.bg/microinspector/
And from the mech-dump, I get
POST http://bioinfo.uni-plovdiv.bg/microinspector/cgi/result-new1.plx
target_name= ...
3
votes
1answer
1k views
How to set custom user-agent for Mechanize in Rails
I know you have a set of pre-defined aliases you can use by setting agent.user_agent_alias = 'Linux Mozilla' for instance, but what if I want to set my own user agent, as I'm writing a web crawler and ...