Questions tagged [spynner]

Spynner is a stateful programmatic web browser module for Python with Javascript/AJAX support based upon the QtWebKit framework.

Homepage: https://github.com/makinacorpus/spynner

70 questions
0
votes
1 answer

Python Spynner - jQuery calls fail

EDIT: While the original problem is solved, the code fails to actually do anything. Tested in Chrome, it inserts 'hi' into the password box. In Spynner it simply loads the page. I'm attempting to use Spynner to scrape a website my school uses to…
Joshua Walsh
  • 1,915
  • 5
  • 25
  • 50
0
votes
1 answer

Spynner doesn't load html from URL

I use spynner for scraping data from a site. My code is this: import spynner br = spynner.Browser() br.load("http://www.venere.com/it/hotel/roma/hotel-ferrari/#reviews") text = br._get_html() This code fails to load the entire html page. This is…
RoverDar
  • 441
  • 2
  • 12
  • 32
0
votes
1 answer

PyQt - Form does not submit

I'm trying to submit a form using PyQt. I started out using it via Spynner but I've deconstructed that in my repl to just the raw PyQT calls themselves to try to debug the issue. >>> obr.webframe.findAllElements('.qust…
Shane H
  • 3,263
  • 5
  • 26
  • 30
0
votes
1 answer

spynner how i can click login button?

I want to get acces to vk.com - all what I do is: >>> import spynner as s >>> b = s.Browser() >>> b.load('http://vk.com') True >>> b.wk_fill('input[#name=email]', 'my@mail.ru') >>> b.wk_fill('input[name=pass]', 'my_secret_password') >>>…
0
votes
1 answer

How can I set GUI size of spynner python module?

I would like to set a particular size for spynner GUI, how can I do that ? (fullscreen) I know there's QT doc but I don't know any C++ and moreover I need to mix C++ & python
Gilles Quénot
  • 173,512
  • 41
  • 224
  • 223
0
votes
1 answer

Spynner crash python

I'm building a Django app and I'm using Spynner for web crawling. I have this problem and I hope someone can help me. I have this function in the module "crawler.py": import spynner def crawling_js(url) br = spynner.Browser() br.load(url) …
RoverDar
  • 441
  • 2
  • 12
  • 32
-1
votes
0 answers

cannot install spynner setuptools_rust missing although installed

Hello pip install spynner gives an error that ModuleNotFoundError: No module named 'setuptools_rust' are missing. I have installed the setuptools_rust and also upgraded pip as suggested in other posts.
Vaidas
  • 55
  • 6
-1
votes
1 answer

Python spynner not loading my page

I install python spynner im tring to load my page "http://nexo.rf.gd/app.js" Cant load this please help I try with mechinize.Browser() but it can't load html Then i try with selenium remote webdrivers and finally i try with spynner because this…
Harry1992
  • 453
  • 1
  • 5
  • 12
-1
votes
1 answer

running spynner script on linux without x11

I wrote script which collect some userful for me data from my accounts. I run it on windows and everything works ok. But I am not able to run it on linux (without gui). I installed pyqt4, spynner and all necessary dependencies. The problem…
-1
votes
1 answer

how to change default user agent in python spynner module?

I get a syntax error for the following code: import spynner browser = spynner.Browser( (['User-Agent', 'foobar')]) How can I change the default user agent in the python spynner module?
guiboy
  • 101
  • 1
  • 10
1 2 3 4
5