Adobe Analytics API 2.0 : Introduction

From the very start, when I started to write the python wrappers around the different APIs of Adobe, I wanted to realize the Adobe Analytics API. I started with the Adobe Analytics API 1.4 (that you can check here for article and here for github) and now I am finishing with the Analytics API 2.0.…

Acronym you should live for

This post is a direct relation with my other post : “Custom Code is dead, long live Custom Code“. I am stating there that, sometimes, you have no choice to have custom code in your analytics implementation. However, it doesn’t mean that these custom code scripts should look ugly, quite the contrary. I will try…

Adobe IO : Launch API : Tutorial

EDIT : Change in the documentation has been made. pylaunch is now called launchpy. You can now install it with pip command, doing :pip install launchpy In order to show, or demonstrate, what is possible to realize with the launchpy module, I have realized a video that I am sharing here. Overall the possibilities from…

Adobe IO : Launch API : Translator Class

EDIT : Change in the documentation has been made. pylaunch is now called launchpy. You can now install it with pip command, doing :pip install launchpy The translator class is not a required class or group of methods for the launchpy module to work. You may want to rewrite some of the functionalities for your…

Adobe IO : Launch API : Library Class

EDIT : Change in the documentation has been made. pylaunch is now called launchpy. You can now install it with pip command, doing :pip install launchpy The Library class will enable you to manage your Library workflow through python directly. You will be able to add elements to the library, build the library, attach environment…

Adobe IO : Launch API : Property Class

EDIT : Change in the documentation has been made. pylaunch is now called launchpy. You can now install it with pip command, doing :pip install launchpy This article will dig into the Property class and what is possible to realize from the instances that are created from that class. This Class helps you managing your…

Adobe IO : Launch API : Core Components

EDIT : Change in the documentation has been made. pylaunch is now called launchpy. You can now install it with pip command, doing :pip install launchpy In this article, I will look at the different method available from the launchpy module, the ones directly available without any class instantiation. At the bottom of this page…

Adobe IO : Launch API : Introduction

This article will try to summarize the workflow of Adobe Launch API and what is required in order to use the python module I developed in order to use the API. There has been update on May 2020 : The module used to be called pylaunch but it now launchpy. You may still see some…

The big O

In this article, I will focus on explaining the big O notation that you can find with any algorithm. This notation is important to understand when you are dealing with algorithms. You need to understand the impact of using your selected algorithm in term of run time and this is what the big O notation…