Source code for tamr_unify_client.project.resource

from tamr_unify_client.base_resource import BaseResource
from tamr_unify_client.dataset.collection import DatasetCollection
from tamr_unify_client.dataset.resource import Dataset
from tamr_unify_client.project.attribute_configuration.collection import (
    AttributeConfigurationCollection,
)
from tamr_unify_client.project.attribute_mapping.collection import (
    AttributeMappingCollection,
)


[docs]class Project(BaseResource): """A Unify project.""" @classmethod def from_json(cls, client, resource_json, api_path=None): return super().from_data(client, resource_json, api_path) @property def name(self): """:type: str""" return self._data.get("name") @property def external_id(self): """:type: str""" return self._data.get("externalId") @property def description(self): """:type: str""" return self._data.get("description") @property def type(self): """A Unify project type, listed in https://docs.tamr.com/reference#create-a-project. :type: str """ return self._data.get("type") @property def attributes(self): """Attributes of this project. :return: Attributes of this project. :rtype: :class:`~tamr_unify_client.attribute.collection.AttributeCollection` """ from tamr_unify_client.attribute.collection import AttributeCollection alias = self.api_path + "/attributes" return AttributeCollection(self.client, alias)
[docs] def unified_dataset(self): """Unified dataset for this project. :return: Unified dataset for this project. :rtype: :class:`~tamr_unify_client.dataset.resource.Dataset` """ alias = self.api_path + "/unifiedDataset" resource_json = self.client.get(alias).successful().json() return Dataset.from_json(self.client, resource_json, alias)
[docs] def as_categorization(self): """Convert this project to a :class:`~tamr_unify_client.categorization.project.CategorizationProject` :return: This project. :rtype: :class:`~tamr_unify_client.categorization.project.CategorizationProject` :raises TypeError: If the :attr:`~tamr_unify_client.project.resource.Project.type` of this project is not ``"CATEGORIZATION"`` """ from tamr_unify_client.categorization.project import CategorizationProject if self.type != "CATEGORIZATION": raise TypeError( f"Cannot convert project to categorization project. Project type: {self.type}" ) return CategorizationProject(self.client, self._data, self.api_path)
[docs] def as_mastering(self): """Convert this project to a :class:`~tamr_unify_client.mastering.project.MasteringProject` :return: This project. :rtype: :class:`~tamr_unify_client.mastering.project.MasteringProject` :raises TypeError: If the :attr:`~tamr_unify_client.project.resource.Project.type` of this project is not ``"DEDUP"`` """ from tamr_unify_client.mastering.project import MasteringProject if self.type != "DEDUP": raise TypeError( f"Cannot convert project to mastering project. Project type: {self.type}" ) return MasteringProject(self.client, self._data, self.api_path)
[docs] def add_input_dataset(self, dataset): """ Associate a dataset with a project in Unify. By default, datasets are not associated with any projects. They need to be added as input to a project before they can be used as part of that project :param dataset: The dataset to associate with the project. :type dataset: :class:`~tamr_unify_client.dataset.resource.Dataset` :return: HTTP response from the server :rtype: :class:`requests.Response` """ dataset_id = dataset.relative_id.split("/")[-1] response = self.client.post( self.api_path + "/inputDatasets" + f"?id={dataset_id}" ).successful() return response
[docs] def input_datasets(self): """Retrieve a collection of this project's input datasets. :return: The project's input datasets. :rtype: :class:`~tamr_unify_client.dataset.collection.DatasetCollection` """ alias = self.api_path + "/inputDatasets" return DatasetCollection(self.client, alias)
[docs] def attribute_configurations(self): """Project's attribute's configurations. :returns: The configurations of the attributes of a project. :rtype: :class:`~tamr_unify_client.project.attribute_configuration.collection.AttributeConfigurationCollection` """ alias = self.api_path + "/attributeConfigurations" info = AttributeConfigurationCollection(self.client, api_path=alias) return info
[docs] def attribute_mappings(self): """Project's attribute's mappings. :returns: The attribute mappings of a project. :rtype: :class:`~tamr_unify_client.project.attribute_mapping.collection.AttributeMappingCollection` """ alias = self.api_path + "/attributeMappings" info = AttributeMappingCollection(self.client, alias) return info
def __repr__(self): return ( f"{self.__class__.__module__}." f"{self.__class__.__qualname__}(" f"relative_id={self.relative_id!r}, " f"name={self.name!r}, " f"type={self.type!r})" )