Metadata-Version: 2.1
Name: biolink_model_pydantic
Version: 0.1.4
Summary: Pydantic dataclasses for the Biolink model
Home-page: https://github.com/kshefchek/biolink-model-pydantic
Author: The Monarch Initiative
Author-email: info@monarchinitiative.org
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: POSIX :: Linux
Requires-Dist: pydantic >=1.0.0,<2.0.0
Requires-Dist: autoflake >=1.3.1,<2.0.0 ; extra == "dev"
Requires-Dist: flake8 >=3.8.3,<4.0.0 ; extra == "dev"
Requires-Dist: black ==20.8b1 ; extra == "dev"
Requires-Dist: isort >=5.0.6,<6.0.0 ; extra == "dev"
Requires-Dist: linkml >=1.1.4, <2.0.0 ; extra == "dev"
Requires-Dist: click <8.0 ; extra == "dev"
Requires-Dist: typer >=0.3 ; extra == "dev"
Requires-Dist: pytest >=6.0.0 ; extra == "test"
Project-URL: Documentation, https://github.com/kshefchek/biolink-model-pydantic
Provides-Extra: dev
Provides-Extra: test

[![Pyversions](https://img.shields.io/pypi/pyversions/biolink_model_pydantic.svg)](https://pypi.python.org/pypi/biolink_model_pydantic)
![](https://github.com/monarch-initiative/biolink-model-pydantic/actions/workflows/test.yml/badge.svg)
[![PyPi](https://img.shields.io/pypi/v/biolink_model_pydantic.svg)](https://pypi.python.org/pypi/biolink_model_pydantic)

# biolink-model-pydantic
Pydantic dataclasses for the Biolink model


#### Installation

```
pip install biolink_model_pydantic
```

#### Using the dataclasses

```python
from biolink_model_pydantic.model import Gene

gen_entity = Gene(id='NCBIGene:123', in_taxon='NCBITaxon:9606')
```

