由买买提看人间百态

topics

全部话题 - 话题: ipython
1 2 3 4 5 下页 末页 (共5页)
p**o
发帖数: 3409
1
http://www.fsf.org/news/2012-free-software-award-winners-announ
BOSTON, Massachusetts, USA — Saturday, March 23rd, 2013 — Free Software
Foundation president Richard M. Stallman announced the winners of the FSF's
annual Free Software Awards at a ceremony on Saturday, March 23rd, held
during the LibrePlanet 2013 conference at Harvard University, in Cambridge,
Massachusetts. Two awards were given: the Award for the Advancement of Free
Software, and the Award for Projects of Social Benefit.
The Awar... 阅读全帖
v*****r
发帖数: 1119
2
来自主题: Linux版 - 有人用ipython当shell用吗?
You can certainly customize interactive environments using what ever tools
like ipython or emacs. Emacs is more suitable to be used as as "shell" than
ipython as ipython is an add-on to python and relies on python being
installed and pretty much python specific.
Linux standard shells (bash, ksh etc..) are called shells for a reason:
first they are small in size (in kbs), second they are tightly integrated
with underlining Operation System and able to pipe small filter utilities
seamlessly togeth
S*A
发帖数: 7142
3
来自主题: Linux版 - ipython 使用总结
长期用来代替 shell 用也勉强可以。
有个问题是如果跑很多 python 程序的话,
这个 ipython 霸占内存越来越多。最后要
退出从新进来一下。就是这个不能缺省成为
我的 default shell.
macro, alias 之类的还是很强的。
ipcluster 那一套用来管理很多机器还挺好的,
可以同时给很多机器发命令同时看返回结果。
用来显示 python 变量和看数据还行。
做 pipe 处理的话和 shell 里面那套不一样,python
可能灵活些。
有一个情况还是挺适合的就是写 machine learning.
有很多数据要读进来,进行不同的处理。
这时候可以让数据一直保存在 ipython 里面,处理程
序就不需要整天花很多时间读入数据。例如几个 G 的数据
每次读入都要几分钟。用 ipython 把数据传给程序可以
省掉反复读入数据的时间。
a****9
发帖数: 418
4
来自主题: Linux版 - ipython 使用总结
thanks
我试了一下 现在确实可以ipython script了
我大概两年前的时候这样试过 没有找到直接run ipython script的办法
这样我很多shell script可以来拿ipython来写了
h*******c
发帖数: 248
5
来自主题: Linux版 - 有人用ipython当shell用吗?
最近在学python,感觉ipython还是挺有趣的。应该可以替代bash。有什么人每天用
ipython做
shell吗?
S*A
发帖数: 7142
6
来自主题: Linux版 - 有人用ipython当shell用吗?
最近发现 ipython, 发现 ipython -p sh 当 shell 用挺好。
有很多可以调的地方。
写一般命令不需要用引号的。就当是个练习玩玩。
w*x
发帖数: 518
d**********x
发帖数: 4083
8
【 以下文字转载自 Programming 讨论区 】
发信人: tes (286), 信区: Programming
标 题: ipython太傻逼了 if version < '4.7': raise error
发信站: BBS 未名空间站 (Fri Apr 5 15:58:52 2013, 美东)
怎么都装不上,后来发现源代码中有如上这种
我装的pyqt是4.10
d**********x
发帖数: 4083
9
你们看面试题也不是全无用处。。。

