eaglelandsonce commited on
Commit
a09b6d4
·
verified ·
1 Parent(s): 700258a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -1,10 +1,15 @@
1
  import streamlit as st
2
  import json
3
  import matplotlib.pyplot as plt
 
4
 
5
- # Set Streamlit page configuration
6
  st.set_page_config(layout="wide")
7
 
 
 
 
 
 
8
  # Function to load JSON data
9
  def load_data(filename):
10
  with open(filename, 'r') as file:
 
1
  import streamlit as st
2
  import json
3
  import matplotlib.pyplot as plt
4
+ import time
5
 
 
6
  st.set_page_config(layout="wide")
7
 
8
+ # HIN Number +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
9
+ from SPARQLWrapper import SPARQLWrapper, JSON
10
+ from streamlit_agraph import agraph, TripleStore, Node, Edge, Config
11
+ import json
12
+
13
  # Function to load JSON data
14
  def load_data(filename):
15
  with open(filename, 'r') as file: