Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -3,6 +3,114 @@ import streamlit as st
|
|
3 |
# Set the page configuration to use the full width of the screen
|
4 |
st.set_page_config(layout="wide")
|
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
GALMIO=("""
|
7 |
| π₯ **Letter Type** | π **Definition** | π **Data Fields** |
|
8 |
|-----------------------|-----------------------------------------|-----------------------------|
|
|
|
3 |
# Set the page configuration to use the full width of the screen
|
4 |
st.set_page_config(layout="wide")
|
5 |
|
6 |
+
|
7 |
+
CODELICENSING = ("""
|
8 |
+
1. π Simplified Synopsis
|
9 |
+
* π Ideal Open Source Code Copyright License
|
10 |
+
* βοΈ Navigating Copyright Infringement and Licensing Disagreements
|
11 |
+
2. π₯ Alternative Healthcare Terminology Options
|
12 |
+
1. π International Classification of Diseases (ICD)
|
13 |
+
* π’ Managed by the World Health Organization (WHO)
|
14 |
+
2. π Systematized Nomenclature of Medicine - Clinical Terms (SNOMED CT)
|
15 |
+
* π’ Managed by SNOMED International
|
16 |
+
3. π¬ Logical Observation Identifiers Names and Codes (LOINC)
|
17 |
+
* π’ Managed by the Regenstrief Institute
|
18 |
+
3. π Resources
|
19 |
+
* π AMA, WHO, SNOMED International, and Regenstrief Institute Websites
|
20 |
+
* π Legal Journals
|
21 |
+
* π Wikipedia (verify information with primary and authoritative sources)
|
22 |
+
4. π‘ Recommendation
|
23 |
+
* π Consult Legal Professionals
|
24 |
+
* π₯ Consult Healthcare Organizations
|
25 |
+
* π Consult Authoritative Sources for Comprehensive and Current Information
|
26 |
+
|
27 |
+
<!DOCTYPE html>
|
28 |
+
<html lang="en">
|
29 |
+
<head>
|
30 |
+
<meta charset="UTF-8">
|
31 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
32 |
+
<title>Open Source Medical Software Resources</title>
|
33 |
+
</head>
|
34 |
+
<body>
|
35 |
+
<h1>Open Source Medical Software Resources</h1>
|
36 |
+
<ul>
|
37 |
+
<li><a href="https://en.wikipedia.org/wiki/World_Health_Organization" target="_blank">World Health Organization (WHO)</a></li>
|
38 |
+
<li><a href="https://en.wikipedia.org/wiki/International_Classification_of_Diseases" target="_blank">International Classification of Diseases (ICD)</a></li>
|
39 |
+
<li><a href="https://en.wikipedia.org/wiki/SNOMED_CT" target="_blank">Systematized Nomenclature of Medicine - Clinical Terms (SNOMED CT)</a></li>
|
40 |
+
<li><a href="https://en.wikipedia.org/wiki/LOINC" target="_blank">Logical Observation Identifiers Names and Codes (LOINC)</a></li>
|
41 |
+
<li><a href="https://en.wikipedia.org/wiki/Regenstrief_Institute" target="_blank">Regenstrief Institute</a></li>
|
42 |
+
</ul>
|
43 |
+
<h2>Sample License File</h2>
|
44 |
+
<pre>
|
45 |
+
MIT License
|
46 |
+
|
47 |
+
Copyright (c) 2023 Aaron Wacker
|
48 |
+
|
49 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
50 |
+
of this software and associated documentation files (the "Software"), to deal
|
51 |
+
in the Software without restriction, including without limitation the rights
|
52 |
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
53 |
+
copies of the Software, and to permit persons to whom the Software is
|
54 |
+
furnished to do so, subject to the following conditions:
|
55 |
+
|
56 |
+
The above copyright notice and this permission notice shall be included in all
|
57 |
+
copies or substantial portions of the Software.
|
58 |
+
|
59 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
60 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
61 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
62 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
63 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
64 |
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
65 |
+
SOFTWARE.
|
66 |
+
</pre>
|
67 |
+
</body>
|
68 |
+
</html>
|
69 |
+
|
70 |
+
|
71 |
+
import streamlit as st
|
72 |
+
|
73 |
+
st.title('Open Source Medical Software Resources')
|
74 |
+
|
75 |
+
st.markdown(
|
76 |
+
|
77 |
+
π [World Health Organization (WHO)](https://en.wikipedia.org/wiki/World_Health_Organization)
|
78 |
+
|
79 |
+
π [International Classification of Diseases (ICD)](https://en.wikipedia.org/wiki/International_Classification_of_Diseases)
|
80 |
+
|
81 |
+
π [Systematized Nomenclature of Medicine - Clinical Terms (SNOMED CT)](https://en.wikipedia.org/wiki/SNOMED_CT)
|
82 |
+
|
83 |
+
π¬ [Logical Observation Identifiers Names and Codes (LOINC)](https://en.wikipedia.org/wiki/LOINC)
|
84 |
+
|
85 |
+
π’ [Regenstrief Institute](https://en.wikipedia.org/wiki/Regenstrief_Institute)
|
86 |
+
|
87 |
+
st.header('Sample License File')
|
88 |
+
|
89 |
+
#st.code(
|
90 |
+
MIT License
|
91 |
+
|
92 |
+
Copyright (c) 2023 Aaron Wacker
|
93 |
+
|
94 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
95 |
+
of this software and associated documentation files (the "Software"), to deal
|
96 |
+
in the Software without restriction, including without limitation the rights
|
97 |
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
98 |
+
copies of the Software, and to permit persons to whom the Software is
|
99 |
+
furnished to do so, subject to the following conditions:
|
100 |
+
|
101 |
+
The above copyright notice and this permission notice shall be included in all
|
102 |
+
copies or substantial portions of the Software.
|
103 |
+
|
104 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
105 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
106 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
107 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
108 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
109 |
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
110 |
+
SOFTWARE.
|
111 |
+
, language='')
|
112 |
+
""")
|
113 |
+
|
114 |
GALMIO=("""
|
115 |
| π₯ **Letter Type** | π **Definition** | π **Data Fields** |
|
116 |
|-----------------------|-----------------------------------------|-----------------------------|
|