【 以下文字转载自 Programming 讨论区 】
发信人: tes (286), 信区: Programming
标 题: ipython太傻逼了 if version < '4.7': raise error
发信站: BBS 未名空间站 (Fri Apr 5 15:58:52 2013, 美东)
怎么都装不上,后来发现源代码中有如上这种
我装的pyqt是4.10
c****f
发帖数: 1102
10
来自主题: Linux版 - 有人用ipython当shell用吗?
你打开一个文件看内容还要写一段代码......
这种交互界面irb ipython比shell起来还是不是很方便的
i*****f
发帖数: 578
11
来自主题: Linux版 - 有人用ipython当shell用吗?
比直接拿python当shell(也是可能的)是要方便点。不过还是没真正的shell方便。比
如真正的shell至少不用quote文件名吧。
我assume你说的是ipython -p sh ??? 不过我还是很欣赏这个idea滴。
a****9
发帖数: 418
12
来自主题: Linux版 - ipython 使用总结
我觉得它的优势和普通shell比
对字符串处理和数据结构、算法的支持好
不过好像不能写ipython脚本,只能互交?现在支持了么
S*A
发帖数: 7142
13
来自主题: Linux版 - ipython 使用总结
你在说什么啊?
ipython 的脚本就是 python 啊。
如果你是想用 %run 之类的 script, 肯定是可以的。
我来找找看。
S*A
发帖数: 7142
14
来自主题: Linux版 - ipython 使用总结
FT,就是直接拿来 run 就行了。
$ cat run.ipy
echo hello
$ ipython -p sh run.ipy
hello
$
m***r
发帖数: 359
15
来自主题: Programming版 - Python日报 2015年3月楼
Python日报 2015-03-07
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 h*[email protected] 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-03-07/short.html
1) 【Python下利用GetStream.io快速搭建一个实时通知系统】 by @Python传送门
关键词:代码
Python下利用GetStream.io快速搭建一个实时通知系统 [1]
[1] https://gist.github.com/tbarbugli/3d43136edb5dcf9bf98b
2) 【Python中备忘功能和装饰器】 by @Python开发者
关键词:Donald Michie
《Python中备忘功能和装饰器》备忘这个词是由Donald Michie在1968年提出的,它基
于拉丁语单词“memorandum”,意思是“被记住”。虽然它和单词“memorization”在
某种程度上有些相似,但它并不是该单词的错误拼写。 [1] ( ... 阅读全帖
m***r
发帖数: 359
16
来自主题: Programming版 - Python 2015年1月楼
Python日报 2015-01-31
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 [email protected]
/* */ 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-01-31/short.html
1) 【Python中的计算几何】 by @网路冷眼
关键词:数据科学, 计算
【Python中的计算几何】 [1] 计算几何数学的一个领域,寻求开发高效算法来解决用
基本几何对象所描述的问题,又区分为组合计算几何和数值计算几何。一个处理几何对
象的交互,一个处理几何对象的表示。好文章! @2gua @CSDN_CODE @Linux中国 @伯乐
头条 @好东西传送门 @百度技术沙龙
[1] https://blancosilva.github.io/post/2014/10/28/Computational-Geometry-in-
Python.html
2) 【Python日报搜索的测试版】 by @西瓜大丸子汤
关键词:简报
今天更新了... 阅读全帖
m***r
发帖数: 359
17
来自主题: Programming版 - Python日报 2015年2月楼
Python日报 2015-02-04
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 [email protected]
/* */ 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-02-04/short.html
1) 【ipython notebook介绍】 by @viivi518
关键词:工具, IPython, 视频
95%的人对ipython notebook能做的事有误解, 我想核心作者们会有一丝淡淡地忧桑.
上周五在豆瓣东西组内分享了 这里有视频下载地址
网盘: [1] YouTube: [2] @python4cn @伯乐在线官方微博 @好东西传送门 .
[1] http://pan.baidu.com/s/1pTijk
[2] https://www.youtube.com/watch?v=nPkDgAP16rg
2) 【这不是魔法:Flask和@app.route】 by @... 阅读全帖
m***r
发帖数: 359
18
来自主题: Programming版 - Python日报 2015年2月楼
Python日报 2015-02-22
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 [email protected]
/* */ 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-02-22/short.html
1) 【Python下处理类间不均衡的分类问题】 by @爱可可-爱生活
关键词:数据科学, 机器学习, 可视化
[文章]《Dealing with Unbalanced Classes ,Svm, Random Forests And Decision
Trees In Python》 [1] Python下用Svm, Random Forests和Decision Trees分类wine
quality数据,并对类间不均衡问题进行可视化和讨论,很不错
[1] http://www.bigdataexaminer.com/dealing-with-unbalanced-classes-svm-random-forests-and-decisi... 阅读全帖
m***r
发帖数: 359
19
来自主题: Programming版 - Python日报 2015年2月楼
Python日报 2015-02-25
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 [email protected]
/* */ 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-02-25/short.html
1) 【Python代码优化】 by @爱可可-爱生活
关键词:工具, 库, 数据科学, IPython, 博客, 计算
[文章]《Optimizing Python in the Real World: NumPy, Numba, and the NUFFT》 [
1] 以非均匀快速傅立叶变换(NUFFT)为例介绍面向实战的Python代码优化 ipn: [2]
[1] https://jakevdp.github.io/blog/2015/02/24/optimizing-python-with-numpy-
and-numba/
[2] http://nbviewer.ipython.org/url/jakevdp.github.io/d... 阅读全帖
m***r
发帖数: 359
20
来自主题: Programming版 - Python日报 2015年2月楼
Python日报 2015-02-06
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 [email protected]
/* */ 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-02-06/short.html
1) 【你不了解的python decorator】 by @湾区日报BayArea
关键词:Web, 库, Graham Dumpleton, 博客
你不了解的python decorator [1] 这一些列文章时mod-wsgi的开发者Graham
Dumpleton写的。他现在不久前刚上市的New Relics工作。10篇博文,大家慢慢看:)
[1] http://wanqu.co/2015-02-06-%E4%BD%A0%E4%B8%8D%E4%BA%86%E8%A7%A3%E7%9A%84python-decorator.html
2) 【DataScience.LA’14上的Python专题】 by @爱可可-爱生活
关键词:工具... 阅读全帖
m***r
发帖数: 359
21
来自主题: Programming版 - Python日报 2015年3月楼
Python日报 2015-03-04
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 [email protected]
/* */ 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-03-04/short.html
1) 【Python下的环境科学数据分析实战】 by @爱可可-爱生活
关键词:工具, 库, 数据科学, IPython, SciPy, 代码, 机器学习, 计算
[IPN]《Python for Data Analysis》 [1] Python数据分析指南,环境科学数据实战,
内容涉及IPython使用、Python基础、Numpy及Scipy基础、统计数据建模、Pandas、
Scikit-Learn使用等,相当有料,推荐! ipn: [2]
[1] https://github.com/nicolasfauchereau/NIWA_Python_seminars
[2] http://nbviewer.ipython.org/githu... 阅读全帖
m***r
发帖数: 359
22
来自主题: Programming版 - Python日报 2015年3月楼
Python日报 2015-03-04
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 h*[email protected] 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-03-04/short.html
1) 【Python下的环境科学数据分析实战】 by @爱可可-爱生活
关键词:工具, 库, 数据科学, IPython, SciPy, 代码, 机器学习, 计算
[IPN]《Python for Data Analysis》 [1] Python数据分析指南,环境科学数据实战,
内容涉及IPython使用、Python基础、Numpy及Scipy基础、统计数据建模、Pandas、
Scikit-Learn使用等,相当有料,推荐! ipn: [2]
[1] https://github.com/nicolasfauchereau/NIWA_Python_seminars
[2] http://nbviewer.ipython.org/github/nicolasfauche... 阅读全帖
m***r
发帖数: 359
23
来自主题: Programming版 - Python 日报搜索
http://py.memect.com/search/
可以检索过去三个月的Python日报里的内容。支持多种高级查询
初步工作,问题不少,请大家指正.
## 最基础的关键词搜索
返回全部
http://py.memect.com/search/?q=*
IPython
http://py.memect.com/search/?q=IPython
布尔组合
AND (默认)
http://py.memect.com/search/?q=%E6%B7%B1%E5%BA%A6%E5%AD%A6%E4%B
OR
http://py.memect.com/search/?q=%E6%B7%B1%E5%BA%A6%E5%AD%A6%E4%B
NOT
http://py.memect.com/search/?q=%E6%B7%B1%E5%BA%A6%E5%AD%A6%E4%B
## 标签搜索
数据科学
http://py.memect.com/search/?q=tag:%E6%95%B0%E6%8D%AE%E7%A7%91%
数据库
http://py.memect.com/search/?... 阅读全帖
g****t
发帖数: 31659
24
来自主题: Programming版 - java DL,ML
Ipython那种interactive方式。据我所知最早是
数学软件Mathematica, maple引入的。用vi
Emacs造一个类似的完全是doable的,对任何语言都可以。
另外
Ipython几年前就可以挂c kernel 了。Java应该也没问题。
关键是看市场需求。


