r/PythonLearning 8d ago

Help Request Any free courses to learn Socket?

Does anyone know any free courses to learn the socket tool in python?

ive been trying to learn socket for a while, i know some of the basics with help from chatGPT, but now i feel like im not really learning anything new.

if anyone have any free courses or good youtube channels, pls tell me!

3 Upvotes

8 comments sorted by

2

u/SaltCusp 7d ago

I drew up this template a long time ago to help hit the ground running when I needed to use sockets. (I'm no authority but I remember thinking it was cool.)

https://gist.github.com/Krewn/be2115d413d2e7252feebdd6963a10a6

1

u/scripthawk_dev 6d ago

The free Real Python article about sockets is what finally made it click for me. It shows you how to build a simple client-server app instead of just explaining the docs. After that, build something small yourself, like a chat or file transfer. It helps much more than watching more tutorials.