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…

Adobe IO : User Management : Retrieve Information.

On this post I will explain the different method available for retrieving information on your account. The module provides 2 functions to retrieve information on your account. This article will be short but those 2 methods are the most important ones, so they deserved their own post. function retrieveInfos This function enables you to retrieve…

Adobe IO : User Management : Introduction

The content of this series of articles is not to re-write the good step by step explanation that is provided from Adobe. Guide here. What I tried to achieve is creating a python module that can help you to easily connect and realize user management actions on a scale that is not manageable through the…

Fluent Python

On this article, I will share some of the interesting things I have learned while I was reading the book “Fluent python” by Luciano Ramalho.I will mostly focused on the first chapters. The book was recommended within the python community as one of the few that teach you important concept without being too basic or…

Adobe IO : JWT authentication with Python

On this article, I will guide you to create an JWT (JSON Web Token) authentication for Adobe. My example will be based on the Admin Console, the user management, because this is one of the few that are supporting the JWT authentication at the moment. Everything that is going to be explained now is a…

ES6 Javascript (or Pythonscript)

Hello everyone, On this article I will describe some new functionalities that came to JS from the ES6 released (I know it is late). I was never really interested on that, even if I knew them, because they were widely not supported. However, during the last year, most of the browsers have been updated and…