# target-python-sdk **Repository Path**: mirrors_adobe/target-python-sdk ## Basic Information - **Project Name**: target-python-sdk - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-12-17 - **Last Updated**: 2026-01-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Adobe Target Python SDK [![Coverage Status](https://coveralls.io/repos/github/adobe/target-python-sdk/badge.svg?branch=main)](https://coveralls.io/github/adobe/target-python-sdk?branch=main) ### Requirements All currently maintained versions of Python are supported, see [Python Releases](https://www.python.org/downloads/). Older Python releases may likely work too, but are not officially supported. ``` NPM 6+ (required by openapi-generator-cli) Java 8+ (required by openapi-generator) GNU Make ``` ### Set PYTHON_PATH Various build commands are supported via Makefile, but first you must export environment variable PYTHON_PATH to specify which python install to use to set up your virtual env. ```bash $ export PYTHON_PATH=python2.7 # Symlink to Mac OS built-in version of python $ export PYTHON_PATH=/usr/local/bin/python3 ``` ### Setup virtual env to make it easy to switch between python 2.7 and 3 ```bash $ make new_env # Deletes existing virtual env and creates new one based on PYTHON_PATH $ make install # Install dependencies in virtual env ``` ### Code generation The SDK depends on [Target Open API](https://github.com/adobe/target-openapi). It uses Open API and the `Open API generator` to generate the low level HTTP client. To be able to use `Target Open API` for code generation, we are leveraging Git subtree. To import `Target Open API` as `openapi` folder please use commands: ```bash $ git subtree add --prefix openapi git@github.com:adobe/target-openapi.git main --squash ``` To refresh the imported subtree use this command: ```bash $ git subtree pull --prefix openapi git@github.com:adobe/target-openapi.git main --squash ``` Once all the tools are installed, there is no need to invoke them directly, everything is wrapped in a `Makefile` command, which can be invoked by running: ```bash $ make codegen ``` However, there are some deviations from the other SDKs, in which a manual code change is needed: - `geo.py` needs to be updated according to [this commit](https://github.com/adobe/target-python-sdk/pull/34/commits/05c7bcaf9d3946e9b5a6eea719b667449e2e09fd#diff-4a8ee26e9272c52959b34df9a7763e21dcaf2d1d231fd2070dab039f63c1676e) ### Run tests and format code ```bash $ make test $ make format ``` ### Integration Test Generation There is an integration test suite used by many of the Target SDKs. To get the latest version of these tests, follow the instructions defined [here](https://github.com/adobe/target-sdk-testing#updating-to-the-latest-schema) in the test repo. Note the following deviation from the other SDKs: - this SDK does not currently support the telemetry feature, so `TEST_SUITE_TELEMETRY.json` needs to be modified according to [this commit](https://github.com/adobe/target-python-sdk/pull/34/commits/05c7bcaf9d3946e9b5a6eea719b667449e2e09fd#diff-a328ccff9f9446689c70bdc5cb120d462646a3863f62273cf8522e6f71ac0e8e) ### Release build package Releases are triggered through Github publish workflow. Input version part to update before publishing to pypi - [patch, minor, major] #### Running Github Workflows on forked repositories Github Workflows don't run on forked repositories by default. You must enable GitHub Actions in the Actions tab of the forked repository. See more details at https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows#pull-request-events-for-forked-repositories ## Contributing Contributions are welcomed! Read the [Contributing Guide](CONTRIBUTING.md) for more information. ## Licensing This project is licensed under the Apache V2 License. See [LICENSE](LICENSE) for more information.