上一页 1 ··· 134 135 136 137 138 139 140 141 142 ··· 198 下一页
摘要: 前言 pymsql是Python中操作MySQL的模块,其使用方法和MySQLdb几乎相同。但目前pymysql支持python3.x而后者不支持3.x版本。 本文测试python版本:2.7.11。mysql版本:5.6.24 一、安装 1 pip3 install pymysql 1 pip3 阅读全文
posted @ 2018-04-24 14:11 brady-wang 阅读(621) 评论(0) 推荐(0)
摘要: #coding=utf-8from sqlalchemy import create_enginefrom sqlalchemy.ext.declarative import declarative_basefrom sqlalchemy import Column, String, Integer 阅读全文
posted @ 2018-04-24 13:06 brady-wang 阅读(337) 评论(0) 推荐(0)
摘要: 代码如下 阅读全文
posted @ 2018-04-23 22:48 brady-wang 阅读(376) 评论(0) 推荐(0)
摘要: 循环的版本 阅读全文
posted @ 2018-04-23 16:35 brady-wang 阅读(1945) 评论(0) 推荐(0)
摘要: #coding=utf-8 import re from lxml import etree import requests def requests_view(response): import webbrowser requests_url = response.url base_url = '' %(requests_url) base_url = bas... 阅读全文
posted @ 2018-04-23 15:36 brady-wang 阅读(322) 评论(0) 推荐(0)
摘要: #coding=utf-8 import re from lxml import etree import requests response = requests.get("http://yeves.cn/") content = response.content.decode() html = etree.HTML(content) res = html.xpath('/html/bo... 阅读全文
posted @ 2018-04-23 15:15 brady-wang 阅读(316) 评论(0) 推荐(0)
摘要: 查看安装的包 conda list 更新 安装包 在终端中键入: conda install package_name 例如,要安装 pandas,在终端中输入: conda install pandas 卸载包 在终端中键入 : conda remove package_names 上面命令中的p 阅读全文
posted @ 2018-04-19 14:43 brady-wang 阅读(448) 评论(0) 推荐(0)
摘要: 这里收集了3种利用php获得网页源代码抓取网页内容的方法,我们可以根据实际需要选用。 1、使用file_get_contents获得网页源代码 这个方法最常用,只需要两行代码即可,非常简单方便。 参考代码: <?php $fh= file_get_contents('http://www.webka 阅读全文
posted @ 2018-04-17 15:01 brady-wang 阅读(26403) 评论(0) 推荐(0)
摘要: 什么是正则表达式 正则表达式是对字符串操作的一种逻辑公式,就是 事先定义好的一些特定字符、及这些特定字符的组合,组成一个“规则字符”,这个“规则字符” 来表达对字符的一种过滤逻辑。 正则并不是python独有的,其他语言也都有正则python中的正则,封装了re模块 python正则的详细讲解 常用 阅读全文
posted @ 2018-04-17 12:01 brady-wang 阅读(337) 评论(0) 推荐(0)
摘要: 什么是Requests Requests是用python语言基于urllib编写的,采用的是Apache2 Licensed开源协议的HTTP库如果你看过上篇文章关于urllib库的使用,你会发现,其实urllib还是非常不方便的,而Requests它会比urllib更加方便,可以节约我们大量的工作 阅读全文
posted @ 2018-04-17 11:19 brady-wang 阅读(518) 评论(0) 推荐(0)
上一页 1 ··· 134 135 136 137 138 139 140 141 142 ··· 198 下一页