##### What happens if I import a schema module without lamindb? [image: .md][image]

 # !pip install 'lamindb[bionty]'
 lamin init --storage testmodule --modules bionty

Upon "import", nothing yet happens:

 import bionty as bt

If you try to access an attribute (other than "model"), you'll load
the instance in the same way as calling "import lamindb".

Under the hood, "lamindb" is imported!

 assert bt.Organism(name="human") is not None

 lamin delete --force testmodule