Streamlit

How to Run Streamlit Apps From Google’s Colab

The simplicity that streamlit offers for building apps is so cool and useful. But sometimes you may be constrained by lack of compute or incompatible  working environment on your local computer. In most cases Colab solves that problem. But what if you want to share your streamlit app with others from Colab. In this tutorial …

How to Run Streamlit Apps From Google’s Colab Read More »

Simple NLP app with Spacy-Streamlit

In this tutorial we will build a simple natural language processing(NLP) app with an awesome package called Spacy-Streamlit. Spacy-Streamlit is a python package that is useful for visualizing spaCy models and building interactive spaCy-powered apps with Streamlit. It has several functions and utils for visualizing spacy’s essential NLP features such as Tokenization using visualize_tokens() NER(Named …

Simple NLP app with Spacy-Streamlit 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 »

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 »

How to Deploy A Face Detection Streamlit App on Heroku

In the previous tutorial,we saw how to build a simple face detection and image manipulation app with streamlit and opencv in python.   In this tutorial we will see how to deploy our app on heroku.  Deploying apps on heroku is quite simple, but you can face some issues when trying to deploy a computer …

How to Deploy A Face Detection Streamlit App on Heroku Read More »

Building A Face Detection App with Streamlit and OpenCV

In this tutorial we will be building a simple face detection app with streamlit  and OpenCV. We will be using streamlit to help us with our UI. This is going to be a simple Computer Vision App using OpenCV in python. This is how our app will look like after we are done building it. …

Building A Face Detection App with Streamlit and OpenCV Read More »