aanalytics2


Nameaanalytics2 JSON
Version 0.4.1.post1 PyPI version JSON
download
home_pagehttps://github.com/pitchmuc/adobe-analytics-api-2.0
SummaryAdobe Analytics API 2.0 and 1.4 python wrapper
upload_time2024-01-09 19:11:41
maintainer
docs_urlNone
authorJulien Piccini
requires_python>=3.6
licenseApache License 2.0
keywords adobe analytics api python
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Adobe Analytics API v2.0

-----------------------

This is a python wrapper for the adobe analytics API 2.0.

## Documentation

Most of the documentation for this API will be hosted at [datanalyst.info][1].\
[Getting Started details on Github](./docs/getting_started.md).

[Appendix for running on a server](./docs/authenticating_without_config_json.md)

## Versions

A documentation about the releases information can be found here : [aanalytics2 releases](./docs/releases.md)

## Functionalities

Functionalities that are covered :

### Reporting API

* Run a report statement
* Retrieve Users
* Retrieve Segments
* Retrieve Metrics
* Retrieve Dimensions
* Retrieve Calculated Metrics
* Retrieve Virtual Report Suites
* Retrieve Virtual Report Suite Curated Components
* Retrieve Tags
* Retrieve Usage Logs from users
* Retrieve Projects
* Retrieve Scheduled Jobs / Projects
* Update Segment
* Update Calculated Metric
* Update Tags
* Update Project
* Delete Segment
* Delete CalculatedMetric
* Delete VirtualReportSuite
* Delete Project
* Delete DateRange
* Create a Project
* Create a Scheduling job for a Workspace Project

documentation on reporting [here](./docs/main.md)

### Data Ingestion APIs

* Data Ingestion API from API 1.4
* Bulk Data Insertion API

documentation on ingestion APIs [here](./docs/ingestion.md)

## Legacy Analytics API 1.4

This module provide limited support for the 1.4 API.
It basically wrapped your request with some internal module and you can pass your request path, method, parameters and / or data.
More information in the [dedicated documentation for 1.4](./docs/legacyAnalytics.md)

## RequestCreator class

The `aanalytics2` module enables you to generate request dictionary for the getReport method easily.\
You will have no need to go to the UI in order to create a report template JSON anymore.\
Do it automatically from the python interface.
More information on the [`RequestCreator` documentation](./docs/requestCreator.md)

## Project Data

There is a feature to retrieve the Workspace projects and the components used.\
Refer to this [documentation on Project](./docs/projects.md) for more information.

## Logging capability

In case you want to use the logging capability for your script.\
You can look at the reference for this on the [logging documentation page](./docs/logging.md)

## Getting Started

To install the library with PIP use:

```cli
pip install aanalytics2
```

or

```cli
python -m pip install --upgrade git+<https://github.com/pitchmuc/adobe_analytics_api_2.0.git#egg=aanalytics2>
```

## Dependencies

In order to use this API in python, you would need to have those libraries installed :

* pandas
* requests
* json
* PyJWT
* PyJWT[crypto]
* pathlib
* dicttoxml
* pytest

## Test

A test support has been added with pytest.
The complete documentation to run the test can be found here : [testing aanalytics2](./docs/test.md)

## Others Sources

You can find information about the Adobe Analytics API 2.0 here :

