Beginner's Guide to Python - Lesson 03 - Simple Variables

Beginner’s Guide to Python – Lesson 03 – Simple Variables

Welcome to the Beginner's Guide to Python! This is video #3 in the mini-series which you can find on Youtube (or below). Variables are the building blocks of any programming language. In this video, I'll show you how to use them in Python.…
Beginner's Guide to Python - Lesson 02 - Classic Hello World

Beginner’s Guide to Python – Lesson 02 – Classic Hello World

Welcome to the Beginner's Guide to Python! This is video #2 in the series. In this video, I'll show you how to create a simple Hello World script using Python. If you have any comments or questions, let me know in the comments below or on Youtube.…
Beginner's Guide to Python - Lesson 01 - Getting Set Up

Beginner’s Guide to Python – Lesson 01 – Getting Set Up

Welcome to the Beginner's Guide to Python! This is video #1 in the mini-series which you can find on Youtube (or below). My goal for this free mini-course/mini-series is to give the absolute beginner a grasp on the Python programming language. In…
Introduction to the Python Debugger Tool
, ,

Introduction to the Python Debugger Tool

In this video demonstration, I'll show you how to get started with the Python Debugger tool. The Python Debugger (PDB) is an incredibly useful tool which can save you hours when writing Python applications. This tool has replaced my former…
INSTALL AND CONFIGURE PYENV ON LINUX
,

Install and configure PyEnv on Linux

PyEnv is a great tool for installing and switching between different versions of Python, which is particularly helpful if you're working on multiple projects or for multiple companies that use different versions of Python. In this video, I'll…
Python programming language logo on a background of palm tree leaves
,

Create a local development server for Python apps

In this tutorial I’m going to show you how to make a local development server for your Python applications using Vagrant, VirtualBox, Salt and Python3. Creating a local development server on your machine is crucial to coding quickly and efficiently.…
Smartphone lying on a wood surface
, , ,

How to Build an App Part 2: Creating the back-end with Django REST Framework

Welcome to part 2 of 3 of my How to Build an App tutorial. In the first part, I explained how to create the back-end server which we will use to host our app's back-end (if you didn't get a chance to read it, you can check it out here). In…
Smartphone lying on a wood surface
, , , , , ,

How to Build an App Part 1: Setting up the Development Server with Vagrant, Ubuntu and Salt (Mac OS X Version)

Using Windows? Click here to view the Windows version of this walk-through. After my previous post, Android Development for Beginners: 6 Steps to Building Your First App, I received some requests asking me to explain in more detail…
Smartphone lying on a wood surface
, , , , , , ,

How to Build an App Part 1: Setting up the Development Server with Vagrant, Ubuntu and Salt

Using a Mac? Click here to view the Mac OS X version of this walk-through. After my previous post, Android Development for Beginners: 6 Steps to Building Your First App, I received some requests asking me to explain in more detail…
Eclipse Windows and Python software logos on a pink background image
, ,

Virtualenv with Eclipse with PyDev on Windows 10

This article will explain how to install virtualenv and create a new Python Project in eclipse which uses a custom virtual environment. There is also a little Hello World style example at the end! This article assumes that you…