You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PynneX provides a modern emitter-listener (signal-slot) pattern with thread safety, async support, and dynamic connection detection. Build decoupled architectures without heavy frameworks. It’s pure Python 3.10+; minimal overhead. Choose from multiple aliases (signal-slot or publisher-subscriber).
A Python Signal-Slot library inspired by Qt, featuring thread-safe communication, async support, and automatic connection type detection. Perfect for decoupled event-driven architecture and thread synchronization.
The Snake Game in Python is a simple arcade-style game where a snake moves around the screen, growing longer as it consumes food, while avoiding collisions with its own tail or the screen boundaries
This repository contains a collection of Python scripts designed to perform temperature conversions between Celsius and Fahrenheit using both command-line and graphical interfaces. The main script, temp_convert_gui.py, provides a user-friendly graphical interface for conversions, while the other scripts offer command-line functionality.
I got into coding with Python Crash Course by Eric Matthes, which gave me a solid Python foundation through theory and hands-on projects like XenoInvasionX.
A powerful Python automation toolkit that monitors and controls input devices. This project leverages the Pynput library to track mouse movements, capture keyboard events, and automate input actions. Perfect for developers building testing tools, gaming automation, or input monitoring applications. Features include real-time mouse and KB tracking.
This Python script provides an interactive environment for creating sketches using the Turtle graphics library. Users can control the movement of the turtle, drawing lines on the canvas, and easily clear the workspace for a fresh start.
This is a simple implementation of the classic arcade game Pong using Python's Turtle graphics library. Players control paddles to hit a ball back and forth across the screen, scoring points when the opponent misses. Enjoy some nostalgic fun with this recreation of a timeless classic!
Alien Invasion is a classic arcade-style game built with Python and Pygame. Players control a spaceship at the bottom of the screen, firing bullets to destroy waves of descending aliens. The game demonstrates core concepts of game development, including event handling, collision detection, object movement, and sprite management.
This is a simple Pomodoro Timer application built using Python's Tkinter library. The Pomodoro Technique is a time management method that uses a timer to break work into intervals, traditionally 25 minutes in length, separated by short breaks.