I have a CSV data stream/object called jobresults:
"number","person1","person2","type"
1234,"Michael Scott","Pam Beasley",false
2345,"Michael Scott","Jim Halpert",true
3456,"Jim Halpert","Dwight Schrute",false
How do I convert this object (it is NOT written out to a file) to a Pandas DataFrame?
I tried:
df = pd.read_csv(jobresults)
...to no avail. I believe read_csv requires an actual file pulled from the OS.
Any insight will be much appreciated!