上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 31 下一页
摘要: git 1.git简介 - workspace 工作区 - index 暂存区 - repository 本地版本库 - remote 远程仓库 2.常用git命令 所有的git命令必须在工作区内能使用,工作区就是你的项目目录 - git --version 查看版本 - git config -l 查看配置信息 - 修改name和email - git config --g... 阅读全文
posted @ 2019-01-17 09:02 青春叛逆者 阅读(189) 评论(0) 推荐(0) 编辑
摘要: 作为一名程序员,环境一定要配置好,今天分享一篇创建开发环境的 阅读全文
posted @ 2019-01-17 08:55 青春叛逆者 阅读(229) 评论(0) 推荐(0) 编辑
摘要: # encoding=utf-8 import pandas as pd from pylab import mpl import matplotlib.pyplot as plt from matplotlib import font_manager #在数据挖掘前一个数据分析、筛选、清理的多功能工具 #将excel读取并转换为pandas的DataFrame #pd.read_csv读取... 阅读全文
posted @ 2019-01-16 22:16 青春叛逆者 阅读(186) 评论(0) 推荐(0) 编辑
摘要: # encoding: utf-8 import json import time from selenium import webdriver driver_path = '/Users/mac126/chromedriver' chromeOptions = webdriver.ChromeOptions() #让浏览器不显示自动化测试 chromeOptions.add_argument(... 阅读全文
posted @ 2019-01-16 11:43 青春叛逆者 阅读(9156) 评论(0) 推荐(0) 编辑
摘要: html = ''' first item second item third item fourth item fifth item ''' from pyquery import PyQuery a... 阅读全文
posted @ 2019-01-15 17:59 青春叛逆者 阅读(219) 评论(0) 推荐(0) 编辑
摘要: html = ''' first item second item third item fourth item fifth item ''' from pyquery import PyQuery a... 阅读全文
posted @ 2019-01-15 17:53 青春叛逆者 阅读(679) 评论(0) 推荐(0) 编辑
摘要: html = ''' first item second item third item fourth item fifth item ''' from pyquery import PyQuery a... 阅读全文
posted @ 2019-01-15 17:37 青春叛逆者 阅读(557) 评论(0) 推荐(0) 编辑
摘要: 子元素 from pyquery import PyQuery as pq doc = pq(html) items = doc('.list') print('items 类型',type(items)) print(items) lis = items.find('li') print('lis 类型',type(lis)) print(lis) ''' 输出结果:items 类型 ... 阅读全文
posted @ 2019-01-15 16:41 青春叛逆者 阅读(717) 评论(0) 推荐(0) 编辑
摘要: html = ''' first item second item third item fourth item fifth item ''' from pyquery import PyQuery as pq doc = pq(html) print(doc('#... 阅读全文
posted @ 2019-01-15 16:33 青春叛逆者 阅读(277) 评论(0) 推荐(0) 编辑
摘要: #文本初始化 from pyquery import PyQuery as pq doc = pq(filename='demo.html') print(doc('li')) ''' #输出结果: first item second item third item fourth item fifth item ''' ... 阅读全文
posted @ 2019-01-15 16:26 青春叛逆者 阅读(266) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 31 下一页