This repository contains my learning journey into Advanced Python topics.
I use this repo to practice, document, and organize all the important concepts I learn — starting with threading and multiprocessing, and expanding into more advanced areas in the future.
- ✅ Threading
- Basics of threading
- GIL and its impact
- Thread synchronization (Locks)
- Threading in I/O-bound tasks
- ✅ Multiprocessing
- Basics of multiprocessing
- GIL bypass with processes
- Sharing data with
ValueandQueue - Process synchronization
- 🔜 More advanced concepts coming soon...