Libraries
5 talks from the 2022 edition.
-
An Introduction to Inter Process Communication and Synchronization using Python
Tanmoy Bandyopadhyay
IPC and Synchronization techniques using Python will be explained in this tutorial. We will learn how to pass messages to processes using Queue and Pipes, share data between processes using Shared Memory, effectively...
-
Building an ORM from scratch ▶ Recording 📝 Transcript
Jonathan Oberländer, Patrick Schemitz
Have you ever wondered how Django, SQLAlchemy, and PonyORM can translate Python objects into database rows? How complicated can this really be? In this talk we will be creating our own (limited) ORM from scratch,...
-
Introduction to OPC-UA and industrial IoT: Liberate machines from the proprietary clutches of Big Hardware with the power of opcua-asyncio
Joey Faulkner
Industrial IoT as a field has not outgrown proprietary protocols and closed systems, and this hinders the field in countless ways and funnels money into big hardware conglomerates. With OPC-UA, a new IIoT protocol,...
-
jsonargparse - Say goodbye to configuration hassles ▶ Recording 📝 Transcript
Marianne Stecklina
Did you ever find yourself in one of the following situations? * You hard-coded a parameter and now you really wish you could easily change it. * A proper command line interface would be nice, but you are way too...
-
Speeding up Python with Zig ▶ Recording 📝 Transcript
Adam Serafini
Zig is an almost drop-in replacement for C, and that includes directly importing and calling the Python C API without the use of FFI and/or bindings. This makes it an alternative candidate for implementing libraries...