Код: Выделить всё
## Packages
import pickle
from pathlib import Path
import streamlit as st
## Pathing
main_path = Path(__file__).parent.parent
file_path = main_path / 'out' / 'data.pickle'
## Load portfolio
with open(file_path, 'rb') as file:
pf = pickle.load(file)
st.title("Hello")
Код: Выделить всё
ModuleNotFoundError: No module named 'custom_library'Подробнее здесь: https://stackoverflow.com/questions/792 ... tom-object
Мобильная версия