0
votes
0answers
5 views

Python - sockispy with mechanize (without monkeypatching)

I want to know if there is a way to get mechanize.Browser to use a socks proxy (tor) without having to do this. import socks, socket socks.setdefaultproxy(socks.PROXY_TYPE_SOCKS5, "127.0.0.1", port) ...
0
votes
0answers
25 views

Python Mechanize back() - Slow, refresh page? Is there a way to use cache?

Hello fellow programmers. I'm trying to automate a site used for buying. The buying page loads very slowly. After loaded, it is queried using an ajax call. What I want to do is load the page, get the ...
1
vote
1answer
39 views

how to login to a website with python and mechanize

i'm trying to log in to the website http://www.magickartenmarkt.de and do some analyzing in the member-area (https://www.magickartenmarkt.de/?mainPage=showWants). I saw other examples for this, but i ...
1
vote
1answer
22 views

Downloading files in a loop with Python mechanize

I am having trouble downloading multiple files in a loop with Python mechanize. I am also utilizing Beautiful Soup 4. The documentation for either package does not seem to have the answers. Here is ...
0
votes
1answer
22 views

Entering into form with Mechanize

Im writing a smaller part of a larger program that is using mechanize to input a YouTube URL into a form but i cant get it to work Im using the first form on the page nr=0 but i don't what to put in ...
0
votes
0answers
28 views

HTML form has one javascript generated radio button. Is there a way around this using mechanize?

This form, for whatever reason, uses javascript's document.write to draw the radio buttons on the page, and I can't figure out how to circumvent it. After some sleuthing around here and on Google, ...
1
vote
2answers
51 views

How to send JavaScript and Cookies Enabled in Scrapy?

I am scraping a website using Scrapy which require cooking and java-script to be enabled. I don't think I will have to actually process javascript. All I need is to pretend as if javascript is ...
0
votes
1answer
19 views

Unable to download website's contents using mechanize

I got a python script from here to download web contents from a course website: from mechanize import Browser b = Browser() b.open("https://wiki.engr.illinois.edu/display/cs498cc/Home") ...
1
vote
2answers
44 views

Scraping a web page as you manually navigate

Is there a way, using some library or method, to scrape a webpage in real time as a user navigates it manually? Most scrapers I know of such as python mechanize create a browser object that emulates a ...
0
votes
2answers
111 views

Why two type result for my python script?

i have script like this import mechanize url = "http://www.globalhide.com/browse.php?u=u=http://www.whoisxmlapi.com/whoisserver/WhoisService?domainName=google.com" br = mechanize.Browser() ...
0
votes
1answer
59 views

mechanize checkbox control not working python

I'm trying to delete over 2000 spam users of a wikisite, so I used mechanize and user merge and delete (mediawiki extension). the problem I'm encountering is that for deleting, mechanize has to tick a ...
0
votes
1answer
83 views

How to login with mechanize with an jquery ajax submit form? (python)

i'm having the following problem logging in. The problem is that the site is handling the form with jQuery and ajax in this script: function form_login() { if($('#main form ...
0
votes
1answer
42 views

Python Downloading a file without having a direct link on mechanize

After i connect to a website and get the neccessary url's at the last one the downloading automatically triggers and chrome starts to download the file. Howewer in mechanize this doesnt seems to ...
0
votes
2answers
31 views

Downloading files in python in HTTP/1.0

I am using the mechanize library in python to download large files. I am using mechanize to retrieve data in a form . The problem with downloading too many files simultaneously using python is that ...
0
votes
1answer
53 views

Trouble automating form login with Python Mechanize

I have been trying to automate a site login that requires cookies. I found an answer on this site, and replied to it, but I had problems logging in becasue I forgot I had an account here already. I ...
1
vote
1answer
39 views

Python Mechanize Submit Button on NIH Website

I'm using mechanize on python 2.7.3. I'm looking for help on hitting the submit button on NIH's gene website. The button is an actual button element surrounded by divs and not inside any form field. ...
0
votes
0answers
41 views

How to fetch div inside of form

I want to fetch live football scores from a website.This scores are inside a div which is inside a live form. I tried to get them by using python mechanize module , set header and browser options. ...
0
votes
1answer
84 views

adding directory to sys.path /PYTHONPATH

I am trying to import a module from a particular directory. The problem is that if I use sys.path.append(mod_directory) to append the path and then open the python interpreter, the directory ...
0
votes
2answers
63 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
1answer
40 views

Input into site using Mechanize (Python)

