简体   繁体   English

使用BeautifulSoup和Python 2.7使用Google登录到网站

[英]Login to a website with Google using BeautifulSoup and Python 2.7

I am writing a Python web-crawler for Quora , but need to log in using Google. 我正在为Quora编写Python网络抓取工具,但需要使用Google登录。 I have searched the net, but nothing satisfies my problem. 我已经在网上搜索过,但是没有一个可以满足我的问题。 Here is my code: 这是我的代码:

# -*- coding: utf-8 -*-
import mechanize
import os
import requests
import urllib2
from bs4 import BeautifulSoup
import cookielib

# Store the cookies and create an opener that will hold them
cj = cookielib.CookieJar()
opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cj))

# Add our headers
opener.addheaders = [('User-agent', 'RedditTesting')]

# Install our opener (note that this changes the global opener to the one
# we just made, but you can also just call opener.open() if you want)
urllib2.install_opener(opener)

# The action/ target from the form
authentication_url = 'https://quora.com'

# Input parameters we are going to send
payload = {
  'op': 'login-main',
  'user': '<username>',
  'passwd': '<password>'
}

# Use urllib to encode the payload
data = urllib.urlencode(payload)

# Build our Request object (supplying 'data' makes it a POST)
req = urllib2.Request(authentication_url, data)

# Make the request and read the response
resp = urllib2.urlopen(req)
contents = resp.read()




 # specify the url
 quote_page = "https://www.quora.com/"

 # query the website and return the html to the variable ‘page’
 page = urllib2.urlopen(quote_page)

 # parse the html using beautiful soup and store in variable `soup`
 soup = BeautifulSoup(page, 'html.parser')
 # Take out the <div> of name and get its value
 name_box = soup.find('div', attrs={"class": "ContentWrapper"})

 name = name_box.text.strip() # strip() is used to remove starting and    trailing

 print name


 for link in soup.find_all('img'):
    image = link.get("src")

    os.path.split(image)
    image_name = os.path.split(image)[1]
    print(image_name)
    r2 = requests.get(image)
    with open(image_name, "wb") as f:
       f.write(r2.content)

As I don't have any actual username for the site, I use my own Gmail account. 由于我没有该网站的实际用户名,因此我使用了自己的Gmail帐户。 In order to login, I used some code from a different question, but that does not work. 为了登录,我使用了来自其他问题的一些代码,但这不起作用。

Any indentation errors are due to my lousy formatting. 任何缩进错误均归因于我的格式不正确。

To login and scrape, use a Session; 要登录和抓取,请使用Session; make a POST request with the your credentials as a payload and then scrape. 使用您的凭据作为有效内容进行POST请求,然后进行抓取。

import requests
from bs4 import BeautifulSoup

with requests.Session() as s:

    p = s.post("https://quora.com", data={
        "email": '*******',
        "password": "*************"
    })
    print(p.text)

    base_page = s.get('https://quora.com')
    soup = BeautifulSoup(base_page.content, 'html.parser')
    print(soup.title)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM