摘要:
博客搬家 阅读全文
摘要:
跳转到传入页面,获得源码,调用商品解析函数 存储函数,将商品信息存入数据库 阅读全文
摘要:
[TOC] selenium "安装,配置及连接" selenium 官方网站: GitHub: PyPI: 官方文档: 中文文档: 安装: selenium需要配合浏览器及其驱动配合 ChromeDriver 官方网站:(墙) 下载地址: 下载地址2: 版本映射表: 浏览器中查看Chrome版本( 阅读全文
摘要:
```
'''
根据关键字获取今日头条图集
''' import os
import requests
from urllib.parse import quote
from hashlib import md5
from multiprocessing.pool import Pool baseurl = 'https://www.toutiao.com/search_content/?'... 阅读全文
摘要:
```
import requests
from pyquery import PyQuery as pq
from pymongo import MongoClient headers = { 'Referer': 'https://m.weibo.cn/u/2830678474', 'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64) ... 阅读全文
摘要:
[TOC] redis存储 安装,链接与配置 "edis" 官方网站: 官方文档: 中文官网: GitHub: 中文教程: Redis Desktop Manager:可视化管理工具,来管理Redis Redis Desktop Manager GitHub: 安装: 进入命令行模式: 修改配置文件 阅读全文
摘要:
[TOC] pymongo操作MongoDB 安装,启动及链接 MongoDB "返回目录" + 官方网站: + 官方文档: + GitHub: + 中文教程: + 16.04安装: + 导入MongoDB的GPG key: + 创建apt get源列表: + 更新apt get源: + 安装Mon 阅读全文
摘要:
创建连接对象时,用client = pymongo.MongoClient('mongodb://user:password@localhost:27017/')这样的方式,增加权限认证 阅读全文