Most certainly my question is not asked properly . Anyway, I am looking for a way to convert some data I ve extracted from the web to a list or a string (string would be better tho).
At the moment, this is what I wrote :
import urllib as web
message = "http://hopey.netfonds.no/posdump.php?date=20150209&paper=AAPL.O&csv_format=txt"
data = web.urlopen(message)
data has a very weird type I ve never seen before (yes yes still new to that python thing). So any help would be very helpful .
Thanks in advance.