aepp


Nameaepp JSON
Version 0.3.4.post3 PyPI version JSON
download
home_pagehttps://github.com/adobe/aepp
SummaryPackage to manage AEP API endpoint and some helper functions
upload_time2024-05-15 13:16:12
maintainerNone
docs_urlNone
authorJulien Piccini
requires_python>=3.6
licenseNone
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Adobe Experience Platform API made for humans

This repository will document the AEP wrapper on python.
It is focusing on helping accessing the different endpoints of Adobe Experience Platform API.
Documentation on the different endpoints can be found here : [AEP API doc](https://www.adobe.io/apis/experienceplatform/home/api-reference.html)
The wrapper is currently named **aepp**, it stands for Adobe Experience Platform Python.

## Installation

You can install the module directly from a pypi command:

```shell
pip install aepp
```

The version of the wrapper can be seen by the following command (once loaded):

```python
import aepp
aepp.__version__

```

**Consider upgrading regulary**

```shell
pip install aepp --upgrade
```

**NOTE TO PYTHON 3.10.X**

At the moment, not all packages are supported on python 3.10.X, therefore, please use this module with a python 3.9.X version.\
You can use pyenv to generate a local environment if required.

## Getting Started

In order to get started, I have compile a guide to help you initialize this module and what is required.
You can find this documentation [here](./docs/getting-started.md)

## AEPP docs

At the moment the current wrapper is containing the following sub modules:

* [schema](./docs/schema.md)
  * [SchemaManager](./docs/schemaManager.md)
  * [FieldGroupManager](./docs/fieldGroupManager.md)
  * [DataTypeManager](./docs/dataTypeManager.md)
* [queryservice](./docs/queryservice.md) (see note below)
* [identity](./docs/identity.md)
* [sandboxes](./docs/sandboxes.md)
* [dataaccess](./docs/dataaccess.md)
* [catalog](./docs/catalog.md)
* [customerprofile](./docs/customerprofile.md)
* [segmentation](./docs/segmentation.md)
* [dataprep](./docs/dataprep.md)
* [flowservice](./docs/flowservice.md)
* [policy](./docs/policy.md)
* [datasets](./docs/datasets.md)
* [ingestion](./docs/ingestion.md)
* [destination Authoring](./docs/destination.md)
* [destination Instance](./docs/destinationinstanceservice.md)
* [observability](./docs/observability.md)
* [accesscontrol](./docs/accesscontrol.md)
* [privacyservice](./docs/privacyservice.md) (see 2nd note below)
* [data hygiene](./docs/hygiene.md)

Last but not least, the core methods are described here: [main](./docs/main.md)

## queryservice module

The queryservice Module contains 2 classes:

### QueryService class

The QueryService class is the wrapper around the AEP Query Service API.\
It provides access to the different endpoints available from the API.

Use-Case example : At the moment the capability to scheduled query is only accessible from the API.

[Detail documentation](./docs/queryservice.md)

#### InteractiveQuery  and InteractiveQuery2 classes

These classes are based on the pyGreSQL and psycopg2 module for python.\
It provides you the capability to realize query directly from your local Jupyter notebook and returns a dataframe.
In order to use these classes, you would need to install these module and a PSQL server.
On top of that, you would need to the psql server accessible in the environment path.

## PrivacyService module

The privacy service module is part of the AEP python wrapper but requires a different JWT connection in console.adobe.io.
Be careful that your JWT connection has the correct setup to access this API endpoints.

## Releases

Release notes are accessible [here](./docs/releases.md).

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/adobe/aepp",
    "name": "aepp",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": null,
    "keywords": null,
    "author": "Julien Piccini",
    "author_email": "piccini.julien@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/04/e2/ca8114f4529550f1ff9523c5aaabfa8572c08dd2da4ac41c7a515e3f53a3/aepp-0.3.4.post3.tar.gz",
    "platform": null,
    "description": "# Adobe Experience Platform API made for humans\r\n\r\nThis repository will document the AEP wrapper on python.\r\nIt is focusing on helping accessing the different endpoints of Adobe Experience Platform API.\r\nDocumentation on the different endpoints can be found here : [AEP API doc](https://www.adobe.io/apis/experienceplatform/home/api-reference.html)\r\nThe wrapper is currently named **aepp**, it stands for Adobe Experience Platform Python.\r\n\r\n## Installation\r\n\r\nYou can install the module directly from a pypi command:\r\n\r\n```shell\r\npip install aepp\r\n```\r\n\r\nThe version of the wrapper can be seen by the following command (once loaded):\r\n\r\n```python\r\nimport aepp\r\naepp.__version__\r\n\r\n```\r\n\r\n**Consider upgrading regulary**\r\n\r\n```shell\r\npip install aepp --upgrade\r\n```\r\n\r\n**NOTE TO PYTHON 3.10.X**\r\n\r\nAt the moment, not all packages are supported on python 3.10.X, therefore, please use this module with a python 3.9.X version.\\\r\nYou can use pyenv to generate a local environment if required.\r\n\r\n## Getting Started\r\n\r\nIn order to get started, I have compile a guide to help you initialize this module and what is required.\r\nYou can find this documentation [here](./docs/getting-started.md)\r\n\r\n## AEPP docs\r\n\r\nAt the moment the current wrapper is containing the following sub modules:\r\n\r\n* [schema](./docs/schema.md)\r\n  * [SchemaManager](./docs/schemaManager.md)\r\n  * [FieldGroupManager](./docs/fieldGroupManager.md)\r\n  * [DataTypeManager](./docs/dataTypeManager.md)\r\n* [queryservice](./docs/queryservice.md) (see note below)\r\n* [identity](./docs/identity.md)\r\n* [sandboxes](./docs/sandboxes.md)\r\n* [dataaccess](./docs/dataaccess.md)\r\n* [catalog](./docs/catalog.md)\r\n* [customerprofile](./docs/customerprofile.md)\r\n* [segmentation](./docs/segmentation.md)\r\n* [dataprep](./docs/dataprep.md)\r\n* [flowservice](./docs/flowservice.md)\r\n* [policy](./docs/policy.md)\r\n* [datasets](./docs/datasets.md)\r\n* [ingestion](./docs/ingestion.md)\r\n* [destination Authoring](./docs/destination.md)\r\n* [destination Instance](./docs/destinationinstanceservice.md)\r\n* [observability](./docs/observability.md)\r\n* [accesscontrol](./docs/accesscontrol.md)\r\n* [privacyservice](./docs/privacyservice.md) (see 2nd note below)\r\n* [data hygiene](./docs/hygiene.md)\r\n\r\nLast but not least, the core methods are described here: [main](./docs/main.md)\r\n\r\n## queryservice module\r\n\r\nThe queryservice Module contains 2 classes:\r\n\r\n### QueryService class\r\n\r\nThe QueryService class is the wrapper around the AEP Query Service API.\\\r\nIt provides access to the different endpoints available from the API.\r\n\r\nUse-Case example : At the moment the capability to scheduled query is only accessible from the API.\r\n\r\n[Detail documentation](./docs/queryservice.md)\r\n\r\n#### InteractiveQuery  and InteractiveQuery2 classes\r\n\r\nThese classes are based on the pyGreSQL and psycopg2 module for python.\\\r\nIt provides you the capability to realize query directly from your local Jupyter notebook and returns a dataframe.\r\nIn order to use these classes, you would need to install these module and a PSQL server.\r\nOn top of that, you would need to the psql server accessible in the environment path.\r\n\r\n## PrivacyService module\r\n\r\nThe privacy service module is part of the AEP python wrapper but requires a different JWT connection in console.adobe.io.\r\nBe careful that your JWT connection has the correct setup to access this API endpoints.\r\n\r\n## Releases\r\n\r\nRelease notes are accessible [here](./docs/releases.md).\r\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Package to manage AEP API endpoint and some helper functions",
    "version": "0.3.4.post3",
    "project_urls": {
        "Homepage": "https://github.com/adobe/aepp"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ba2e8cdf1a39a444760d040be9d5edb2a6e252d2be5026ba723e6d41b87c15e5",
                "md5": "e5217e1a4858c4ccf10102c24a36fbbd",
                "sha256": "7c309e5aba3b542552b1d4ab13a3a8d77738f1134734191f0b66a63db93e96a9"
            },
            "downloads": -1,
            "filename": "aepp-0.3.4.post3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "e5217e1a4858c4ccf10102c24a36fbbd",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 169474,
            "upload_time": "2024-05-15T13:16:10",
            "upload_time_iso_8601": "2024-05-15T13:16:10.990085Z",
            "url": "https://files.pythonhosted.org/packages/ba/2e/8cdf1a39a444760d040be9d5edb2a6e252d2be5026ba723e6d41b87c15e5/aepp-0.3.4.post3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "04e2ca8114f4529550f1ff9523c5aaabfa8572c08dd2da4ac41c7a515e3f53a3",
                "md5": "b56d61637f15f9775c1466ca5310abf8",
                "sha256": "18f71d5b367435849d94bd17dab7469f6f78c58073ce145f567900bfff47f66f"
            },
            "downloads": -1,
            "filename": "aepp-0.3.4.post3.tar.gz",
            "has_sig": false,
            "md5_digest": "b56d61637f15f9775c1466ca5310abf8",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 136505,
            "upload_time": "2024-05-15T13:16:12",
            "upload_time_iso_8601": "2024-05-15T13:16:12.825186Z",
            "url": "https://files.pythonhosted.org/packages/04/e2/ca8114f4529550f1ff9523c5aaabfa8572c08dd2da4ac41c7a515e3f53a3/aepp-0.3.4.post3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-15 13:16:12",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "adobe",
    "github_project": "aepp",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "circle": true,
    "requirements": [],
    "lcname": "aepp"
}
        
Elapsed time: 0.25281s