-1
votes
1answer
89 views

Submit form in Python 3

I am trying to submit a form using Python 3. In Python 2 I did the following: br=mechanize.Browser() br.set_handler_robots(False) br.addheaders = [('User-agent', 'Mozilla/5.0 (X11; U; Linux i686; ...
0
votes
2answers
106 views

Python authenticate and launch private page using webbrowser, urllib and CookieJar

I want to login with cookiejar and and launch not the login page but a page that can only be seen after authenticated. I know mechanize does that but besides not working for me now, I rather do this ...
3
votes
1answer
202 views

What is a urllib code equivalent for a mechanize submit() method?

Im not sure the Title is clear enough so this is whats up: I've started learning Python about 3 weeks ago, and recently I gave myself a task - to login to a website and then read specific page, and ...
0
votes
0answers
41 views

How to get status bar of the playing video using mechanize, beatifulsoup or urllib [closed]

I have a working skript that goes to the website, do what I need, but unfortunately I can't find any information how to deal with videos on the page. What I want to do: * Get the status bar of the ...
0
votes
0answers
81 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
228 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 ...
1
vote
1answer
251 views

Check if a web page has change which requires login / cookie

I'm using this code that I found online to check a webpage to see if it has been modified since the last time it was checked. However I now have a need for it to work behind a site that require ...
6
votes
1answer
431 views

Executing JavaScript in href of links with Python

I am trying to download some PDF's automatically on a site (http://bibliotecadigitalhispanica.bne.es) using Python. I've tried using the urllib/urllib2/mechanize modules (which I have been using for ...
0
votes
2answers
632 views

How do you open a URL with Python without using a browser?

I want to open a URL with Python code but I don't want to use the "webbrowser" module. I tried that already and it worked (It opened the URL in my actual default browser, which is what I DON'T want). ...
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
216 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 ...
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"> ...
0
votes
1answer
2k 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" ...
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 ...
1
vote
2answers
637 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
2answers
285 views

which function of mechanize is equal with urllib.urlencode

urllib.urlencode could encode url's params. It seems no likely function in Mechanize. So, I have to use urllib and Mechanize, because I only need urlencode. Any function could implement the same ...
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 ...
8
votes
4answers
2k 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: ...