Tag: website

  • From problem to Python

    From problem to Python

    Developing a website monitoring tool By Joseph Carboni This is an example of using an acute business problem as an opportunity to use Python for a helpful solution – a website status monitor. An exercise in looping, making web requests, and running a python utility from the command line. (Given the nature of the problem,…

  • 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…