Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Python integration in Qlik on MacOS

I'm very new to using Qlik and at the moment I've only used the cloud via my browser. I would like to integrate python and Qlik such that I can run my code on data in the QlikCloud and visualize using Qlik. I am using a Mac, therefore I can not install the desktop version of Qlik to do the integration. Do you have any suggestions on how to integrate python in Qlik while using a Mac?

Any suggestions are highly appreciated, I have not been able to find any complete answers yet.

Thank you!

like image 503
Emily Avatar asked Mar 20 '26 07:03

Emily


1 Answers

Use Data Load Script

When I first started Qlik, I had a very similar situation. My goal was to manipulate data to do calculations in Python, then basically import that into Qlik. What I ended up learning and realizing is that there's a 90% chance what you're trying to calculate outside of Qlik can be done in Qlik's data load script.

Get started with the Qlik data script: https://help.qlik.com/en-US/sense/September2019/Subsystems/Hub/Content/Sense_Hub/Scripting/introduction-data-modeling.htm

In my opinion and experience, Qlik Community Forum is more active than Stack Overflow. I highly recommend checking it out for help: https://community.qlik.com/


But If You Still Need External Calculation...

That said, if you do have crazy calculations and math to do and/or need to use an external "thing", Qlik has a repo for a server-side extension. Repo at: https://github.com/qlik-oss/server-side-extension (Docs and instructions in the link)

It has extensions for Java, C++, C#, Go, and Python.

like image 87
bananabrann Avatar answered Mar 22 '26 01:03

bananabrann