Skip to content

Commit

Permalink
ok
Browse files Browse the repository at this point in the history
  • Loading branch information
jsstevenson committed Dec 30, 2024
1 parent 6ad3371 commit ba1d251
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,14 @@
[![Actions status](https://github.com/genomicmedlab/regbot/actions/workflows/checks.yaml/badge.svg)](https://github.com/genomicmedlab/regbot/actions/checks.yaml)

<!-- description -->
Fetch regulatory approval data for drug terms
<!-- /description -->
Acquire cleaned and structured data about drugs and therapeutics from US regulatory agencies and services:

* ClinicalTrials.gov
* Drugs@FDA
* RxClass
<!-- /description -->

All data returned from regulatory APIs is structured as instances of standard library NamedTuples. This is done to give data structure and rudimentary type annotation (i.e. to benefit code editor and analysis tools) without adding runtime heft or being wedded to particular schema libraries like Pydantic. This may change in the future.

---

Expand Down
4 changes: 0 additions & 4 deletions src/regbot/fetch/clinical_trials.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,6 @@
>>> serious_events.append(event.term)
>>> serious_events[:3]
['ANAEMIA', 'AUTOIMMUNE HAEMOLYTIC ANAEMIA', 'EVANS SYNDROME']
The schema elements are structured as standard-library NamedTuple classes. This is done
to provide very basic name-completion and type annotation, without being wedded to a
particular schema library like Pydantic (though this could change in the future).
"""

import datetime
Expand Down

0 comments on commit ba1d251

Please sign in to comment.