Tag: Python
-
Using Behave framework for Selenium BDD testing
Posted on September 4, 2018, Level intermediate Resource Length long
An article by Dzmitry Ihnatsyeu published by guys from BlazeMeter about automating the testing of an application. There are many ways of testing -- like unit testing, test-driven development, keyword-driven development, behavior-driven development and so on. In this article, autho talks about one of the most popular approaches to test automation -- BDD or behavior-driven development.
Tags tdd software browsers agile python code-refactoring cicd learning
-
How to build a simple auto-login bot with Python and Selenium
Posted on August 17, 2018, Level beginner Resource Length medium
Malik Brahimi blog post about automation and how to use it for tasks that are repetitive, boring, time-consuming, or otherwise inefficient without the use of a script.
Tags programming bots tdd python software
-
Why Python devs should use Pipenv
Posted on July 11, 2018, Level beginner Resource Length short
Lacey Williams Henschel article about Pipenv which has become the official Python-recommended resource for managing package dependencies. Pipenv, the "Python Development Workflow for Humans" created by Kenneth Reitz. But there is still confusion about what problems it solves and how it's more useful than the standard workflow using pip and a requirements.txt file.
Tags python programming
-
The Right Way™ to do Serverless in Python
Posted on July 2, 2018, Level intermediate Resource Length medium
Michael Lavers published this interesting piece about serverless in Python. In this blog post author takes a brief tour of serverless as it applies to Python as well as some handy tips and tricks to help you get your footing in serverless domain.
Tags programming serverless python
-
Deploy serverless machine learning microservice with scikit-learn
Posted on February 18, 2018, Level intermediate Resource Length medium
Patrick Michelberger created this tutorial in which we deploy a machine learning microservice using AWS Lambda, AWS API Gateway and scikit-learn.
Tags machine-learning aws serverless python
-
How to Handle Exceptions in Python
Posted on June 22, 2017, Level intermediate Resource Length medium
Monty Shokeen wrote neat article about handling exceptions in Python programming language.
Tags python programming oop
-
An Overview of Object-Oriented Programming Using Python
Posted on March 30, 2017, Level beginner Resource Length medium
Sajjan Kumar article serves as intro into Object-Oriented Programming in Python.
Tags programming python oop
-
Token-Based Authentication With Flask
Posted on January 28, 2017, Level intermediate Resource Length long
This tutorial takes a test-first approach to implementing token-based authentication in a Flask app using JSON Web Tokens (JWTs).
Tags programming python microservices