按类别查询搜索结果
关于关键词 的检测结果,共 229
axejonny | 2018-01-26 15:42:18 | 阅读(0) | 评论(0)
zz:https://www.joinquant.com/post/1980?f=study&m=python【Pyhton科学计算(2)】 - pandas库之数据查看、选择pandas 是基于 Numpy 构建的,让以 Numpy 为中心的应用变得更加简单。平台获取的数据主要是 DataFrame 的形式,它便是 pandas 中的。...【阅读全文】
dasunwarman | 2017-12-04 16:04:43 | 阅读(2290) | 评论(0)
一、问题 官网下载Python2.7(python-2.7.13.msi),安装后启动提示错误,ImportError: No module named site 二、解决 1、这个问题是Python环境变量错误引起的,一般是之前安装过Python,卸载后没把环境变量去掉。 2、或者安装Python时选择了最下面一项,把Pthon加入环境变量,但它默认设置PYTHONHOME=C:\Python27,但...【阅读全文】
lixinwei1985@si | 2017-10-13 17:41:26 | 阅读(2100) | 评论(0)
import os # We'll render HTML templates and access data sent by POST # using the request object from flask. Redirect and url_for # will be used to redirect the user once the upload is done # and send_from_directory will help us to send/show on the # browser the file that the user just uploaded from ...【阅读全文】
zj47596731 | 2017-09-22 15:00:00 | 阅读(1850) | 评论(0)
树莓派烧录原生raspbian,感觉Ubuntu对树莓派的支持不是很好 1.搭建下载机,使用transmission,可以下载源码自己编译安装,也可以直接apt-get install transmission-daemon     安装完成后,通过/etc/init.d/transmission-daemon启动的话是以transmission用户启动,如果下载路径的权限不是transmission用户的...【阅读全文】
libinggen | 2017-08-23 08:43:37 | 阅读(1650) | 评论(0)
生成检查点文件(chekpoint file),扩展名.ckpt,tf.train.Saver对象调用Saver.save()生成。包含权重和其他程序定义变量,不包含图结构。另一程序使用,需要重新创建图形结构,告诉TensorFlow如何处理权重。生成图协议文件(graph proto file),二进制文件,扩展名.pb,tf.tran.write_graph()保存,只包含图形结构,不包含权...【阅读全文】
angrad | 2017-08-22 17:31:01 | 阅读(2710) | 评论(0)
基于python实现自动下载百度图片【阅读全文】
【Python/Ruby】 python下大文件
nocode | 2017-05-18 21:03:41 | 阅读(0) | 评论(0)
1、上面的方法可以解决文件的下载问题,并且,对于大文件的下载也是没有问题的。关于yield的用法 可参见: http://www.ibm.com/developerworks/cn/opensource/os-cn-python-yield/2、response['Content-Type'] = 'application/octet-stream'response['Content-Disposition'] = 'attachment;filename="tes...【阅读全文】
chicol | 2017-03-16 10:35:01 | 阅读(1110) | 评论(0)
是不是很难找到老版本的chrome?博主收集了几个下载chrome老版本的网站,其中哪个下载的是原版的就不得而知了。2. 所有版本firefox下载http://ftp.mozilla.org/pub/firefox/releases/3. 所有版本chromedriver下载http://chromedriver.storage.googleapis.com/index.htmlselenium之 chro...【阅读全文】
binary_swordman | 2017-03-02 21:36:38 | 阅读(210) | 评论(0)
https://www.zhihu.com/question/20053359【阅读全文】
老爷康 | 2016-07-18 10:50:18 | 阅读(330) | 评论(0)
地址:http://blog.csdn.net/lcyangcss/article/details/7249961【阅读全文】
winecork | 2016-06-22 09:55:13 | 阅读(950) | 评论(0)
参看:http://www.cnblogs.com/fnng/p/3576154.html点击(此处)折叠或打开import urllib import redef getHtml(url):    page = urllib.urlopen(url)    html = page.read()...【阅读全文】
【Python/Ruby】 selenium webdriver 下
大镇 | 2016-06-17 17:50:04 | 阅读(2110) | 评论(0)
下载地址:http://docs.seleniumhq.org/download/【阅读全文】
【Python/Ruby】 chromedriver的下地址
bnt38 | 2016-06-16 15:24:18 | 阅读(0) | 评论(0)
chromedriver的下载地址http://chromedriver.storage.googleapis.com配合chrome使用,windows2008下要使用官方的离线安装版。有解压缩安装版的(估计是非官方的包)与chromedriver配合使用时运行报错,后来找到官方的离线安装版的安装后就没问题了。...【阅读全文】
eatmyshort | 2016-05-23 15:40:49 | 阅读(1500) | 评论(0)
大镇 | 2016-05-17 09:11:41 | 阅读(2620) | 评论(0)
转自: http://www.crifan.com/python_append_new_data_into_existing_excel_xls_file/【整理】Python中,添加写入数据到已经存在的Excel的xls文件,即打开excel文件,写入新数据2013 年 1 月 16 日 下午 1:22crifan已有24572人围观4个评论背景Python中,想要打开已经存在的excel的xls文...【阅读全文】
大镇 | 2016-04-19 18:15:39 | 阅读(2690) | 评论(0)
转自:http://www.jb51.net/article/67196.htmpython实现支持目录FTP上传下载文件的方法作者:xm1331305 字体:[增加 减小] 类型:转载 时间:2015-06-03 我要评论这篇文章主要介绍了python实现支持目录FTP上传下载文件的方法,适用于windows及Linux平台FTP传输文件及文件夹,需要的朋...【阅读全文】
Larpenteur | 2016-03-09 02:40:35 | 阅读(0) | 评论(0)
如果使用过微软技术的朋友应该体会过微软的Visual Studio系列IDE给debug程序带来的方便,换了个工作就没有Visual Studio了,对于我这种从未在非GUI环境下调试过程序的人来说实在有点不爽,今天花了点时间看了一下Python自带的pdb库,发现用pdb来调 试程序还是很方便的,当然了,什么远程调试,多线程之类,pdb是搞不定的。【阅读全文】
h136919934 | 2016-01-18 20:31:10 | 阅读(480) | 评论(0)
sip2011 | 2015-11-04 09:42:37 | 阅读(1360) | 评论(0)
wangweigm007 | 2015-08-28 15:12:16 | 阅读(1820) | 评论(0)

点击(此处)折叠或打开【阅读全文】