Modern OpenGL binding for python. Contribute to moderngl/moderngl development by creating an account on GitHub. (more…)
Read more »
The old GvR quote still holds: If you want your code to
run faster, you should probably just use PyPy. For my serialization library, the
performance improved a lot between 3.6 and 3.11, but since then it has mostly stayed the same.
PyPy p... (more…)
Read more »
Beginning I have always been a fan of (non premature) optimisations, especially the technical optimisations done to reduce the cost. When in .NET, the introduced Span<T> that brought a lot of… (more…)
Read more »
In this step-by-step tutorial, you'll learn what Python descriptors are and how they're used in Python's internals. You'll learn about the descriptor protocol and how the lookup chain works when you access an attribute. You'll also see a few practical exa... (more…)
Read more »
Looking for an alternative to the "standard" Java-based Eclipse Modeling Framework? Try this Python implementation of EMF, including model transformations...
Read more »