自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

xiuxiuge的博客

自学为主

  • 博客(5)
  • 收藏
  • 关注

原创 pandas 行列筛选

# -*- coding:utf-8 -*- """ @author:Kameiro @file:patzon.py @time:2018/3/2918:25 """ import pandas as pd,numpy as np import numpy as np from pandas import DataFrame sourcedata=pd.read_excel('F:/on.xlsx...

2018-03-30 10:12:30 513

转载 requests 库的(stream)

查找requests的相应资料 By default, when you make a request, the body of the response is  downloaded immediately. You can override this behaviour and defer  downloading the response body until you acce

2017-12-15 12:48:11 1511

转载 python3效率优化笔记

multiprocessing库自学

2017-07-05 18:53:06 1063

原创 requests笔记

cookiejar和dict类cookie之间转换 #将CookieJar转为字典: cookies = requests.utils.dict_from_cookiejar(r.cookies) #将字典转为CookieJar: cookies = requests.utils.cookiejar_from_dict(cookie_dict, cookiejar=None, overwri...

2017-06-30 17:44:24 284

原创 Python3中urllib学习笔记

get请求 urllib.request.urlopen最简单的方式 url='https://www.baidu.com/' response = urllib.request.urlopen(url) buff = response.read() #显示 html = buff.decode("utf8") response.close() print(html) 使用Request的方式 ur

2017-06-19 15:34:43 1978

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除