Tagged Questions
0
votes
2answers
66 views
Way around HTTP 403 with python
im makeing a program that uses google to search but i cant becuase of the HTTP error 403 is there any way around it or anything im using mechanize to browse here is my code
from mechanize import ...
0
votes
3answers
75 views
What are my options for caching fetched web pages?
My app does a lot of page scraping, e.g. fetching historical weather data. Once I've fetched a specific page, I'd like to cache it in my PostgreSQL database so I don't have to hit the remote server ...
0
votes
0answers
108 views
What exactly does 'window.location.replace' do / how to replicate it in mechanize?
I'm interfacing with a site that implements delaying a page-load with client-side JavaScript. Basically, a form is submitted on PageA.asp, and instead of the data going to PageB.asp, it goes to ...
1
vote
0answers
53 views
Is is possible to POST to a URL with Mechanize without opening it first?
I would like POST to a URL with some form fields filled in with Mechanize in Python. Most code examples like this one:
import mechanize
url = "http://duckduckgo.com/html"
br = mechanize.Browser()
...
1
vote
0answers
107 views
mechanize keeps giving URLErrors
I'm automating some stuff with mechanize. I have a working program that logs into a site and goes to a page while logged in. However, sometimes I just get URLErrors stating the connection has timed ...
1
vote
0answers
90 views
How do I kill http hung connections?
I'm working on a script to crawling some interesting web pages for later research and it's programmed in a multi-threaded way. The problem I noticed is that no matter what library I use, for example ...
2
votes
1answer
185 views
Ruby script for posting comments
I have been trying to write a script that may help me to comment from command line.(The sole reason why I want to do this is its vacation time here and I want to kill time).
I often visit and post on ...
0
votes
2answers
233 views
Using Mechanize to download a file with multi-threads?
How to use Mechanize to download a file more faster
Is there a way to get the content-length before downloading a file, and then divide it into parts, so that I can download it by using multithreads?
...
3
votes
5answers
2k 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 ...
0
votes
2answers
215 views
What should I do with hanging http POST request in python?
Sample code:
socket.setdefaulttimeout(150)
MechBrowser = mechanize.Browser()
Header = {'User-Agent': 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.8) Gecko/20100722 Firefox/3.6.8 GTB7.1 ...
1
vote
0answers
299 views
Mechanize for Python and authorization without first getting a 401 error
I'm trying to use Mechanize to automate interactions with a very picky legacy system. In particular, after the first login page the authorization must be sent with every request it knocks you out of ...
0
votes
0answers
407 views
Perl Mechanize module session again
I try to use perl - mechanize module to access the webpage, but I cannot simulate the result when I use firefox.
firefox steps as below:
1.go to website ...
0
votes
1answer
256 views
Why is the http request hanging in my python script?
One of my script runs perfectly on an XP system, but the exact script hangs on a 2003 system. I always use mechanize to send the http request, here's an example:
import socket, mechanize, urllib, ...
0
votes
1answer
204 views
using mechanize to post on wordpress
Long story short I need to post automated comments to my WordPress blog. I find mechanize for Python (hurray! no need to muck around in PHP!) but I can't post comments with it. According to the debug ...
2
votes
1answer
289 views
Web Scraper: Limit to Requests Per Minute/Hour on Single Domain?
I'm working with a librarian to re-structure his organization's digital photography archive.
I've built a Python robot with Mechanize and BeautifulSoup to pull about 7000 poorly structured and mildy ...
5
votes
4answers
236 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 ...
2
votes
1answer
877 views
Http Error 405/500 in Python/Mechanize (using mechanize auto login one website)
Here is the website's address on which i want to using python/mechanize to auto login:
http://www.autohome.com.cn/tools/hometoplogin.html
And here is my code:
br = Browser()
login_url = ...
0
votes
2answers
538 views
How to submit a form with more than 1 submit button. Sending a POST to a website. (Python)
I am creating a script using Python Mechanize that can login to a website and submit a form.
However, this form has 3 submit buttons (Preview, Post, and Cancel). I'm used to only one button...
This ...
5
votes
1answer
2k views
TypeError: ListControl, must set a sequence (python error)
I am using Python Mechanize to open a website, fill out a form, and submit that form.
It's actually pretty simple.
It works until I come across radio buttons and "select" input boxes.
br.open(url)
...
3
votes
2answers
224 views
Can can I encode spaces as %20 in a POST from WWW::Mechanize?
I'm using WWW::Mechanize to do some standard website traversal, but at one point I have to construct a special POST request and send it off. All this requires session cookies.
In the POST request I'm ...
5
votes
4answers
8k views
Multipart File Upload in Ruby
I simply want to upload an image to a server with POST. As simple as this task sounds, there seems to be no simple solution in Ruby.
In my application I am using WWW::Mechanize for most things so I ...


