JoanGiner's picture
first commit
3759fd0
raw
history blame contribute delete
518 Bytes
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()