Hi, I’m new to Streamlit, used pipreqs to create requirments.txt
I could able to run the code locally, getting a module error while deploying
Here’s my code snippet,
import requests
import numpy as np
import pandas as pd
from datetime import date
from datetime import timedelta
import os
import matplotlib.pyplot as plt
from IPython.display import display
from keras.models import Sequential
from keras.layers import LSTM, Dense
from sklearn.preprocessing import MinMaxScaler
today = date.today()
yesterday = today - timedelta(days = 2)
date = []
link = []
for i in range(365):
d = yesterday - timedelta(days=i)