Spaces:
Paused
Paused
File size: 317 Bytes
79187c5 ed31396 4abbeaf 79187c5 4f84f55 82542ff ed31396 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | import altair as alt
import numpy as np
import pandas as pd
import streamlit as st
from PIL import Image # Used to open and handle image files
import os
image_path = os.path.join(os.getcwd(), 'images/logo.png')
image = Image.open(image_path)
st.image(image, caption='a')
st.write('Polymer and Composites Database')
|