Skip to content

Python for Connecting and Working with Alteryx Gallery API

License

Notifications You must be signed in to change notification settings

trevormcinroe/AlteryxGalleryAPI

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AlteryxGalleryAPI

AlteryxGalleryAPI is a python client helper used for connecting to the Alteryx Workflow Gallery.

It includes methods that can request Gallery information, send workflow execution commands, monitor job status, and retrieving the desired workflow output.

The official Alteryx API documentation can be found at: https://gallery.alteryx.com/api-docs/

Setup and Install

In order to access the Gallery you must obtain an API key, secret and you must have the URL to your Alteryx Gallery.

Install the package by cloning the repository, "cd" into the populartimes directory and run pip install.

Note: This library is not avaliable through via PyPI and must be installed locally and placed in your working directory.

Usage

from AlteryxGalleryAPI import AlteryxGalleryAPI

client_key = 'your_client_key_here'
client_secret = 'your_client_secret_here'
gallery_url = 'your_gallery_url'  
 
con = Gallery(gallery_url, client_key, client_secret)

con.subscription()

GET request that returns all workflows in a subscription

endpoint = /v1/workflows/subscription

con.questions(appID)

GET request that returns the questions for the given Alteryx Analytics App

endpoint = /v1/workflows/{appId}/questions/

con.executeWorkflow(appID, payload = values)

POST request that queues an app execution job and returns ID of the job

endpoint = /v1/workflows/{appId}/jobs/

PAYLOAD PARAMETER IS OPTIONAL, ONLY NECESSARY IF YOUR APP HAS QUESTIONS

Payload Example:

date = datetime.strftime(datetime.now() - timedelta(1), '%Y-%m-%d')
values = {'questions': [{'name': 'TB_StartDate', 'value': date}, {'name': 'TB_EndDate', 'value': date}]}

con.executeWorkflow('5bc4a813156ae016dcb442bd', payload = values)

Non-Payload Example:

con.executeWorkflow('5bb78ffa6b2bdd1870007570')

con.getJobs(appID)

GET request that returns the jobs for the given Alteryx Analytics App

endpoint = /v1/workflows/{appId}/jobs/

con.getJobStatus(jobID)

GET request that requires a jobID input and returns the status of that job

endpoint = /v1/jobs/{jobId}/

con.getJobOutput(jobID, outputID)

GET request that requires a jobID and an outputID which returns the output for a given job (FileURL)

endpoint = /v1/jobs/{jobId}/output/{outputId}/

con.getApp(appID)

GET request that returns the App that was requested

endpoint = /v1/jobs/{jobId}/output/{outputId}/

About

Python for Connecting and Working with Alteryx Gallery API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%