跳转至

331-340

Issue #331 Video Aug. 28, 2018

Cite

databot High Performance Python Data driven programming framework for Web Crawler,ETL,Data pipeline work. github.com Shared by @myusuf3

代码移动到https://github.com/kkyon/botflow了,不维护了

Issue #332 Fixed Sept. 4, 2018

Cite

Structuring Python Programs
Dig deep into how to structure your Python programs. realpython.com Shared by @realpython

realpython的文章质量都不错,问题就是都写的太长了

Issue #333 Top 3 Sept. 11, 2018

Cite

The Best Python Books
A great list of the best books for learning and growing your Python skills! realpython.com Shared by @realpython

Python推荐阅读书单,收藏阅读

Issue #334 Batch Sept. 18, 2018

Cite

Am I the only one who hates matplotlib?
reddit.com Shared by @mgrouchy

看见hate matplotlib的帖子,我啪的一下就点进来了,很快啊

Issue #335 FANG Sept. 25, 2018

Cite

Getting Started With Python inside PostgreSQL
Awesome way to get started using Python inside PostgreSQL 10 nextthought.com Shared by @myusuf3

打不开

Issue #336 Focus Oct. 2, 2018

Cite

molten
A minimal, extensible, fast and productive framework for building HTTP APIs with Python 3.6 and later. github.com Shared by @mgrouchy

from molten import App, Route

def hello(name: str, age: int) -> str:
    return f"Hello {age} year old named {name}!"

app = App(routes=[Route("/hello/{name}/{age}", hello)])
项目不维护了

Cite

Custom Celery task states
Celery tasks always have a state, learn about celery's built in states as well as how to add your own custom states. distributedpython.com Shared by @myusuf3

task.update_state(state='PROGRESS', meta={'current': 42, 'total': 100}) state字符串类型,自定义即可

Issue #337 Precision Oct. 9, 2018

Cite

Introduction to Redis streams with Python
Great tutorial how to use use Redis streams in your Python code with walrus. charlesleifer.com Shared by @myusuf3

一个基于redis-py的客户端库,https://github.com/coleifer/walrus 1K的star一个open issue都没有,作者维护的还是很用心的

Issue #338 Change Oct. 16, 2018

Cite

A Neural Network in 20 Lines of Python
"Deep Learning libraries such as TensorFlow and Keras makes it easy to build deep nets without fully understanding the inner workings of a Neural Network, I find that it’s beneficial for aspiring data scientist to gain a deeper understanding of Neural Networks." James Loy

快速入门

Issue #339 PyCoder’s Weekly – Issue #339 Oct. 23, 2018

Cite

aiortc: WebRTC Implementation for Python Using asyncio
WebRTC and ORTC implementation for Python using asyncio. Extensive test suite and promises a focus on code quality. JEREMY LAINÉ

WebRTC和ORTC的Python实现

Issue #340 PyCoder’s Weekly – Issue #340 Oct. 30, 2018

Cite

Plot Your CPU Usage With Python Desktop Widget
Renders an animated graph of your entire system by watching the utilization of each of your CPU cores. Built with PySimpleGUI. REDDIT.COM

PySimpleGUI做的 https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Desktop_Widget_CPU_Dashboard.py

评论