News

Give your Python applications a rocket boost—here's everything you need to know to get started with Cython and its Python-to-C compiler.
Python lets you parallelize workloads using threads, subprocesses, or both. Here's what you need to know about Python's thread and process pools and Python threads after Python 3.13.
Still, we hadn't yet come across a killer feature which we could only use in Python 3.6 to make us finally drop support for Python 2.7. Asyncio, which is not available at all in Python 2.7, became ...
Well, Python provides threading. Many people think of Python's threads as fatally flawed, because only one thread actually can execute at a time, thanks to the GIL (global interpreter lock). This is ...
Learn about Python metaclasses, how to define and use them, and explore examples to understand their functionality with this comprehensive tutorial.
Ruby and Python's standard implementations make use of a Global Interpreter Lock. Justin James explains the major advantages and downsides of the GIL mechanism.
You can read a ton of tutorials, for example, and still not understand how to make a game in Python, or how to build a web app. In this post, we’re going to discuss how to make a very simple ...