(co-founder of Neptyne) - It's definitely not the easiest market to break in, I am sure you are right there. The Python side of things does allow for easy import of data from anywhere though - you can just go:
A1 = requests.get(SOME_URL).json()
to make a REST API call for example. Right now that's often done by running some script that produces a .csv that then gets emailed around and imported into a spreadsheet.
A1 = requests.get(SOME_URL).json()
to make a REST API call for example. Right now that's often done by running some script that produces a .csv that then gets emailed around and imported into a spreadsheet.