The PETL documentation states that in order to load JSON, HTML, XML, or text the data can only originate from a file. How can I load data into PETL in any of these formats from memory such as a string variable rather than a file?
This would be useful when loading data that has already been cleansed or generated by upstream code. Writing to file only to re-read the file is a wasteful and risky (race conditions etc) operation.