I downloaded a datasource using Tableau rest api and it downloads it in a .tdsx format. Upon extracting it, I got the .hyper file I was looking for. Now I'm trying to load the .hyper file into a pandas dataframe using this:
import pantab
result = pantab.frames_from_hyper(database=<PATH TO YOUR HYPER FILE>)
But everytime this line executes, I get an error message saying python has stopped responding, close the program. I am assuming that this is because the file contents are too large to load which is causing it to crash. The .hyper size is 44.3 MB. Any work arounds or suggestions to solve this?