* [https://adobedocs.github.io/analytics-2.0-apis][2]
* [https://github.com/AdobeDocs/analytics-2.0-apis/blob/master/reporting-guide.md][3]

[1]: https://www.datanalyst.info
[2]: https://adobedocs.github.io/analytics-2.0-apis
[3]: https://github.com/AdobeDocs/analytics-2.0-apis/blob/master/reporting-guide.md

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/pitchmuc/adobe-analytics-api-2.0",
    "name": "aanalytics2",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "adobe,analytics,API,python",
    "author": "Julien Piccini",
    "author_email": "Julien Piccini <piccini.julien@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/4e/09/7ade4996643ec417de6328ca8313c01b8a518df31644de18ae951bd27304/aanalytics2-0.4.1.post1.tar.gz",
    "platform": null,
    "description": "# Adobe Analytics API v2.0\r\n\r\n-----------------------\r\n\r\nThis is a python wrapper for the adobe analytics API 2.0.\r\n\r\n## Documentation\r\n\r\nMost of the documentation for this API will be hosted at [datanalyst.info][1].\\\r\n[Getting Started details on Github](./docs/getting_started.md).\r\n\r\n[Appendix for running on a server](./docs/authenticating_without_config_json.md)\r\n\r\n## Versions\r\n\r\nA documentation about the releases information can be found here : [aanalytics2 releases](./docs/releases.md)\r\n\r\n## Functionalities\r\n\r\nFunctionalities that are covered :\r\n\r\n### Reporting API\r\n\r\n* Run a report statement\r\n* Retrieve Users\r\n* Retrieve Segments\r\n* Retrieve Metrics\r\n* Retrieve Dimensions\r\n* Retrieve Calculated Metrics\r\n* Retrieve Virtual Report Suites\r\n* Retrieve Virtual Report Suite Curated Components\r\n* Retrieve Tags\r\n* Retrieve Usage Logs from users\r\n* Retrieve Projects\r\n* Retrieve Scheduled Jobs / Projects\r\n* Update Segment\r\n* Update Calculated Metric\r\n* Update Tags\r\n* Update Project\r\n* Delete Segment\r\n* Delete CalculatedMetric\r\n* Delete VirtualReportSuite\r\n* Delete Project\r\n* Delete DateRange\r\n* Create a Project\r\n* Create a Scheduling job for a Workspace Project\r\n\r\ndocumentation on reporting [here](./docs/main.md)\r\n\r\n### Data Ingestion APIs\r\n\r\n* Data Ingestion API from API 1.4\r\n* Bulk Data Insertion API\r\n\r\ndocumentation on ingestion APIs [here](./docs/ingestion.md)\r\n\r\n## Legacy Analytics API 1.4\r\n\r\nThis module provide limited support for the 1.4 API.\r\nIt basically wrapped your request with some internal module and you can pass your request path, method, parameters and / or data.\r\nMore information in the [dedicated documentation for 1.4](./docs/legacyAnalytics.md)\r\n\r\n## RequestCreator class\r\n\r\nThe `aanalytics2` module enables you to generate request dictionary for the getReport method easily.\\\r\nYou will have no need to go to the UI in order to create a report template JSON anymore.\\\r\nDo it automatically from the python interface.\r\nMore information on the [`RequestCreator` documentation](./docs/requestCreator.md)\r\n\r\n## Project Data\r\n\r\nThere is a feature to retrieve the Workspace projects and the components used.\\\r\nRefer to this [documentation on Project](./docs/projects.md) for more information.\r\n\r\n## Logging capability\r\n\r\nIn case you want to use the logging capability for your script.\\\r\nYou can look at the reference for this on the [logging documentation page](./docs/logging.md)\r\n\r\n## Getting Started\r\n\r\nTo install the library with PIP use:\r\n\r\n```cli\r\npip install aanalytics2\r\n```\r\n\r\nor\r\n\r\n```cli\r\npython -m pip install --upgrade git+<https://github.com/pitchmuc/adobe_analytics_api_2.0.git#egg=aanalytics2>\r\n```\r\n\r\n## Dependencies\r\n\r\nIn order to use this API in python, you would need to have those libraries installed :\r\n\r\n* pandas\r\n* requests\r\n* json\r\n* PyJWT\r\n* PyJWT[crypto]\r\n* pathlib\r\n* dicttoxml\r\n* pytest\r\n\r\n## Test\r\n\r\nA test support has been added with pytest.\r\nThe complete documentation to run the test can be found here : [testing aanalytics2](./docs/test.md)\r\n\r\n## Others Sources\r\n\r\nYou can find information about the Adobe Analytics API 2.0 here :\r\n\r\n* [https://adobedocs.github.io/analytics-2.0-apis][2]\r\n* [https://github.com/AdobeDocs/analytics-2.0-apis/blob/master/reporting-guide.md][3]\r\n\r\n[1]: https://www.datanalyst.info\r\n[2]: https://adobedocs.github.io/analytics-2.0-apis\r\n[3]: https://github.com/AdobeDocs/analytics-2.0-apis/blob/master/reporting-guide.md\r\n",
    "bugtrack_url": null,
    "license": "Apache License 2.0",
    "summary": "Adobe Analytics API 2.0 and 1.4 python wrapper",
    "version": "0.4.1.post1",
    "project_urls": {
        "Homepage": "https://github.com/pitchmuc/adobe-analytics-api-2.0",
        "changelog": "https://github.com/pitchmuc/adobe-analytics-api-2.0/blob/master/docs/releases.md"
    },
    "split_keywords": [
        "adobe",
        "analytics",
        "api",
        "python"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "74699cb9eca844a1a892618c53e10a0dbc8254b6769251725824d14689979d7c",
                "md5": "1a8efd4a11707dc598175839bc02e1c1",
                "sha256": "583c505b8fdf336da05205ac14d7d352d540b658c774343b7dfc8d8781838f2a"
            },
            "downloads": -1,
            "filename": "aanalytics2-0.4.1.post1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "1a8efd4a11707dc598175839bc02e1c1",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 67199,
            "upload_time": "2024-01-09T19:11:38",
            "upload_time_iso_8601": "2024-01-09T19:11:38.846913Z",
            "url": "https://files.pythonhosted.org/packages/74/69/9cb9eca844a1a892618c53e10a0dbc8254b6769251725824d14689979d7c/aanalytics2-0.4.1.post1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e097ade4996643ec417de6328ca8313c01b8a518df31644de18ae951bd27304",
                "md5": "91194eaecd8cd7997c409beb6b844bd0",
                "sha256": "3535fdd91c6555a3ccaa07eebe31636343eb4228d9be841865ef34ecad839d68"
            },
            "downloads": -1,
            "filename": "aanalytics2-0.4.1.post1.tar.gz",
            "has_sig": false,
            "md5_digest": "91194eaecd8cd7997c409beb6b844bd0",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 150163,
            "upload_time": "2024-01-09T19:11:41",
            "upload_time_iso_8601": "2024-01-09T19:11:41.400781Z",
            "url": "https://files.pythonhosted.org/packages/4e/09/7ade4996643ec417de6328ca8313c01b8a518df31644de18ae951bd27304/aanalytics2-0.4.1.post1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-09 19:11:41",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pitchmuc",
    "github_project": "adobe-analytics-api-2.0",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "lcname": "aanalytics2"
}
        
Elapsed time: 0.51354s