Rohit036 / Porter-Logistic-Project

Determining the delivery time of the order

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

streamlit-multiapps

A simple framework in python to create multi page web application using streamlit.

How to Run

  1. Clone the repository:
$ cd  Porter-Logistic-Project
  1. Install dependencies:
$ pip install -r requirements.txt
  1. Start the application:
streamlit run app.py

How to add new app

  1. Add a new python file in apps/ folder with a function named app.
# apps/new_app.py

import streamlit as st

def app():
    st.title('New App')
  1. Now add it to app.py
from apps import newapp # import your app modules here

app = MultiApp()

# Add all your application here
app.add_app("New App", newapp.app)

That's it your new app is added to your application and is live in default browser.

To Checkout Project hit URL on your favourite browser

    https://porter-logistic.herokuapp.com/

About

Determining the delivery time of the order

License:MIT License


Languages

Language:Jupyter Notebook 99.7%Language:Python 0.3%Language:Shell 0.0%Language:Procfile 0.0%