I\'m using pydoop to read in a file from hdfs, and when I use:
import pydoop.hdfs as hd with hd.open(\"/home/file.csv\") as f: print f.read()
Use read instead open, it works
read
open
with hd.read("/home/file.csv") as f: df = pd.read_csv(f)