├── .circleci └── config.yml ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── COPYRIGHT ├── LICENSE ├── MANIFEST.in ├── README.md ├── RELEASING_AEPP.md ├── aepp ├── __init__.py ├── __version__.py ├── accesscontrol.py ├── catalog.py ├── classmanager.py ├── config.py ├── configs.py ├── connector.py ├── customerprofile.py ├── dataaccess.py ├── dataprep.py ├── datasets.py ├── datatypemanager.py ├── deletion.py ├── destination.py ├── destinationinstanceservice.py ├── edge.py ├── exportDatasetToDataLandingZone.py ├── fieldgroupmanager.py ├── flowservice.py ├── hygiene.py ├── identity.py ├── ingestion.py ├── observability.py ├── observability_gdpr.pickle ├── observability_identity.pickle ├── observability_ingestion.pickle ├── observability_queryService.pickle ├── observability_realTime.pickle ├── policy.py ├── privacyservice.py ├── queryservice.py ├── sandboxes.py ├── schema.py ├── schemamanager.py ├── segmentation.py ├── sensei.py ├── som.py ├── synchronizer.py ├── tags.py └── utils.py ├── docs ├── accesscontrol.md ├── add-privacy-service-api.png ├── behavior.json ├── catalog.md ├── class.json ├── classManager.md ├── customerprofile.md ├── dataTypeManager.md ├── dataaccess.md ├── dataprep.md ├── datasets.md ├── datatype.json ├── deletion.md ├── destination.md ├── destinationinstanceservice.md ├── edge.md ├── fieldGroupManager.md ├── fieldgroup.json ├── flowservice.md ├── getting-started.md ├── hygiene.md ├── identity.md ├── ingestion.md ├── localfilesusage.md ├── logging.md ├── main.md ├── observability.md ├── policy.md ├── privacyservice.md ├── queryservice.md ├── release-build.png ├── release-upload.png ├── releases.md ├── sandboxes.md ├── schema.json ├── schema.md ├── schemaManager.md ├── segmentation.md ├── som.md ├── synchronizer.md └── tags.md ├── notebooks ├── .ipynb_checkpoints │ ├── 01 - Guide - Introduction to aepp-checkpoint.ipynb │ └── 02 - Guide - Introduction to Schema-checkpoint.ipynb ├── 01 - Guide - Introduction to aepp.ipynb ├── 02 - Guide - Introduction to Schema.ipynb ├── 03 - Guide - Introduction to Catalog Service.ipynb ├── 04 - Guide - Introduction to Customer Profile.ipynb ├── developer.adobe.project_list.png ├── developer.adobe.project_oauth_detail.png ├── developer.adobe.project_overview.png ├── example.json └── profile-entity-composition.png ├── requirements.txt ├── setup.py └── tests ├── __init__.py ├── catalog_test.py ├── dataaccess_test.py ├── datasets_test.py ├── destinationinstanceservice_test.py ├── exportDatasetToDatalandingZone_test.py ├── flowservice_test.py ├── schema_test.py └── som_test.py /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include *.pickle -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING_AEPP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/RELEASING_AEPP.md -------------------------------------------------------------------------------- /aepp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/aepp/__init__.py -------------------------------------------------------------------------------- /aepp/__version__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.4.1" -------------------------------------------------------------------------------- /aepp/accesscontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/aepp/accesscontrol.py -------------------------------------------------------------------------------- /aepp/catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/aepp/catalog.py -------------------------------------------------------------------------------- /aepp/classmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/aepp/classmanager.py -------------------------------------------------------------------------------- /aepp/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/aepp/config.py -------------------------------------------------------------------------------- /aepp/configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/aepp/configs.py -------------------------------------------------------------------------------- /aepp/connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/aepp/connector.py -------------------------------------------------------------------------------- /aepp/customerprofile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/aepp/customerprofile.py -------------------------------------------------------------------------------- /aepp/dataaccess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/aepp/dataaccess.py -------------------------------------------------------------------------------- /aepp/dataprep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/aepp/dataprep.py -------------------------------------------------------------------------------- /aepp/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/aepp/datasets.py -------------------------------------------------------------------------------- /aepp/datatypemanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/aepp/datatypemanager.py -------------------------------------------------------------------------------- /aepp/deletion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/aepp/deletion.py -------------------------------------------------------------------------------- /aepp/destination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/aepp/destination.py -------------------------------------------------------------------------------- /aepp/destinationinstanceservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/aepp/destinationinstanceservice.py -------------------------------------------------------------------------------- /aepp/edge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/aepp/edge.py -------------------------------------------------------------------------------- /aepp/exportDatasetToDataLandingZone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/aepp/exportDatasetToDataLandingZone.py -------------------------------------------------------------------------------- /aepp/fieldgroupmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/aepp/fieldgroupmanager.py -------------------------------------------------------------------------------- /aepp/flowservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/aepp/flowservice.py -------------------------------------------------------------------------------- /aepp/hygiene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/aepp/hygiene.py -------------------------------------------------------------------------------- /aepp/identity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/aepp/identity.py -------------------------------------------------------------------------------- /aepp/ingestion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/aepp/ingestion.py -------------------------------------------------------------------------------- /aepp/observability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/aepp/observability.py -------------------------------------------------------------------------------- /aepp/observability_gdpr.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/aepp/observability_gdpr.pickle -------------------------------------------------------------------------------- /aepp/observability_identity.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/aepp/observability_identity.pickle -------------------------------------------------------------------------------- /aepp/observability_ingestion.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/aepp/observability_ingestion.pickle -------------------------------------------------------------------------------- /aepp/observability_queryService.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/aepp/observability_queryService.pickle -------------------------------------------------------------------------------- /aepp/observability_realTime.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/aepp/observability_realTime.pickle -------------------------------------------------------------------------------- /aepp/policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/aepp/policy.py -------------------------------------------------------------------------------- /aepp/privacyservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/aepp/privacyservice.py -------------------------------------------------------------------------------- /aepp/queryservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/aepp/queryservice.py -------------------------------------------------------------------------------- /aepp/sandboxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/aepp/sandboxes.py -------------------------------------------------------------------------------- /aepp/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/aepp/schema.py -------------------------------------------------------------------------------- /aepp/schemamanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/aepp/schemamanager.py -------------------------------------------------------------------------------- /aepp/segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/aepp/segmentation.py -------------------------------------------------------------------------------- /aepp/sensei.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/aepp/sensei.py -------------------------------------------------------------------------------- /aepp/som.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/aepp/som.py -------------------------------------------------------------------------------- /aepp/synchronizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/aepp/synchronizer.py -------------------------------------------------------------------------------- /aepp/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/aepp/tags.py -------------------------------------------------------------------------------- /aepp/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/aepp/utils.py -------------------------------------------------------------------------------- /docs/accesscontrol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/docs/accesscontrol.md -------------------------------------------------------------------------------- /docs/add-privacy-service-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/docs/add-privacy-service-api.png -------------------------------------------------------------------------------- /docs/behavior.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/docs/behavior.json -------------------------------------------------------------------------------- /docs/catalog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/docs/catalog.md -------------------------------------------------------------------------------- /docs/class.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/docs/class.json -------------------------------------------------------------------------------- /docs/classManager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/docs/classManager.md -------------------------------------------------------------------------------- /docs/customerprofile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/docs/customerprofile.md -------------------------------------------------------------------------------- /docs/dataTypeManager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/docs/dataTypeManager.md -------------------------------------------------------------------------------- /docs/dataaccess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/docs/dataaccess.md -------------------------------------------------------------------------------- /docs/dataprep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/docs/dataprep.md -------------------------------------------------------------------------------- /docs/datasets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/docs/datasets.md -------------------------------------------------------------------------------- /docs/datatype.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/docs/datatype.json -------------------------------------------------------------------------------- /docs/deletion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/docs/deletion.md -------------------------------------------------------------------------------- /docs/destination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/docs/destination.md -------------------------------------------------------------------------------- /docs/destinationinstanceservice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/docs/destinationinstanceservice.md -------------------------------------------------------------------------------- /docs/edge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/docs/edge.md -------------------------------------------------------------------------------- /docs/fieldGroupManager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/docs/fieldGroupManager.md -------------------------------------------------------------------------------- /docs/fieldgroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/docs/fieldgroup.json -------------------------------------------------------------------------------- /docs/flowservice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/docs/flowservice.md -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/hygiene.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/docs/hygiene.md -------------------------------------------------------------------------------- /docs/identity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/docs/identity.md -------------------------------------------------------------------------------- /docs/ingestion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/docs/ingestion.md -------------------------------------------------------------------------------- /docs/localfilesusage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/docs/localfilesusage.md -------------------------------------------------------------------------------- /docs/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/docs/logging.md -------------------------------------------------------------------------------- /docs/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/docs/main.md -------------------------------------------------------------------------------- /docs/observability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/docs/observability.md -------------------------------------------------------------------------------- /docs/policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/docs/policy.md -------------------------------------------------------------------------------- /docs/privacyservice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/docs/privacyservice.md -------------------------------------------------------------------------------- /docs/queryservice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/docs/queryservice.md -------------------------------------------------------------------------------- /docs/release-build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/docs/release-build.png -------------------------------------------------------------------------------- /docs/release-upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/docs/release-upload.png -------------------------------------------------------------------------------- /docs/releases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/docs/releases.md -------------------------------------------------------------------------------- /docs/sandboxes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/docs/sandboxes.md -------------------------------------------------------------------------------- /docs/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/docs/schema.json -------------------------------------------------------------------------------- /docs/schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/docs/schema.md -------------------------------------------------------------------------------- /docs/schemaManager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/docs/schemaManager.md -------------------------------------------------------------------------------- /docs/segmentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/docs/segmentation.md -------------------------------------------------------------------------------- /docs/som.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/docs/som.md -------------------------------------------------------------------------------- /docs/synchronizer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/docs/synchronizer.md -------------------------------------------------------------------------------- /docs/tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/docs/tags.md -------------------------------------------------------------------------------- /notebooks/.ipynb_checkpoints/01 - Guide - Introduction to aepp-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/notebooks/.ipynb_checkpoints/01 - Guide - Introduction to aepp-checkpoint.ipynb -------------------------------------------------------------------------------- /notebooks/.ipynb_checkpoints/02 - Guide - Introduction to Schema-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/notebooks/.ipynb_checkpoints/02 - Guide - Introduction to Schema-checkpoint.ipynb -------------------------------------------------------------------------------- /notebooks/01 - Guide - Introduction to aepp.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/notebooks/01 - Guide - Introduction to aepp.ipynb -------------------------------------------------------------------------------- /notebooks/02 - Guide - Introduction to Schema.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/notebooks/02 - Guide - Introduction to Schema.ipynb -------------------------------------------------------------------------------- /notebooks/03 - Guide - Introduction to Catalog Service.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/notebooks/03 - Guide - Introduction to Catalog Service.ipynb -------------------------------------------------------------------------------- /notebooks/04 - Guide - Introduction to Customer Profile.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/notebooks/04 - Guide - Introduction to Customer Profile.ipynb -------------------------------------------------------------------------------- /notebooks/developer.adobe.project_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/notebooks/developer.adobe.project_list.png -------------------------------------------------------------------------------- /notebooks/developer.adobe.project_oauth_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/notebooks/developer.adobe.project_oauth_detail.png -------------------------------------------------------------------------------- /notebooks/developer.adobe.project_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/notebooks/developer.adobe.project_overview.png -------------------------------------------------------------------------------- /notebooks/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/notebooks/example.json -------------------------------------------------------------------------------- /notebooks/profile-entity-composition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/notebooks/profile-entity-composition.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/catalog_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/tests/catalog_test.py -------------------------------------------------------------------------------- /tests/dataaccess_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/tests/dataaccess_test.py -------------------------------------------------------------------------------- /tests/datasets_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/tests/datasets_test.py -------------------------------------------------------------------------------- /tests/destinationinstanceservice_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/tests/destinationinstanceservice_test.py -------------------------------------------------------------------------------- /tests/exportDatasetToDatalandingZone_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/tests/exportDatasetToDatalandingZone_test.py -------------------------------------------------------------------------------- /tests/flowservice_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/tests/flowservice_test.py -------------------------------------------------------------------------------- /tests/schema_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/tests/schema_test.py -------------------------------------------------------------------------------- /tests/som_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/aepp/HEAD/tests/som_test.py --------------------------------------------------------------------------------