HowTo

Build and Deploy Flask App Using Hashicorp’s Waypoint

In this tutorial we will explore Waypoint – a tool designed by Hashicorp to build,deploy and release your application with ease and simplicity. Waypoint makes it easier for developers to build,deploy and release most applications using a similar and simple workflow. The main requirement includes Your App requirements.txt : For the app you want to …

Build and Deploy Flask App Using Hashicorp’s Waypoint Read More »

Pipreqs Tutorial – How to Create Requirements.txt File In Python with Ease

Reproducibility and re-usability of your Python projects is an essential aspect of being a software developer or engineer, and one of the ways to do so is to provide means that others can get the same working environments you used for your projects and the same versions of packages and libraries used. This is one …

Pipreqs Tutorial – How to Create Requirements.txt File In Python with Ease Read More »

How to Create Requirements.txt File In Python

When working on any python project or data science project it is essential to always work in an environment that makes your project reusable and repeatable without any issues for anyone that picks up your project in the future. This will even help you yourself when you revisit your project in the future. One of …

How to Create Requirements.txt File In Python Read More »

How to Add Layout to Streamlit Apps

Streamlit is awesome we several cool and useful features, in this tutorial we will explore yet another additional feature of streamlit – st.beta_columns() and st.beta_expander(). This feature is available from version 0.68 and upwards hence you will need to upgrade your previous version via pip install streamit -U or pip install streamlit –upgrade Let us …

How to Add Layout to Streamlit Apps Read More »

3 Exploratory Data Analysis Tools In Python For Data Science

Exploring your dataset is an essential aspect of every data science task or project. As an aspect of the Data Science Life Cycle , it allows you to derive descriptive and practical insight into what your data comprises of. It is essential to know how to derive such insight from your data by creating your …

3 Exploratory Data Analysis Tools In Python For Data Science Read More »

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 »