hi-primus / optimus

:truck: Agile Data Preparation Workflows made easy with Pandas, Dask, cuDF, Dask-cuDF, Vaex and PySpark

Home Page:https://hi-optimus.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Load a list of files using a list of file names

argenisleon opened this issue · comments

The user should be able to load a list of files like op.load.csv(["file1.csv","file2.csv"])

@argenisleon I will be more than happy to work on this enhancement.

Oh I just noticed you have already implemented this feature in load.csv:

 if is_list(filepath_or_buffer):
                df = self.op.F.new_df()
                for f in filepath_or_buffer:
                    df = df.append(_read(f))
            else:
                df = _read(filepath_or_buffer)

Please close this issue

Thanks @keenborder786. Closing