Files
DBViewerOnStreamlit/modules/mainPage.py
2020-02-11 21:44:22 +03:00

16 lines
394 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import streamlit as st
from PIL import Image
def main():
st.title('Добро пожаловать в просмотрщик базы даных')
st.write('Вас приветствует простое приложение для работы с бд')
image = Image.open('./media/image.png')
st.image(image, use_column_width=True)
if __name__ == "__main__":
main()