Pular para conteúdo

About

about()

Traz informações sobre o projeto Leia.

Source code in app/about.py
 3
 4
 5
 6
 7
 8
 9
10
11
def about():
    '''
    Traz informações sobre o projeto Leia.
    '''

    st.image('./images/logo.png', width=200)
    with open('./README.md') as f:
        readme = f.read()
    st.markdown(readme, unsafe_allow_html=True)