cudf.read_text#
- cudf.read_text(filepath_or_buffer, delimiter=None, byte_range=None, **kwargs)#
Configuration object for a text Datasource
- Parameters
- filepath_or_bufferstr, path object, or file-like object
Either a path to a file (a str, pathlib.Path, or py._path.local.LocalPath), URL (including http, ftp, and S3 locations), or any object with a read() method (such as builtin open() file handler function or StringIO).
- delimiterstring, default None, The delimiter that should be used
for splitting text chunks into separate cudf column rows. Currently only a single delimiter is supported.
- Returns
- resultGPU
Series
- resultGPU