资源简介
自动爬取微信公众号历史所有文章以及封面图片
Selenium + Chromedriver
代码片段和文件信息
# -*- coding: utf-8 -*-
from selenium import webdriver
import time
import json
import requests
import re
import random
#微信公众号账号
user=“bigdataservice@cisdi.com.cn“
#公众号密码
password=“302clubEasyData“
#设置要爬取的公众号列表
gzlist=[‘东方国信‘]
#登录微信公众号,获取登录之后的cookies信息,并保存到本地文本中
def weChat_login():
#定义一个空的字典,存放cookies内容
post={}
#用webdriver启动谷歌浏览器
print(“启动浏览器,打开微信公众号登录界面“)
driver = webdriver.Chrome(executable_path=r‘D:\360安全浏览器下载\chromedriver_win32\chromedriver.exe‘)
#打开微信公众号登录页面
driver.get(‘https://mp.weixin.qq.com/‘)
#等待5秒钟
time.sleep(5)
print(“正在输入微信公众号登录账号和密码......“)
#清空账号框中的内容
driver.find_element_by_xpath(‘//*[@id=“header“]/div[2]/div/div/form/div[1]/div[1]/div/span/input‘).clear()
#自动填入登录用户名
driver.find_element
相关资源
- python爬虫-scrapy框架
- python爬虫爬取当当网
- PYTHON爬虫示例21345
- Python-使用python抓取微信公众号中的文
- python爬虫(爬取新浪微博数据)
- python爬虫百度图片(将网络图片采集
- 新手python爬虫必学案例,爬取豆瓣电
- Python爬虫开发与项目实战-范传辉.pd
- 基于 Python 实现微信公众号爬虫
- python爬虫爬取小说网源码
- python爬虫源码 :qq音乐歌曲信息爬取
- Python-爬取微信公众号文章
- Python爬虫爬取拉勾网(可视化分析)
- python 爬虫全国大部分城市最低气温爬
- Python爬虫爬取百度百科词条源码
- python爬取网络历史天气数据
- python爬虫批量apk文件
- python爬虫爬取知网标题和摘要
- python爬虫
- python爬虫--爬取百度百科字条python2和
- python爬虫 爬取qq音乐
- Python爬虫,爬取136书屋的小说beautif
- 抓取国家统计局区划、城乡划分代码
- Python爬虫抓取网页新闻数据到sqlserv
- python爬虫,爬取扇贝当日单词保存到
评论
共有 条评论