Catalin George Festila: Python 3.7.3 : Using the flask - part 011.
The tutorial for today is focused on the email issue. I will start with the new python module for flask named flask_mail. Let's install it: C:\Python373>cd Scripts C:\Python373\Scripts>pip3...
View ArticleListenData: Python : Complete Guide to Date and Time Functions
In this tutorial, we will cover python datetime module and how it is used to handle date, time and datetime formatted columns (variables). It includes various practical examples which would help you to...
View ArticleReal Python: Welcome to Real Python!
Welcome! In this series of videos you’ll get an overview of the features of the Real Python platform, so you can make the most of your membership. Follow along and get tips on:How to find the most...
View ArticlePyPy Development: A second life for the Sandbox
Hi all,Anvil is a UK-based company sponsoring one month of work to revive PyPy's "sandbox" mode and upgrade it to PyPy3. Thanks to them, sandboxing will be given a second life! The sandboxed PyPy is a...
View ArticleDataquest: 5 Steps to Learning Python the Right Way
Learn Python online in 5 steps, with hands-on missions that can take you from zero experience to data scientist quicker than you think!The post 5 Steps to Learning Python the Right Way appeared first...
View ArticleLearn PyQt: PyQt5 Widgets Overview
In Qt (and most User Interfaces) ‘widget’ is the name given to a component of the UI that the user can interact with. User interfaces are made up of multiple widgets, arranged within the window.Qt...
View ArticleKogan Dev: Making Heroku Subdirectories Easier
To keep your codebase clean, it helps to have a separation of concerns. Splitting your codebase into a backend and frontend directory a great way to do this.Unfortunately Heroku buildpacks do not...
View ArticleKogan Dev
To keep your codebase clean, it helps to have a separation of concerns. But how do we do this for Heroku applications?
View ArticleMoshe Zadka: Designing Interfaces
One of the items of feedback I got from the article about interface immutability is that it did not give any concrete feedback for how to design interfaces. Given that they are forever, it would be...
View ArticleMatt Layman: Ripping Out Node.js - Building SaaS #30
In this episode, we removed Node.js from deployment. We had to finish off an issue with permissions first, but the deployment got simpler. Then we continued on the steps to make deployment do even...
View Article"Menno's Musings": Python virtualenvs talk
I had the pleasure of giving a talk about Python virtual environments at this week's Christchurch Python meetup. It described the problem that virtualenvs solve, some gotchas and the tools people use...
View ArticleStack Abuse: Rounding Numbers in Python
Using a computer in order to do rather complex Math is one of the reasons this machine was originally developed. As long as integer numbers and additions, subtractions, and multiplications are...
View ArticleCatalin George Festila: Python 3.7.3 : Using the flask - part 012.
The goal of this tutorial step is to understand how the project can use the new features and implementation of the project. Because in the last tutorial I used the flask_mail python module, now I will...
View ArticleStack Abuse: Python Docstrings
As already pointed out in a previous article titled Commenting Python Code you have learned that documentation is an essential, and a continuous step in the process of software development. The article...
View ArticleListenData: How to drop columns in Pandas Dataframe
In this tutorial, we will cover how to drop or remove one or multiple columns from pandas dataframe.What is pandas in Python?pandas is a python package for data manipulation. It has several functions...
View ArticleCodementor: JSON Data to a pandas df without read_json() method
How to deal with JSON data in python
View ArticleCatalin George Festila: Python 3.7.3 : Using the flask - part 013.
Flask uses Jinga2 template engine. The Jinga2 template engine uses the following delimiters for escaping from HTML. We can use this: {% ... %} for Statements {{ ... }} for Expressions to print to the...
View ArticleCodementor: Path Towards Deploying Django - Reading Time: 3 Mins
Learning on the various paths to deploy a Django web application.
View ArticleWeekly Python StackOverflow Report: (cxc) stackoverflow python report
These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2019-08-10 21:33:55 GMTIs there a difference between `board[x, y]` and...
View ArticleListenData: Python : Learn Object Oriented Programming in 3 Hours
This tutorial outlines object oriented programming (OOP) in Python with examples. It is a step by step guide which was designed for people who have no programming experience. Object Oriented...
View Article