Python
Kangvcar Blogs
这是一个个人学习历程的记录博客。希望能大家多多指教。
展开
-
INFO-SPIDER —— 集众多数据源于一身的爬虫工具箱
场景一小明一如往常打开 Chrome 浏览器逛着论坛,贴吧,一不小心点开了网页上的广告,跳转到了京东商城,下意识去关闭窗口时发现 (OS:咦?京东怎么知道我最近心心念念的宝贝呢?刚好我正需要呢!),既然打开了那就看看商品详情吧 (OS:哎哟不错哦),那就下单试试吧!场景二小白听着网易云音乐的每日推荐歌单无法自拔 (OS:哇!怎么播放列表里都是我喜欢的音乐风格?网易云音乐太棒了吧!深得我心啊!黑胶会员必须来一个!),逛着知乎里的“如何优雅的XXX?”,“XXX是怎样一种体验?”,“如何评价XXX?” (原创 2020-08-22 11:23:37 · 1406 阅读 · 4 评论 -
Python操作MongoDB - 极简教程
Python 连接 MongoDB安装PyMongo模块pip install pymongo使用MongoClient建立连接from pymongo import MongoClient# 以下为三种建立连接的方式#client = MongoClient()#client = MongoClient('localhost', 27017)#client = MongoClient('m原创 2017-11-21 14:00:00 · 576 阅读 · 0 评论 -
手把手教你用7行代码实现微信聊天机器人 -- Python wxpy
环境要求:Windows / Linux / Mac OSPython 3.4-3.6,以及 2.7 版本wxpy安装## 使用国内源安装速度快pip install -U wxpy -i "https://pypi.doubanio.com/simple/"实例让机器人与所有好友聊天from wxpy import *# 实例化,并登录微信bot = Bot(cache_path=Tr原创 2017-11-21 13:50:06 · 804 阅读 · 0 评论 -
手把手教你用1行代码实现人脸识别 -- Python Face_recognition
环境要求:Ubuntu17.10 Python 2.7.14环境搭建:1. 安装 Ubuntu17.10 > 安装步骤在这里2. 安装 Python2.7.14 (Ubuntu17.10 默认Python版本为2.7.14)3. 安装 git 、cmake 、 python-pip# 安装 git$ sudo apt-get install -y git# 安装 cmake$ sudo原创 2017-11-21 13:47:57 · 7563 阅读 · 3 评论 -
Python爬虫-爬取51job.com 招聘信息并写入文件和数据库mysql
项目代码地址:https://github.com/kangvcar/pyproject/blob/master/Spiders/Spider_51Job.py原创 2017-10-17 09:10:43 · 3774 阅读 · 0 评论 -
Python爬虫-爬取集思录的金融信息,并写入文件和检测数据变化发送邮件通知
项目代码地址: ===欢迎fork 、star ===https://github.com/kangvcar/pyproject/blob/master/Spiders/Spider_jisilu_4.py原创 2017-10-17 09:19:36 · 7856 阅读 · 0 评论 -
Python爬虫-爬取 ygdy8.com 站点的所有电影并写入文件和数据库
项目代码地址: ===欢迎fork 、star ===https://github.com/kangvcar/pyproject/blob/master/Spiders/Spider_ygdy8.py原创 2017-10-17 09:28:20 · 10920 阅读 · 0 评论 -
Python爬虫-爬取xixizhan.com站点的所有电影列表并写入文件和数据库mysql
项目代码地址: ===欢迎fork 、star ===https://github.com/kangvcar/pyproject/blob/master/Spiders/Spider_xixizhan.py原创 2017-10-17 09:25:45 · 4055 阅读 · 0 评论 -
BeautifulSoup 用法和实例
Usage_BeautifulSoup#!/usr/bin/env python# -*- coding: utf-8 -*-# @Date : 2017-09-24 15:45:17# @Author : kangvcar (kangvcar@126.com)# @Link : http://www.github.com/kangvcar/# @Versio原创 2017-09-25 15:32:14 · 2650 阅读 · 0 评论 -
BeautifulSoup_CSS_Select 用法和实例
Usage_BeautifulSoup_CSS_Select#!/usr/bin/env python# -*- coding: utf-8 -*-# @Date : 2017-09-24 18:50:21# @Author : kangvcar (kangvcar@126.com)# @Link : http://www.github.com/kangvcar/原创 2017-09-25 15:34:23 · 3079 阅读 · 0 评论 -
BeautifulSoup_find_ 用法和实例
Usage_BeautifulSoup_find_* 函数的使用#!/usr/bin/env python# -*- coding: utf-8 -*-# @Date : 2017-09-24 17:27:33# @Author : kangvcar (kangvcar@126.com)# @Link : http://www.github.com/kangvca原创 2017-09-25 15:35:17 · 5017 阅读 · 0 评论 -
PyQuery 用法和实例
Usage_PyQuery#!/usr/bin/env python# -*- coding: utf-8 -*-# @Date : 2017-09-25 11:08:58# @Author : kangvcar (kangvcar@126.com)# @Link : http://www.github.com/kangvcar/# @Version : $I原创 2017-09-25 15:36:16 · 2568 阅读 · 0 评论 -
Requests 用法和实例
Usage_Requests#!/usr/bin/env python# -*- coding: utf-8 -*-# @Date : 2017-09-24 21:21:04# @Author : kangvcar (kangvcar@126.com)# @Link : http://www.github.com/kangvcar/# @Version : $原创 2017-09-25 15:36:57 · 2471 阅读 · 0 评论 -
Selenium 用法和实例
Usage_Selenium#!/usr/bin/env python# -*- coding: utf-8 -*-# @Date : 2017-09-24 22:04:33# @Author : kangvcar (kangvcar@126.com)# @Link : http://www.github.com/kangvcar/# @Version : $原创 2017-09-25 15:37:35 · 2602 阅读 · 0 评论 -
Urllib2 用法和实例
Usage_Urllib2# -*- coding: utf-8 -*-import urllibimport urllib2# 使用urllib2 获取网页源码方法一:# url = 'http://www.baidu.com/'# response = urllib2.urlopen(url)# html = response.read()# print原创 2017-09-25 15:38:05 · 2677 阅读 · 0 评论 -
XPath 用法和实例
Usage_XPath#!/usr/bin/env python# -*- coding: utf-8 -*-# @Date : 2017-09-24 20:51:15# @Author : kangvcar (kangvcar@126.com)# @Link : http://www.github.com/kangvcar/# @Version : $Id$原创 2017-09-25 15:38:37 · 2421 阅读 · 0 评论 -
win10安装python2.7.msi等出错的解决方法(没有权限所有版本安装都会出错)
在Win10下安装msi格式的安装程序时,有时会有如下的错误提示: “There is a problem with this Windows Installer package. A DLL required for this install to complete could not be run. Contact your support personnel or package ve转载 2017-01-18 11:36:35 · 6424 阅读 · 0 评论