Category Archives: Python

How to Install PyOpenGL on Windows 10

By | September 15, 2023

PyOpenGL is an python module that implements OpenGL functions in python allowing you to write OpenGL applications using Python. With OpenGL you are able to write applications that use “GPU acceleration”. So if you have an Nvidia RTX 3060 gpu on your system, the opengl functions will use it to render the 3D graphics on… Read More »

Raw Socket Programming in Python on Linux – Code Examples

By | January 13, 2023

Raw sockets Raw sockets allow a program or application to provide custom headers for the specific protocol(tcp ip) which are otherwise provided by the kernel/os network stack. In more simple terms its for adding custom headers instead of headers provided by the underlying operating system. Raw socket support is available natively in the socket api… Read More »