2021-12-21 06:37:36 +01:00
|
|
|
---
|
2022-01-18 16:27:35 +01:00
|
|
|
This guide will help you set up OpenMetadata Core Models
|
2021-12-21 06:37:36 +01:00
|
|
|
---
|
|
|
|
|
|
|
|

|
|
|
|
|
2022-01-18 16:27:35 +01:00
|
|
|
These models are `pydantic` models automatically generated from the
|
|
|
|
central JSON Schemas that define our APIs and Entities.
|
|
|
|
|
2021-12-21 06:37:36 +01:00
|
|
|
**Prerequisites**
|
|
|
|
|
|
|
|
- Python >= 3.8.x
|
|
|
|
|
|
|
|
### Docs
|
|
|
|
|
|
|
|
Please refer to the documentation here https://docs.open-metadata.org/connectors
|
2022-01-18 16:27:35 +01:00
|
|
|
|
|
|
|
### Contribution
|
|
|
|
|
|
|
|
In order to contribute to this package:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
cd ingestion-core
|
|
|
|
python -m virtualenv venv
|
|
|
|
source venv/bin/activate
|
|
|
|
python -m pip install ".[dev]"
|
|
|
|
```
|
|
|
|
|
|
|
|
> OBS: During development we might need to treat this in a different
|
|
|
|
virtual environment if we are yet to update the reference to the core
|
|
|
|
package in `openmetadata-ingestion`.
|