Creating a Python Web Application using Python Flask Part 6: Intro to frequently used AWS Services

Overview: Create an IAM user Create, Read, Update, Delete a Users table Add test coverage for our new Dynamo and Users helper Add the project to git In the last article we talked a little about AWS and hopefully you had a chance to set up a free account so we can take advantage of … More Creating a Python Web Application using Python Flask Part 6: Intro to frequently used AWS Services

Creating a Python Web Application using Python Flask Part 5: Intro to frequently used AWS Services

In this part I’ll ask you to do some independent learning to go out and set up a free tier Amazon AWS account, so in the next part we can go out and take advantage of all the amazing cloud services amazon has build up and shared with the development community. There are a couple … More Creating a Python Web Application using Python Flask Part 5: Intro to frequently used AWS Services

Creating a Python Web Application using Python Flask Part 4: Installing a bootstrap theme

Now that our web application has a real front end and a javascript framework from part 3 lets make our webpage not like it was made in the 1990s by installing a bootstrap theme. The theme we’re going to be using is called the gentelella theme and can be found here . Let’s talk about … More Creating a Python Web Application using Python Flask Part 4: Installing a bootstrap theme

Creating a Python Web Application using Python Flask Part 3: Adding Angular to our web app

<< Part 2 Welcome back to my building a module web application with python flask series. Last time we saw how to have flask serve our static assets and this time we will bring in the javascript. If you haven’t done so all ready remember to follow the blog and share this post to show … More Creating a Python Web Application using Python Flask Part 3: Adding Angular to our web app

Creating a Python Web Application using Python Flask: Part 2 Adding a home page

Building off of where we left at in part 1 we created a simple page that served a simple string from the view code itself.  Now let’s make this Python Flask code look a little more like a web application and be sure to follow me if you want to updated on when the next … More Creating a Python Web Application using Python Flask: Part 2 Adding a home page

Creating a Python Web Application using Python Flask

Written by: Stefan Bradstreet When it comes to developing a web application quickly and can perform well under scale there is no better technology then using python flask outside of NodeJS in terms of speed, development, and flexibility. In this multipart series I’ll be working on building a web app and highlighting the benefits of … More Creating a Python Web Application using Python Flask

Learn Data Structures Simply: What they are and why we need them

Written by: Stefan Bradstreet Data structures are tools within a programming language that a software developer can use to organize their data. This allows the developer and the program to store and retrieve data in a way depending on the developers goals. If a program will need to save and retrieve data often then a … More Learn Data Structures Simply: What they are and why we need them

10 tips to be a successful programmer

With the rapid rise of technology and labor automation occurring in the workplace the need for programmers will only continue to increase as work transitions from manual tasks to writing code for robots, service line sensors for predictive maintenance, artificial intelligence systems, machine learning algorithms for big data, and other emerging technologies. Even in non-coding … More 10 tips to be a successful programmer

Storing data in memory using variables in Python

Imagine you’ve just started your journey in the coding world and don’t quite understand what all these “Hello World” programs are actually doing. At some point in time this was EVERYONE so no need to feel alone or embarrassed. In this article I’ll go into deeper detail over what a Python program is doing when … More Storing data in memory using variables in Python