: 所谓的python做深度学习,实际上是python定义政策方针,领导gpu干,这活
java不适

: 合啊

: python我可以起个ipython交互式开发,java你怎么办?

x***u
发帖数: 297
25
来自主题: Biology版 - 谁装过python的limix package (转载)
要么装 Ipython Notebook, 在网页(127.0.0.1:8000)里照搬tutorial里的例子;
要么把第一行去掉。
Ipython Notebook: http://ipython.org/notebook.html
Anaconda: https://store.continuum.io/cshop/anaconda/
m******t
发帖数: 273
26
来自主题: Mathematics版 - import a stats module from Python (转载)
【 以下文字转载自 Statistics 讨论区 】
发信人: myregmit (myregmit), 信区: Statistics
标 题: import a stats module from Python
发信站: BBS 未名空间站 (Thu Mar 13 12:21:03 2014, 美东)
I need to import a stats module (from gamma) from python 3.3 on Win7.
In Eclipse++PyDev, I cannot import stats from scipy
from scipy import stats
error:
Unused import: stats
Import redefinition: stats
Unresolved import: stats
But, I can do it in iPython.
Also, I have installed ipython and can do it in ipython by
from scipy.stats import ... 阅读全帖
m******t
发帖数: 273
27
【 以下文字转载自 Statistics 讨论区 】
发信人: myregmit (myregmit), 信区: Statistics
标 题: import a stats module from Python
发信站: BBS 未名空间站 (Thu Mar 13 12:21:03 2014, 美东)
I need to import a stats module (from gamma) from python 3.3 on Win7.
In Eclipse++PyDev, I cannot import stats from scipy
from scipy import stats
error:
Unused import: stats
Import redefinition: stats
Unresolved import: stats
But, I can do it in iPython.
Also, I have installed ipython and can do it in ipython by
from scipy.stats import ... 阅读全帖
m******t
发帖数: 273
28
来自主题: Statistics版 - import a stats module from Python
I need to import a stats module (from gamma) from python 3.3 on Win7.
In Eclipse++PyDev, I cannot import stats from scipy
from scipy import stats
error:
Unused import: stats
Import redefinition: stats
Unresolved import: stats
But, I can do it in iPython.
Also, I have installed ipython and can do it in ipython by
from scipy.stats import rv_discrete
But, I need to do it in Eclipse where I have added python, numpy and scipy
in it.
But, Eclipse tell me that
from scipy.stats import rv_d... 阅读全帖
e**********y
发帖数: 128
29
来自主题: JobHunting版 - leetcode的oj啥时候出python 版啊
Python is not a strong typed language, which is a great pleasure for the
user but it is a headache for the maintainer to design an online system like
Leetcode's online judge framework. Maybe, 1337 could borrow some idea from
Ipython notebook http://ipython.org/notebook.html.
t***q
发帖数: 418
30
来自主题: JobHunting版 - windows 上安装python package.
多谢你的回复,我给你发了包子。
我用那个cheatsheet 里的upgrade ,把我的anaconda 升级了,然后再用pip 安装
package. package 都安装上了,多谢,就是ipython notebook 升级到了 jupyter ,
以前在ipython 里存的代码全不见了。怎么恢复以前的代码呢?多谢!

