Closed tompollard closed 10 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).
__init__.py
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.
schemas.py
core.py
Completed in https://github.com/Medical-Event-Data-Standard/meds/pull/10
__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
orcore.py
.