Tag: socket

  • Making a website with just python standard library

    Making a website with just python standard library

    Have you ever wanted to know what it would take to actually write a website in python? Some kind of simple project that would allow you to learn how python creates a front end using just the standard library is easy.You simply need to use http.server and socketserver. Define a port and create a class…