awacke1 commited on
Commit
180f1dc
·
1 Parent(s): 084eda8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +15 -7
app.py CHANGED
@@ -1,11 +1,19 @@
1
- from fhiry.fhirsearch import Fhirsearch
2
 
3
- fs = Fhirsearch(fhir_base_url = "http://fhir-server:8080/fhir")
4
 
5
- my_fhir_search_parameters = {
6
- "code": "http://snomed.info/sct|39065001",
7
- }
8
 
9
- df = fs.search(resource_type = "Condition", search_parameters = my_fhir_search_parameters)
10
 
11
- print(df.info())
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
 
3
+ st.markdown("""
4
 
5
+ HAPI FHIR: The HAPI FHIR project provides an open-source reference implementation of the FHIR specification. They offer a public test server that you can use to test your FHIR applications. You can access the server at https://hapi.fhir.org.
 
 
6
 
7
+ Smile CDR: Smile CDR is a commercial FHIR server that offers a free test server that you can use for development and testing. You can access the server at https://smilecdr.com/free-fhir-test-server.
8
 
9
+ Aidbox: Aidbox is another commercial FHIR server that offers a free test server for development and testing. You can sign up for a free account at https://aidbox.app/signup.
10
+
11
+ Simplifier: Simplifier is an online platform for FHIR development that provides a free test server for FHIR R4 and STU3. You can sign up for a free account at https://simplifier.net.
12
+
13
+ IBM FHIR Sandbox: IBM offers a free FHIR sandbox environment that you can use for development and testing. You can access the sandbox at https://ibm-fhir-server.mybluemix.net.
14
+
15
+ """)
16
+
17
+
18
+
19
+