Pycoder’s Weekly

搜罗Py万物 的周刊

亲, Mahdi is at PYCON 2015 in Montreal! Say hi if you see him! Now on to the newsletter 大家多分享文章 俺们才折腾的出又一周的美好呢. 喜欢就 在 Gratipay 支持俺们吧! 当然的,俺们也在twitter

新闻

讨论

工作

项目

  • barf-project 多平台开源二进制分析和逆向工程框架. github.com Shared by @mgrouchy
  • boltons Boltons是拥有超过100个BSD许可的纯Python实用工具集合, 文档在此 github.com Shared by @mgrouchy (是也乎: 细思恐极哪,,, pip 不招人待见的事儿太多了,, )
  • serpy 能对类似 Django 模块/自定类 等 复杂数据类型进行高速序列化. github.com Shared by @mgrouchy
  • NCutil 非常赞的, 支持 Mavericks 和 Yosemite , 针对 OSX 提醒中心, 允许 追加/删除应用也支持 app store 的提醒接入. github.com Shared by @mgrouchy
  • soupy 对 BeautifulSoup 的完整包装, 支持对 web 数据构建复杂的查询. github.com Shared by @mgrouchy (是也乎:
from soupy import Soupy, Q
html = """
<div id="main">
  <div>The web is messy</div>
  and full of traps
  <div>but Soupy loves you</div>
</div>"""
print(Soupy(html).find(id='main').children
      .each(Q.text.strip()) # extract text from each node, trim whitespace
      .filter(len)          # remove empty strings
      .val())               # dump out of Soupy
# ['The web is messy', 'and full of traps', 'but Soupy loves you']

果断 jQ 样哪… )

  • nameko 又一个微服务构建框架. github.com Shared by @myusuf3
  • guardrail 对象级权限管理库, 和db 无关,可独立使用的. github.com Shared by @myusuf3

文章

  • Nameko for Microservices Nameko(滑菇) 的详细介绍, 支持用户快速构建微服务, 专注业务逻辑, 将各种协议细节都给简化了. pocoo.org Shared by @mgrouchy (是也乎: Nameko 小而美味; 支持 AMQP 上的 RPC; 内置测试框架… 强化的 bottle,好象 )
  • Py 应用的自动补丁. 对 猴式 补丁的最后一篇讨论 dscpl.com.au Shared by @myusuf3
  • Numba vs Cython: 如何选择 用 Python 进行数学处理时, 如何在 Numba 和 Cython 之间选择?! 作者给出了一些建议. climate.com Shared by @mgrouchy
  • vim-yapf 为 vim 准备的 yapf Python 格式化 github.com Shared by @mgrouchy
  • Classy CBV Django Class Based Views 相关资源和迷失的文档 ccbv.co.uk Shared by @mgrouchy
  • 实例体验 Py3 的 Asyncio 如果对 Py3 中的 Asyncio 开发有兴趣, 此篇大善. giantflyingsaucer.com Shared by @mgrouchy
  • 构建 Web 服务: 第二部分. Ruslan 重启这一系列, 此篇包含了精美插图. ruslanspivak.com Shared by @myusuf3
  • Python 中的随机过程 使用 Quants 处理随机过程的好文章. stuartreid.co.za Shared by @myusuf3

DAMA

(大妈私人无责任播报)

是也乎

  • 150411 Zoom.Quiet 用时 42 分钟 完成快译.
  • 150411 Zoom.Quiet 用时 7 分钟 完成格式转抄.