pkg-
j*******i
发帖数: 2
31
来自主题: Linux版 - Ubuntu 推荐 ppa
Ubuntu 推荐 ppa
ubuntu-tweak 调校工具
ppa:tualatrix/next
chromium
ppa:chromium-daily/stable ppa:chromium-daily/dev ppa:chromium-daily/ppa
firefox
ppa:ubuntu-mozilla-security/ppa
fcitx 小企鹅输入法
ppa:fcitx-team/nightly
Google talk plugin
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo
apt-key add -
sudo sh -c 'echo "deb http://dl.google.com/linux/talkplugin/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
emacs-snapshot
ppa:cassou/emacs
ipython
ppa:jtaylor/ipython
gnome-s... 阅读全帖
O*t
发帖数: 56
32
来自主题: Linux版 - bash.exe alternative?
现在WSL bash最好的terminal解决方案是啥了
这个ipython是怎么跟bash.exe接起来的?


: 妈的,用了几个console emulator

: bash history都不work

: readline倒是好的,ipython里面可以用

: 换成linux terminal了

: 这下真爽了

t****a
发帖数: 1212
33
来自主题: Programming版 - 用emacs运行python script
答案是肯定的。
http://emacswiki.org/emacs/PythonProgrammingInEmacs
emacs对python支持非常好。可以直接把ipython整合进去。支持管理多个不同版本的
python。支持整个程序文件发送进ipython,或者选择某个代码段发送过去。
推荐使用emacs 24,用elpa包管理器直接安装python support。
p**o
发帖数: 3409
34
来自主题: Programming版 - can python replace matlab ?
matlab的syntax简洁一些,包也比较成熟。能不能用python替代要看具体领域。
楼上抱怨IDE的那位明显是没有用python做过科学计算的。
IPython(以及IPython Notebook)是最好的做交互式的数据分析的平台。
p**o
发帖数: 3409
35
来自主题: Programming版 - can python replace matlab ?
ipython is a better python shell
ipython-notebook is its web interface
you may want to watch this tutorial video
http://www.youtube.com/watch?v=2G5YTlheCbw
p**o
发帖数: 3409
36
来自主题: Programming版 - can python replace matlab ?
matlab的syntax简洁一些,包也比较成熟。能不能用python替代要看具体领域。
楼上抱怨IDE的那位明显是没有用python做过科学计算的。
IPython(以及IPython Notebook)是最好的做交互式的数据分析的平台。
p**o
发帖数: 3409
37
来自主题: Programming版 - can python replace matlab ?
ipython is a better python shell
ipython-notebook is its web interface
you may want to watch this tutorial video
http://www.youtube.com/watch?v=2G5YTlheCbw
s*****t
发帖数: 89
38
来自主题: Programming版 - 写脚本真麻烦
类型的话可以用王垠同学的PySonar2产生出来文档随时查阅(https://github.com/
yinwang0/pysonar2),不过我分析python的标准库花了半个多小时,好在这种静态分
析做一次就够了。
安装的话倒是从来没与到过什么问题,讨厌的是2和3之间换来换去的情况,又不想给系
统里面赛太多依赖只好用virtualenv了
IDE 尝试了PyCharm Ninja,最后发现IDE的效率都不如ipython notebook。
我写的时候基本上是这个套路:
0:新开一个cell,测试下库的用法
1:基本控制流,每次写一点Shift Enter就知道结果了
2:等到写了几百行了拆几个函数、封装成类什么的,不过我又不做通用库,都是给自己
写着用的,所以不太喜欢用OO的哪些东西。
可能有人一上来就比较注意大局,考虑问题比较周全,但那样也挺浪费时间的,就像楼
主说的只要思路清楚了其实那些art的部分不太要紧了。
3:合并cell,保存成py文件,丢给python、cython
等功能正确了就开始做点profile用cython优化下,受sage的老大的文章影响不太喜欢
swi... 阅读全帖
d*******r
发帖数: 3299
39
来自主题: Programming版 - 写脚本真麻烦
IDE 就用 PyCharm, 变量名后 . 是会出来成员变量的, 虽然不保证 100% work,因为
是动态语言。
使用变量定义跳转的,在 PyCharm 里面直接 cmd+b 或者 cmd+mouse,然后 cmd+[ 是
跳回来。
主要快捷键还有 cmd+shift+o 全局查找文件,cmd+shift+f 全局search字符串,cmd+
shift+r 全局replace字符串。
你在 Navigate 菜单里面把快捷键过一遍就是了。
JetBrains 的 IDE 用起来都差不多,你用熟悉一个,其他的那些也就都会用了。
你写 Java 不用 JetBrains,用 Eclipse 吧?
但是 Python 是动态语言,PyCharm 这种最智能的 IDE 也不能全部找到变量的定义,
比如有时候一个不知道类型的变量或者object传递了N层,PyCharm . 或者 跳转 也不
一定能work。
跳转不work的时候就只能用万精油的 cmd+shift+f 全局search字符串,
如果你 project 重名的变量不多,还是很容易找得到的。
也用过其他 IDE,PyCha... 阅读全帖
L***s
发帖数: 1148
40
来自主题: Programming版 - python一问,怎么实现这个函数

需求提得有问题,会写程序的人一般不这么问
我猜你可能想要下面的效果,猜得不对你自己酌情修改
In [4]: class Foo (object):
...:
...: def __init__ (self, raw_dict):
...: self.num_to_string_set = {}
...: for tup, string in raw_dict.iteritems():
...: for num in tup:
...: self.num_to_string_set\
...: .setdefault(num,set())\
...: .add(string)
...:
...: def query (self, *nums):
...: assert len(nums) > 0
...: ... 阅读全帖
f******x
发帖数: 98
41
来自主题: Programming版 - python真是一个很恶心的语言。
Python 在科学计算和数据分析领域有一统江湖的趋势。ipython notebook集数据采集
,symbolic math,编程,文档,slides presentation,data visualization于一体,
一个环境全都搞定,是做数值统计模型的神器。没用过ipython notebook就没资格对
python说三道四。
m***r
发帖数: 359
42
来自主题: Programming版 - Python日报 2015年2月楼
Python日报 2015-02-14
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 [email protected]
/* */ 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-02-14/short.html
1) 【python和perl的生物信息学应用库】 by @biostack
关键词:库, 代码, 生物
先前分享了许多python 的生物信息学应用库,比如: JCVI [1] , bcbio-nextgen [2
] 现在给出几个Perl 的生物信息学应用Github帐号BioInf-Wuerzburg [3] sesbio [4]
[1] https://github.com/tanghaibao/jcvi
[2] https://github.com/chapmanb/bcbio-nextgen
[3] https://github.com/BioInf-Wuerzburg
[4] https://github.com/sestaton... 阅读全帖
m***r
发帖数: 359
43
来自主题: Programming版 - Python日报 2015年2月楼
Python日报 2015-02-16
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 [email protected]
/* */ 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-02-16/short.html
1) 【mlxtend数据科学工具和扩展库】 by @爱可可-爱生活
关键词:库, 数据科学, 代码, 绘图, 机器学习, 计算
[开源] mlxtend —— Python的数据科学(数据分析&机器学习)工具和扩展库,包括
文本预处理、Pandas工具、文件IO工具、Scikit-learn工具、数学工具、Matplotlib工
具等 GitHub: [1]
[1] https://github.com/rasbt/mlxtend#plotting_decision_regions
长微博图:http://ww4.sinaimg.cn/large/5396ee05jw1epar3n6gb4j20l8gh3u0z.jpg
2) 【新编程语言Ni... 阅读全帖
m***r
发帖数: 359
44
来自主题: Programming版 - Python日报 2015年3月楼
Python日报 2015-03-02
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 [email protected]
/* */ 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-03-02/short.html
1) 【解读IPython3新特性】 by @python产品开发
关键词:Python3, 博客
IPython3的时代到来了, 作为150个贡献者中的一个, 我也很惊讶来的这么快, 我写了
篇blog对其中最重要的内容做了解释. [1] @好东西传送门 @ZoomQuiet @开发者头条 @
WEB开发者
[1] http://www.dongwm.com/archives/ipython3shi-dai-dao-lai/
2) 【Python下用Pandas读取和分析数据的一组实际例子】 by @爱可可-爱生活
关键词:工具, 库, 数据科学, 资源, IPython, 计算, 课程
[IPN]《Pandas in a Hurry》 [1... 阅读全帖
m***r
发帖数: 359
45
来自主题: Programming版 - Python日报 2015年3月楼
Python日报 2015-03-03
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 [email protected]
/* */ 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-03-03/short.html
1) 【Python下用Scrapy和MongoDB构建爬虫系统】 by @爱可可-爱生活
关键词:库, 博客, 爬虫
《Web Scraping and Crawling With Scrapy and MongoDB》Part1: [1] Part2: [2]
Python下用Scrapy和MongoDB构建爬虫系统,以StackOverflow为例,难得的Scrapy实操
好文
[1] https://realpython.com/blog/python/web-scraping-with-scrapy-and-mongodb/
[2] https://realpython.com/blog/python/web-scraping-and... 阅读全帖
m***r
发帖数: 359
46
来自主题: Programming版 - Python日报 2015年3月楼
Python日报 2015-03-02
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 h*[email protected] 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-03-02/short.html
1) 【解读IPython3新特性】 by @python产品开发
关键词:Python3, 博客
IPython3的时代到来了, 作为150个贡献者中的一个, 我也很惊讶来的这么快, 我写了
篇blog对其中最重要的内容做了解释. [1] @好东西传送门 @ZoomQuiet @开发者头条 @
WEB开发者
[1] http://www.dongwm.com/archives/ipython3shi-dai-dao-lai/
2) 【Python下用Pandas读取和分析数据的一组实际例子】 by @爱可可-爱生活
关键词:工具, 库, 数据科学, 资源, IPython, 计算, 课程
[IPN]《Pandas in a Hurry》 [1] 2015 San Dieg... 阅读全帖
m***r
发帖数: 359
47
来自主题: Programming版 - Python日报 2015年3月楼
Python日报 2015-03-03
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 h*[email protected] 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-03-03/short.html
1) 【Python下用Scrapy和MongoDB构建爬虫系统】 by @爱可可-爱生活
关键词:库, 博客, 爬虫
《Web Scraping and Crawling With Scrapy and MongoDB》Part1: [1] Part2: [2]
Python下用Scrapy和MongoDB构建爬虫系统,以StackOverflow为例,难得的Scrapy实操
好文
[1] https://realpython.com/blog/python/web-scraping-with-scrapy-and-mongodb/
[2] https://realpython.com/blog/python/web-scraping-and-crawling-with-... 阅读全帖
m***r
发帖数: 359
48
来自主题: Programming版 - Python日报 2015年3月楼
Python日报 2015-03-06
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 h*[email protected] 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-03-06/short.html
1) 【深度讲解Python Decorators和Context Managers】 by @Python传送门
关键词:基础, 博客
深度讲解Python Decorators和Context Managers [1]
[1] https://codefisher.org/catch/blog/2015/02/10/python-decorators-and-
context-managers/?utm_content=bufferd7135&utm_medium=social&utm_source=
twitter.com&utm_campaign=buffer
2) 【SciPy'13上用Python做统计数据分析的Tutorial】 by @爱可可-爱生活
关键词... 阅读全帖
m***r
发帖数: 359
49
来自主题: Programming版 - Python日报 2015年3月楼
Python日报 2015-03-08
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 h*[email protected] 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-03-08/short.html
1) 【Python中的默认参数】 by @Python开发者
关键词:基础
《Python中的默认参数》文本介绍了Python中的默认参数,作者从自己的经历中总结了
Python默认参数的使用中,易犯的错误。通过本篇文章可以深入掌握Python默认参数的
细节。 [1] ( @XX含笑饮砒霜XX 译,欢迎加入翻译组: [2] )
[1] http://python.jobbole.com/81105/
[2] http://www.jobbole.com/groups/6/
2) 【Python的Twitter情感预测工具】 by @路遥_机器学习
关键词:资源, 课程
和小伙伴 @黑皮肖特 用Python做个了基于CNN的Twitter Sentiment Predic... 阅读全帖
m***r
发帖数: 359
50
来自主题: Programming版 - Python日报 2015年3月楼
Python日报 2015-03-09
@好东西传送门 出品, 过刊见
http://py.memect.com
订阅:给 h*[email protected] 发封空信, 标题: 订阅Python日报
更好看的HTML版
http://py.memect.com/archive/2015-03-09/short.html
1) 【9/11相关新闻的主题分析及可视化】 by @爱可可-爱生活
关键词:应用, 博客, 代码, 可视化
[文章]《Topic modeling in 9/11 news articles》 [1] 9/11相关新闻的主题分析及
可视化,主题抽取基于NMF,数据来自New York Times,提供Python源码,很不错 在线
演示: [2] 代码: [3]
[1] http://blog.dominodatalab.com/topic-modeling-in-sept-11-news-articles/
[2] http://djsensei.github.io/911/
[3] https://github.com/djsensei/AlwaysRemember
... 阅读全帖
1 2 3 4 5 下页 末页 (共5页)