获取网贷之家数据
获取这些数据
#coding=utf8 import requests from datetime import date,timedelta url = 'http://shuju.wdzj.com/plat-data-custom.html' def get_date(days): return date.today() - timedelta(days=days) def get_wdzj_data(timex): '''传入整形n天前或时间段''' if isinstance(timex,int): shujuDate = str(get_date(timex)) + str(get_date(1)) else: shujuDate = timex print u'要获取的日期范围是:', shujuDate data = {'type': '1', 'shujuDate': shujuDate, } resp = requests.post(url,data = data) return resp.content if __name__ == '__main__': print get_wdzj_data(1) print get_wdzj_data(7) print get_wdzj_data(30) print get_wdzj_data('2017-09-012017-09-30') print get_wdzj_data('2017-08-012017-08-31')
反对极端面向过程编程思维方式,喜欢面向对象和设计模式的解读,喜欢对比极端面向过程编程和oop编程消耗代码代码行数的区别和原因。致力于使用oop和36种设计模式写出最高可复用的框架级代码和使用最少的代码行数完成任务,致力于使用oop和设计模式来使部分代码减少90%行,使绝大部分py文件最低减少50%-80%行的写法。