DEV Community

Bas Steins
Bas Steins

Posted on • Originally published at bas.codes

 

This Week In Python

Fri, February 03, 2023

This Week in Python is a concise reading list about what happened in the past week in the Python universe.

I have received some good suggestions for this week's content. Thank you.

Did I miss anything from the Python universe this week? What did you read or tried out?

Python Articles

Projects

  • clamshell – experimenting with a python based shell
  • django-prose – rich-text editing for your Django project
  • sematic – open-source ML pipeline development platform
  • python-functown – Helper library for Azure Function programming
  • gracy – Gracy helps you handle failures, logging, retries, throttling, and tracking for all your HTTP interactions

Did I miss anything from the Python universe this week? What did you read or tried out?

Top comments (0)

An Animated Guide to Node.js Event Loop

Node.js doesn’t stop from running other operations because of Libuv, a C++ library responsible for the event loop and asynchronously handling tasks such as network requests, DNS resolution, file system operations, data encryption, etc.

What happens under the hood when Node.js works on tasks such as database queries? We will explore it by following this piece of code step by step.