fix
This commit is contained in:
parent
28d7028095
commit
5ab914c284
3 changed files with 661 additions and 623 deletions
|
|
@ -19,6 +19,10 @@ else:
|
|||
|
||||
DATA = echa_request(cas_number)
|
||||
|
||||
if 'substance' not in DATA:
|
||||
st.error(DATA)
|
||||
st.stop()
|
||||
|
||||
def extract_tox_info_values(data):
|
||||
"""Extract DNEL values from toxicological information."""
|
||||
rows = []
|
||||
|
|
@ -87,6 +91,7 @@ def extract_repeated_values(data):
|
|||
# App
|
||||
st.title("Toxicological Data Viewer")
|
||||
|
||||
|
||||
# Substance info
|
||||
substance = DATA["substance"]
|
||||
dossier = DATA["dossier_info"]
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@ description = "Add your description here"
|
|||
readme = "README.md"
|
||||
requires-python = ">=3.12"
|
||||
dependencies = [
|
||||
"duckdb>=1.4.3",
|
||||
"marimo>=0.18.0",
|
||||
"streamlit>=1.51.0",
|
||||
]
|
||||
|
|
|
|||
Loading…
Reference in a new issue