Redis Installation on CentOS Using Ansible

11 Jan 2021

Ansible Introduction

Ansible is an IT automation tool. It can configure systems, deploy software, and orchestrate more advanced IT tasks such as continuous deployments or zero downtime rolling updates. Ansible use SSH for transport to run the tasks.

Documentation: Ansible User Guide Intro.

Python Github Report Web Scraper and Excel File Result

06 Jan 2021

We are making python script that scrape github repository URL and make a report of it on Excel File. We are gonna learn to make web scraper and write the result on structured data file, in this case xlsx file.

Python ASGI Middleware

06 Nov 2020

Usage Introduction

On making custom Middleware, we use starlette middleware abstract class BaseHTTPMiddleware. To implement a middleware class using BaseHTTPMiddleware, you must override the async def dispatch(request, call_next) method.