# 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": null,
"docs_url": null,
"requires_python": ">=3.6",
"maintainer_email": null,
"keywords": "adobe, analytics, API, python",
"author": "Julien Piccini",
"author_email": "Julien Piccini <piccini.julien@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/f8/15/e5eb1582f4f8e3a882733df4aefe65b60cc2bc9e558da10caff8d614df98/aanalytics2-0.4.2.post6.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.2.post6",
"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": "e4c2be0a67f6e9bcafefa30adb73f6c235c6486f7573fd2e392a3a66c8c16ce6",
"md5": "147b5c904bf925ed097b7f7adac0bca1",
"sha256": "34cf8264d7731524cb9172601acb28f713b4110fca58bf25c96067cfc53fd485"
},
"downloads": -1,
"filename": "aanalytics2-0.4.2.post6-py3-none-any.whl",
"has_sig": false,
"md5_digest": "147b5c904bf925ed097b7f7adac0bca1",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.6",
"size": 74620,
"upload_time": "2024-10-16T14:32:12",
"upload_time_iso_8601": "2024-10-16T14:32:12.768345Z",
"url": "https://files.pythonhosted.org/packages/e4/c2/be0a67f6e9bcafefa30adb73f6c235c6486f7573fd2e392a3a66c8c16ce6/aanalytics2-0.4.2.post6-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f815e5eb1582f4f8e3a882733df4aefe65b60cc2bc9e558da10caff8d614df98",
"md5": "5865139178c6076b0c6449d71a8f1b0d",
"sha256": "af708d0cef4ea33bd986059aa300d3640446362108eb783ac632ca6a285f2c53"
},
"downloads": -1,
"filename": "aanalytics2-0.4.2.post6.tar.gz",
"has_sig": false,
"md5_digest": "5865139178c6076b0c6449d71a8f1b0d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.6",
"size": 161176,
"upload_time": "2024-10-16T14:32:14",
"upload_time_iso_8601": "2024-10-16T14:32:14.042494Z",
"url": "https://files.pythonhosted.org/packages/f8/15/e5eb1582f4f8e3a882733df4aefe65b60cc2bc9e558da10caff8d614df98/aanalytics2-0.4.2.post6.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-16 14:32:14",
"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"
}