Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -65,10 +65,10 @@ if user_input:
|
|
| 65 |
result = [i for i in e['@graph']]
|
| 66 |
# display result
|
| 67 |
st.subheader('Prefix namespaces mentioned in the example:')
|
| 68 |
-
|
| 69 |
-
st.json(e['@context'])
|
| 70 |
st.subheader('Full example:')
|
| 71 |
-
|
| 72 |
-
st.json(result)
|
| 73 |
|
| 74 |
|
|
|
|
| 65 |
result = [i for i in e['@graph']]
|
| 66 |
# display result
|
| 67 |
st.subheader('Prefix namespaces mentioned in the example:')
|
| 68 |
+
st.text_area("", e['@context'], height=200)
|
| 69 |
+
#st.json(e['@context'])
|
| 70 |
st.subheader('Full example:')
|
| 71 |
+
st.text_area("", result, height=400)
|
| 72 |
+
#st.json(result)
|
| 73 |
|
| 74 |
|