
搜罗Py万物 的周刊
亲, 大家多分享文章 俺们才折腾的出又一周的美好呢. 喜欢就 在 Gratipay 支持俺们吧! 当然的,俺们也在twitter
新闻
- Pytest Month 就在四月 Pytest 在小伙伴们的帮助下,准备在四月正式发布了. 详细链接中, 如果你的项目需要靠谱测试组件的,应该关注了! pytest.org Shared by @mgrouchy
- Pyston 0.3: 自举充分 Pyston 0.3 已经发布, 所有内部脚本已经完全自我驱动. 对于全新的 Python 实现, 这是一个巨大的里程碑. pyston.org Shared by @mgrouchy
- Django 1.8 beta 1 和 1.7.5 发布!
Django 1.8 已经指定为第二个
长期支持(LTS)版本. 另外,也发布了一个 1.7 的 bugfix 分支. djangoproject.com Shared by @myusuf3 - Python 3.4.3 发布 Python 3.4.3 包含很多问题修订, 以及对 3.4.2 的小改进. 链接包含了详进的改变记录. python.org Shared by @mgrouchy
讨论
- PEP 448 (追加 Unpacking Generalizations) 已为 Python 3.5 接受 reddit.com Shared by @myusuf3
工作
- 猎豹广州团队急召 来自 猎豹移动 - 全球最大的移动工具开发商 …
项目
geocoder geocoder 为地理编码库, python 完成的, 简洁和一致的. github.com Shared by @myusuf3
argcomplete 为你的 Python 脚本提供简洁,可扩展命令选项支持, 无须运用 docopt 之类. github.com Shared by @myusuf3 (
是也乎:可引入 IPython, 能自动完成! #!/usr/bin/env pythonPYTHON_ARGCOMPLETE_OK
import argcomplete, argparse, requests, pprint def github_org_members(prefix, parsed_args, **kwargs): resource = “https://api.github.com/orgs/{org}/members".format(org=parsed_args.organization) return (member[’login’] for member in requests.get(resource).json() if member[’login’].startswith(prefix)) parser = argparse.ArgumentParser() parser.add_argument(”–organization", help=“GitHub organization”) parser.add_argument("–member", help=“GitHub member”).completer = github_org_members argcomplete.autocomplete(parser) args = parser.parse_args() pprint.pprint(requests.get("https://api.github.com/users/{m}".format(m=args.member)).json()) 然后就能: ./describe_github_user.py –organization heroku –member
) unicode_mayo 非常有用, 专注 unicode 字符串问题, 嘦在开发环境中, 对你的字符串进行包装, 就能感知是否已经失常. github.com Shared by @mgrouchy
compose Compose 是用来将应用定义/运行在 Docker 中的工具. github.com Shared by @myusuf3
py2deb Python 实现的 Debian 包含转换器. github.com Shared by @mgrouchy
audiogrep 恰如其名, 能对音频文件内容进行关键词搜索的神奇工具. 值得体验! github.com Shared by @myusuf3
reinforce
即插即用型学习库, 用马尔可夫决策过程的进行数据和求解最优策略推断. github.com Shared by @mgrouchydjango-hijack Django-hijack 允许超级用户劫持帐号(等若用户登录) 模拟用户操作,而不需要用户的凭据. github.com Shared by @myusuf3
文章
- 介绍一种友好的线性回归 非常可爱的 IPython notebook 文书, 展现了如何舒服的折腾出线性回归情景 dataschool.io Shared by @myusuf3
- 真实生活中的 Mocking 非常漂亮的示范, 如何用 mock 来绕过缓慢的 HTTP 请求. trackmaven.com Shared by @myusuf3
- Django, Flask 和 AsyncIO 的微对比 (aiohttp.web+API-Hour) 很有趣的对比, 详情链接中. 包含结论和方法. gmludo.eu Shared by @mgrouchy
- 设计客户端 Python 应用 (也适用其它语言实现) 一些很好的概念和考虑, 有助于创建一个好用的客户端. blogspot.ca Shared by @mgrouchy
- Python 打包的问题
对Python 中打包的系列问题思考.
也对比了各种可选方案和期待的情景.
ionelmc.ro
Shared by @mgrouchy
(
是也乎:细思恐极的事儿, 所有开放语言的相同命题:如何才能挖一个自个儿填的了的坑?!) - 现实世界的 Python 优化: NumPy, Numba, 以及 NUFFT 由 Jake 授权发布! 依用 Python 完成了 NUFFT(非均匀快速傅立叶变换)! 并讨论了如何进行优化. github.io Shared by @myusuf3
DAMA
(大妈私人无责任播报)

- 亚太Py大会 6-5~7 在台北举行! PyCon APAC/Taiwan 2015 - Call for Proposals 议题召集已经释放,想去宝岛体验社区交流的,可以下手了!
- IPython3时代到来 - 小明明s à domicile
WoW!
参考:官方文档 3.x Series — IPython 3.0.0 documentation
是也乎
- 150302 Zoom.Quiet 用时 42 分钟 完成快译.
- 150228 Zoom.Quiet 用时 7 分钟 完成格式转抄.