Medical-Event-Data-Standard / meds

Schema definitions and Python types for Medical Event Data Standard, a standard for medical event data such as EHR and claims data
Apache License 2.0
38 stars 3 forks source link

Move logic out of __init__.py #3

Closed tompollard closed 10 months ago

tompollard commented 11 months ago

__init__.py is typically a pretty minimal file used to help structure Python packages. It's usually either empty or contains some imports (and can often be skipped in newer versions of Python).

Currently most of the logic in this repository is in https://github.com/Medical-Event-Data-Standard/meds/blob/main/src/meds/__init__.py.

We might want to move the logic out of __init__.py and into an appropriately named module/package. e.g. schemas.py or core.py.

tompollard commented 10 months ago

Completed in https://github.com/Medical-Event-Data-Standard/meds/pull/10