im trying to make a dictionary program using dictionary.com for the source but i cant find the name of the search box in the source code from mechanize import Browser inp = raw_input("Enter Word: ...
0
votes
1answer
42 views

Using Machanize to access password protected site

Im trying to get into a site using machanize but when i run my script its still just giving me the source for the homepage and not for the actual site here is the code from mechanize import Browser ...
0
votes
0answers
49 views

Python script to submit javascript form

I am putting together a script to auto submit a form for me. I got everything to work but I can't get it to submit the form. I think it has something to do with the fact that each field has: ...
0
votes
0answers
15 views

How extract search result from blekko using Mechanize in Python

I have code like this. import mechanize br = mechanize.Browser() br.set_handle_robots(False) br.addheaders = [('user.agent','Firefox')] response = ...
0
votes
1answer
40 views

Creating a custom form for mechanize

I have a form on a website that is not directly selectable (as it is embedded in a javascript). So selecting it via mechanize browser object is not possible. What i want to do is to create a form just ...
0
votes
1answer
43 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 ...
1
vote
1answer
91 views

Can't automate login using python mechanize (must “activate” specific browser)

I seem to have difficulty logging into a website, which requires browser authenticaton. What happens is when you first log on, the website redirects you to a page saying "We have sent an email to your ...
0
votes
0answers
62 views

Filling a form using a python script

I'm trying to write a python script that will fill a form on a website, send it, and after sending I want to search for a keyword on the resulting webpage. More specifically, the form is: ...
0
votes
0answers
36 views

Mechanize Python and Google Analytics

When I open a website with mechanize: br.open('http://website.com') how would this appear on Google Analytics? I understand that Analytics gives the browser a __utmb cookie that expires after 30 ...
0
votes
1answer
33 views

How can I see the output HTML

I have this code in python: resp = mechanize.Request(url, data) cj.add_cookie_header(resp) res1 = mechanize.urlopen(resp) How can I see the output HTML?
0
votes
1answer
40 views

How to check if the job is done correctly (Python mechanize )

I have this code that is doing this: 1. check some checkboxes 2. delete what i've selected resp = mechanize.Request('http://some_url/manager.php', data) cj.add_cookie_header(resp) res = ...
0
votes
0answers
32 views

Retireve data from dynamic web form object

I am trying to build a program that takes in data from a table in a website using Mechanize in Python. The table has a a variety of other controls that list prices of items. I am trying to change the ...
1
vote
2answers
78 views

Python submit post data using mechanize

The url that i have to submit to the server looks like this: www.mysite.com/manager.php?checkbox%5B%5D=5&checkbox%5B%5D=4&checkbox%5B%5D=57&self=19&submit=Go%21 The post data I put ...
0
votes
0answers
16 views

Submit a value from a dropdown menu using Python Mechanize [duplicate]

How can a select a value from a dropdown menu and submit it? I want to use Python mechanize and avoid the error "mechanize._form.ParseError: nested FORMs" What's the simpliest way to do? The drop ...
0
votes
1answer
54 views

Python post form with button javascript

I try to post ads in a website. We have 2 forms ,the first form ask me information of ads and is ok i submit them but in second form, to submit i have a button (input) with javacript, ...
0
votes
0answers
19 views

Why did positioning with BeautifulSoap doesnt work? [duplicate]

I'm using Python Mechanize to do automated jobs. Here I want to position my self on the first form tag and from a dropdown menu to select a value and submit: resp = br.open(url_manager) soup = ...
0
votes
0answers
52 views

How can i select a value from dropdown menu which is found in a double form tag with Python mechanize?

I'm trying to select a value from a second form tag and submitting: <form action="manager.php" method="GET"> ..... <form action="manager.php" method="post">. ====here i need to select a ...
0
votes
0answers
49 views

Sublime Text Flake8 lint error on Mechanize which does not appear when running flake8 by hand

I use mechanize library for a small python project. Why does Sublime Text 2 (with Flake8Lint) shows me that there is no such member select_form() in browser. I have checked _mechanize.py and there it ...
0
votes
1answer
71 views

Python mechanize checkboxes with dropdown submit

I have an email client. I check the "checkboxes" of emails that I need do something (move,detele, egg) like this using python mechanize: br.open(login_url) br.open(url_1) br.select_form(nr=0) for i ...
0
votes
1answer
65 views

Python mechanize checkboxes

I want to do this using Python Mechanize. This is HTML page: <form action="config.php" method="POST"> <div> <img src="/images/delete1.png" /> ...
-4
votes
1answer
45 views

Python Mechanize “Password Control <NONE>” [closed]

I have this form how i can submit() <loginFrm POST http://10.10.10.251/goform/login application/x-www-form-urlencoded <TextControl(user=)> <PasswordControl(<None>=)> ...
2
votes
0answers
84 views

Webscraping with Python

I'm using this website (http://gasbuddy.com/) to collect gasoline prices. Basically, I want to write a python script that will input zip codes into the search box at the top of the page, and then ...
0
votes
1answer
35 views

Python Mechanize file upload keeps uploading 1kb files

This is how I initialize my mechanize browsers # Browser br = mechanize.Browser() # Cookie Jar cj = cookielib.LWPCookieJar() br.set_cookiejar(cj) # Browser options br.set_handle_equiv(True) ...
0
votes
1answer
25 views

Serch for specific information in response().read()

I'm trying to find out if form was submitted correctly using Mechanize Python library. How can I search for specific text in returned website? For example I want to check if website contain text: ...
0
votes
1answer
123 views

Python mechanize - form submission - selecting the correct form

Trying to use Python mechanize to log in to a webpage. Since I have a problem with finding the correct form, instead of posting the URL (which the code might change) I will copy some of the code here ...
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 ...
0
votes
0answers
20 views

Python Mechanize skips the first form

This is weird, I've been weeks trying understand what I'm doing bad, with python and mechanize library: it skips the first form on a concrete page, why? I've explained it here with reproducible code: ...
0
votes
1answer
73 views

How do you view the request headers that mechanize is using?

I attempting to submit some data to a from programatically. I'm having a small issue where the server is "not liking" what I'm sending it. Frustratingly, there is no error messages, or anything that ...
0
votes
1answer
86 views

logging into https site using python mechanize library

I have the following code: import requests import sys import urllib2 import re import mechanize import cookielib #import json #import imp #print(imp.find_module("requests")) #print(requests.__file__) ...
0
votes
0answers
58 views

web scraping using mechanize

The following code I used to download a file, produces damaged file when I run it on windows, while the pdf I get by running the code on ubuntu is readable. Can somebody give me a reason why? br = ...
1
vote
2answers
140 views

Downloading a image using Python Mechanize

I'm trying to write a Python script to download a image and set it as my wallpaper. Unfortunately, the Mechanize documentation is quite poor. My script is following the link correctly, but I'm having ...

1 2 3 4 5 12