awacke1 commited on
Commit
f955844
Β·
1 Parent(s): c2b4ec7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +108 -0
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
  |-----------------------|-----------------------------------------|-----------------------------|