Introduction to Python on AWS with Boto

Amazon Web Services offer us all cheap, ready access to serious cloud computing infrastructure. So how do we run Python on it? Setting up Python on Amazon EC2 EC2 is Amazon’s Elastic Compute Cloud. It’s the service used to create and operate virtual machines on AWS. You can interact with these machines using SSH, but […]

Read More

Introduction to Python’s TkInter

At some point in your Python experience, you might want to create a program with a graphical user interface or GUI (pronounced “gooey” by most). Many toolkits for Python exist to accomplish this, including Python’s own native GUI library, TkInter. Setting up GUIs in Tkinter isn’t complicated, though in the end it depends on the […]

Read More