Rich Text and Beautiful Formatting in the Terminal with Rich Python

In this tutorial we will be exploring Rich – a  python package for working with rich text and beautiful formatting in the terminal or command prompt. First of all let see some of the benefits  we can do with this package. Adding Color and Style to Text Emoji Markdown Syntax Highlighting Tables In the Terminal …

Rich Text and Beautiful Formatting in the Terminal with Rich Python Read More »

Securing Login Page/Section From SQL Injections – For Streamlit Apps

In the previous tutorial we saw how to build a simple login page for Streamlit,in this post we will check out the various ways to secure our app and in most cases any web app that has a login and a form of database. In designing your web applications there are certain measures to take …

Securing Login Page/Section From SQL Injections – For Streamlit Apps Read More »

Generating Machine Learning Pipelines using Tpot and Genetic Programming in Python

Automated Machine learning is a fascinating field of machine learning and Data Science in which we automate some of the stages of ML life cycle such as feature engineering, model building,etc. It mostly works best after the data has been cleaned and pre-processed properly. There are several libraries and tools that can be used in …

Generating Machine Learning Pipelines using Tpot and Genetic Programming in Python Read More »

Building A Simple Bioinformatics App with Streamlit and BioPython

Bioinformatics which is also called Biological Data Science is an awesome and fascinating field of  science. In this tutorial we will build a simple app using Streamlit to do some basic sequence analysis and dot plot of two DNA sequences. We will be using BioPython and NeatBio to do our processing of our sequence and …

Building A Simple Bioinformatics App with Streamlit and BioPython Read More »

Simple CSS Shape Generator App with Streamlit – Color Picker

Streamlit is a powerful but simple framework for building ML and Data Science Apps primarily,but it can also be used to build some cool apps outside the field of Machine Learning and Data Science. In this tutorial we will see how to use streamlit to build a simple CSS Shape generator. We will be using …

Simple CSS Shape Generator App with Streamlit – Color Picker Read More »

Protein Sequence Analysis of Covid19 using BioPython

In this tutorial we will be analysing the genomic and DNA sequence of coronavirus (ncov 19) using a wonderful bioinformatic package called BioPython. We will do a simple introduction of how to use BioPython and then continue with our protein analysis of Covid19. Installation pip install biopython Applications of BioPython For sequence analysis (DNA,RNA) To …

Protein Sequence Analysis of Covid19 using BioPython Read More »