Skip to content

Latest commit

 

History

History
114 lines (84 loc) · 11.3 KB

File metadata and controls

114 lines (84 loc) · 11.3 KB
graph LR
    SDK_Orchestrator["SDK Orchestrator"]
    Local_Decisioning_Core["Local Decisioning Core"]
    Delivery_API_Interface["Delivery API Interface"]
    Shared_Utilities["Shared Utilities"]
    SDK_Samples["SDK Samples"]
    SDK_Orchestrator -- "orchestrates" --> Local_Decisioning_Core
    SDK_Orchestrator -- "orchestrates" --> Delivery_API_Interface
    SDK_Orchestrator -- "utilizes" --> Shared_Utilities
    Local_Decisioning_Core -- "utilizes" --> Shared_Utilities
    Local_Decisioning_Core -- "sends data via" --> Delivery_API_Interface
    Delivery_API_Interface -- "utilizes" --> Shared_Utilities
    SDK_Samples -- "interacts with" --> SDK_Orchestrator
    click SDK_Orchestrator href "https://github.com/CodeBoarding/GeneratedOnBoardings/blob/main/target-python-sdk/SDK Orchestrator.md" "Details"
    click Local_Decisioning_Core href "https://github.com/CodeBoarding/GeneratedOnBoardings/blob/main/target-python-sdk/Local Decisioning Core.md" "Details"
    click Delivery_API_Interface href "https://github.com/CodeBoarding/GeneratedOnBoardings/blob/main/target-python-sdk/Delivery API Interface.md" "Details"
    click Shared_Utilities href "https://github.com/CodeBoarding/GeneratedOnBoardings/blob/main/target-python-sdk/Shared Utilities.md" "Details"
    click SDK_Samples href "https://github.com/CodeBoarding/GeneratedOnBoardings/blob/main/target-python-sdk/SDK Samples.md" "Details"
Loading

CodeBoardingDemoContact

Component Details

This graph illustrates the high-level architecture of the target-python-sdk, detailing its core components and their interactions. The main flow involves the SDK Orchestrator handling requests, which can be processed either locally by the Local Decisioning Core or remotely via the Delivery API Interface. Both core functionalities rely on Shared Utilities for common operations, and SDK Samples demonstrate typical usage patterns.

SDK Orchestrator

The primary entry point for interacting with the Adobe Target Python SDK. It orchestrates the entire process of fetching offers, sending notifications, and managing the SDK's lifecycle, including initialization and validation of requests. It can utilize either the local decisioning engine or make remote API calls, and provides helper functionalities for cookie management and request/response processing.

Related Classes/Methods:

Local Decisioning Core

Encapsulates the core logic for evaluating rules and making personalized content decisions locally. It manages decisioning artifacts, constructs various context objects from input data, and handles tracing and dispatching of notifications and telemetry related to local decisions.

Related Classes/Methods:

Delivery API Interface

Provides the low-level interface for making HTTP requests to the Adobe Target Delivery API. It handles request serialization, response deserialization, error handling for network communication, and defines the data models for all requests and responses exchanged with the API.

Related Classes/Methods:

Shared Utilities

A collection of general-purpose utility functions, performance tools, event handling, attribute management, and data structure helpers used across various modules of the SDK, ensuring consistency and reusability.

Related Classes/Methods:

SDK Samples

Contains example code demonstrating how to use the Adobe Target Python SDK for various scenarios, serving as a guide for developers.

Related Classes/Methods:

  • target-python-sdk.samples.app (full file reference)
  • target-python-sdk.samples.target_client_service (full file reference)
  • target-python-sdk.samples.target_request_utils (full file reference)