Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Python - Scrapy Login form
#1
Hello guyes....i was messing with my script to login in this website but seems doesnt work....i'll like to login first to loggin_url and then request the rest urls to get data

# -*- coding: utf-8 -*-
import scrapy


class StrongbotSpider(scrapy.Spider):
name = 'StrongBot'
login_url = 'https://www.strongflex.eu/en/login?back=my-account'
start_urls = ['https://www.strongflex.eu/en/a3-96-03-8l-fwd/298-221077b-front-wishbone-rear-bush-5902553512151.html?search_query=221077&results=5']

def parse(self, response):
data = {
'email': '[email protected]',
'passwd': 'example',
}
yield scrapy.FormRequest(url=self.login_url, formdata=data, callback=self.after_login)


def after_login(self, response):
for item in response.css('div.pb-right-column.col-xs-12.col-sm-4.col-md-3'):
yield {
'Price' : item.css('#our_price_display::text').extract()
}
Reply


Messages In This Thread
Python - Scrapy Login form - by Baggelhsk95 - Oct-12-2018, 09:25 AM
RE: Python - Scrapy Login form - by stranac - Oct-12-2018, 04:18 PM
RE: Python - Scrapy Login form - by Baggelhsk95 - Oct-13-2018, 06:34 AM
RE: Python - Scrapy Login form - by stranac - Oct-13-2018, 02:27 PM
RE: Python - Scrapy Login form - by Baggelhsk95 - Oct-16-2018, 08:01 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Using python within an html form t4keheart 5 12,534 Aug-17-2020, 12:28 PM
Last Post: t4keheart
  Python Scrapy Date Extraction Issue tr8585 1 4,454 Aug-05-2020, 04:32 AM
Last Post: tr8585
  Python Scrapy tr8585 2 3,448 Aug-04-2020, 04:11 AM
Last Post: tr8585
  Python Webscraping with a Login Website warriordazza 0 3,431 Jun-07-2020, 07:04 AM
Last Post: warriordazza
  How to perform a successful login(signin) through Requests in Python Kalet 1 3,127 Apr-24-2020, 01:44 AM
Last Post: Larz60+
  Automatic login hidden form Andra111 0 2,179 Mar-26-2020, 08:06 AM
Last Post: Andra111
  Posting value from excel to Form (Python+Selenium) revanth 0 2,358 Feb-05-2020, 10:44 AM
Last Post: revanth
  Python-selenium script for automated web-login does not work hectorKJ 2 5,863 Sep-10-2019, 01:29 PM
Last Post: buran
  HOWTO? Login DSL Modem with Python Requests: need Click "Apply" Button Webtest 4 10,409 Aug-20-2019, 04:03 PM
Last Post: johnmina
  Python - Scrapy Baggelhsk95 0 2,830 Apr-24-2019, 01:07 PM
Last Post: Baggelhsk95

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020