I have a _csv.reader
type object that has been created by a function gathering data from an API. How would I open and parse this type of object, for processing in Pandas etc?
The object was initially created in this way:
obj = csv.reader(io.BytesIO(Results.encode('ascii', 'replace')), delimiter='\t')