I have several .iqy files that query data from Sharepoint. I need to combine and process these in Python Pandas. Does Python have any way of doing this? I know the Python Sharepoint library exists, but I'm trying to avoid setting up my own connections via Python and rely on the .iqy files instead. Any ideas?
For sake of the question, assume the table looks like this:
+------+------+
| col1 | col2 |
+------+------+
| 1 | 2 |
| 3 | 4 |
+------+------+
Also I'm open to non-Python solutions for a way to automatically run the .iqy queries and get the data into a Python-readable format (e.g .csv). Not sure what such an approach looks like though