I have a non-graphic application which spits out CSV data. I'd like to read it into Houdini as points with attributes. I can format the data, so that one CSV line contains all the properties for one point:
X,Y,Z,"attrib1","int","attrib2","string"... etc <- where "int" and "string" are attr types
Is there a built-in SOP in Houdini that can read such data and create a point with attributes for each line? If not, what's the best option? A Python SOP that reads this in and creates the data? Thanks.