Tagged Questions
8
votes
2answers
330 views
Extremely strange Web-Scraping issue: Post request not behaving as expected
I'm attempting to programmatically submit some data to a form on our company's admin page rather than doing it by hand.
I've written numerous other tools which scrape this website and manipulate ...
1
vote
1answer
657 views
using tor as a SOCKS5 proxy with python urllib2 or mechanize
My goal is to use python's mechanize with a tor SOCKS proxy.
I am not using a GUI with the following Ubuntu version:
Description: Ubuntu 12.04.1 LTS
Release: 12.04
...
0
votes
3answers
228 views
Python Mechanize to check if a server is available
I'm trying to write a script which will read a file containing some urls and then open a browser instance using mechanize module. I'm just wondering how I can do so if some url does not exist or if ...
0
votes
1answer
74 views
Mechanize: Only following links with certain element in URL
Learning Mechanize:
I am wanting to crawl through a news site and only follow the links that have a ?sid in the link..
I cannot seem to find much on Mechanize documentation.
import mechanize
br = ...
0
votes
1answer
159 views
Python x-www-form-urlencoded POSTing: cannot find attributes [closed]
Recently I came across a page which seems impossible to make POST request via python since I could not find certain attributes anywhere in the source code.
So basically here's the content from Live ...
0
votes
1answer
220 views
Unable to connect to secure website using mechanize in Python
I'm trying to open a secure (https) website using mechanize library in Python. When I try to access the website, the server closes the connection and exception BadStatusLine is raised.
I have tried ...
0
votes
0answers
80 views
mechanize throwing 404 on submit() with percent encoded url
I'm using python mechanize on a ASP.net application to fetch some data. The program is running fine, except for percent encoded urls.
The process of fetching data contains three steps: requesting url ...
3
votes
1answer
223 views
Python unable to retrieve form with urllib or mechanize
I'm trying to fill out and submit a form using Python, but I'm not able to retrieve the resulting page. I've tried both mechanize and urllib/urllib2 methods to post the form, but both run into ...
0
votes
0answers
115 views
Python scrapping web - iOS Dev Center page
I would like submit form in iOS Provisioning Portal page for create new profile, so i tried with urllib2 and mechanize for summit that form but not success either. For urllib2 i got a page with msg; ...
1
vote
1answer
3k views
Error - urlopen error [Errno 8] _ssl.c:504: EOF occurred in violation of protocol , help needed
My aim is to extract the html from all the links in the first page after entering the google search term. I work behind a proxy so this is my approach.
1.I first used mechanize to enter the search ...
1
vote
0answers
373 views
Opening SSL URLs with Mechanize in Python
How do you use mechanize to open an SSL URL in Python?
I'm attempting a trivial page retrieval with Python 2.7.3 on Ubuntu like:
import mechanize
browser = mechanize.Browser()
resp = ...
2
votes
1answer
179 views
Why would this section of python code hang during execution?
try:
html = urlopen('http://glbse.com/api/asset/' + asset.name)
except:
print 'error while updating the price of ' + asset.name
continue
json_txt = html.read()
ticker = ...
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://' + ...
1
vote
1answer
179 views
urllib2, mechanise not returning same as browser - what else to spoof?
I am trying to create a script (purely learning purposes) to translate a given word with a few different dictionaries. I worked my way through two, using urllib2 and beautifulsoup to get and parse the ...
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 ...
4
votes
1answer
310 views
“Out of Memory” error with mechanize
I was trying to scrape some information from a website page by page, basically here's what I did:
import mechanize
MechBrowser = mechanize.Browser()
Counter = 0
while Counter < 5000:
...
0
votes
3answers
293 views
How can I use python to “send” data (images) to ImageBam.com
I've read a lot about multipart/forms, mechanize and twill, but I couldn' findout howto implement a code.
Using MultipartPostHandler to POST form-data with Python
First I Tried to fill the forms on
...
3
votes
2answers
993 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
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
213 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 ...
0
votes
1answer
255 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, ...
2
votes
4answers
3k views
Python: Clicking a button with urllib or urllib2
I want to click a button with python, the info for the form is automatically filled by the webpage. the HTML code for sending a request to the button is:
INPUT type="submit" value="Place a Bid">
...
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 ...
0
votes
1answer
1k views
urllib2 download captcha image
I am trying download captcha image from VBB board by using "mechanize" aka urllib2.
This is where captcha locate (login with any username and pass you will be asked captcha):
<img id="imagereg" ...
1
vote
2answers
636 views
Python urllib2 parse html problem
I am using mechanize to parse html of website, but with this website i got strange result.
from mechanize import Browser
br = Browser()
r = br.open("http://www.heavenplaza.com")
result = r.read()
...
0
votes
1answer
173 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 ...
0
votes
1answer
253 views
Unable to read HTML data - Python
I am attempting to parse html data from a website using BeautifulSoup for python. However, urllib2 or mechanize is not able to read the whole html format. The returned data is
<html>
...
2
votes
3answers
1k views
302s and losing cookies with urllib2
I am using liburl2 with CookieJar / HTTPCookieProcessor in an attempt to simulate a login to a page to automate an upload.
I've seen some questions and answers on this, but nothing which solves my ...
1
vote
1answer
949 views
Proxy seems to be ignored by Mechanize?
I am using an http proxy and the Mechanize module. I initialize the mechanize object and set the proxy like so:
self.br = mechanize.Browser()
self.br.set_proxies({"http": proxyAddress}) #proxy ...
2
votes
2answers
405 views
My python program always brings down my internet connection after several hours running, how do I debug and fix this problem?
I'm writing a python script checking/monitoring several server/websites status(response time and similar stuff), it's a GUI program and I use separate thread to check different server/website, and the ...
0
votes
1answer
2k views
python urllib post question
im making some simple python post script but it not working well.
there is 2 part to have to login.
first login is using 'http://mybuddy.buddybuddy.co.kr/userinfo/UserInfo.asp' this one.
and second ...
43
votes
8answers
13k 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 ...
0
votes
2answers
536 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 ...
4
votes
3answers
3k 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 ...
