File size: 518 Bytes
3759fd0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
import os
import requests
import json
import argparse
import streamlit as st
from sdc_view import render_sdc
##
## Streamlit!
##
st.set_page_config(page_title="The Software Diversity Card", page_icon=":woman_and_man_holding_hands:", layout="wide")
# Hide the deploy button
st.markdown("""
<style>
[data-testid="stAppDeployButton"] { visibility: hidden; }
.stMainBlockContainer { max-width: 1280px; }
</style>
""",
unsafe_allow_html=True)
render_sdc()
|