pandas.
read_orc
Load an ORC object from the file path, returning a DataFrame.
New in version 1.0.0.
Any valid string path is acceptable. The string could be a URL. Valid URL schemes include http, ftp, s3, and file. For file URLs, a host is expected. A local file could be: file://localhost/path/to/table.orc.
file://localhost/path/to/table.orc
If you want to pass in a path object, pandas accepts any os.PathLike.
os.PathLike
By file-like object, we refer to objects with a read() method, such as a file handler (e.g. via builtin open function) or StringIO.
read()
open
StringIO
If not None, only these columns will be read from the file.
Any additional kwargs are passed to pyarrow.