I want to create a Q script that will compare tables from various sources and attach results to a Jira ticket in the form of text file.
Number of files to be compared are around 25. I have script which can compare tables. But not sure how to access JIRA APIs.
Please help.
Kdb+ does have inbuilt HTTP functions for GET (.Q.hg) and POST (.Q.hp)
These blog posts may be of interest:
Another option would be to use embedPy.
You can use it to expose Python functions to q
When data is returned as JSON you can use .j.k to deserialize
Thanks rocuinneagain. I will go through the blogs.