DEV Community

Bas Steins
Bas Steins

Posted on • Originally published at bas.codes

 

This Week In Python

Fri, January 13, 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

  • Gooey – Turn (almost) any Python command line program into a full GUI
  • granian – A Rust HTTP server for Python applications
  • pypod – Python terminal music player
  • evue – high-performance gui framework
  • Django-Styleguide – Django styleguide used in HackSoft projects

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.