Read csv file

Any way of reading a csv and getting the data in bulk?

I can only achieve getting the data row by row. I need to get all the data in the csv data in order to send it to a custom Python module.

Hi @Blanca and welcome to the Make Community!

You can use a text aggregator to put it all into a single text documemt and send that to your Python module.

The Make Academy has a section on text aggregators here:

https://academy.make.com/courses/BasicsC04

L

L

Welcome to the Make community!

You probably don’t even need to Parse CSV if you want the file contents.

You can use the built-in function toString on the file data from the Download a File module:

e.g.:

{{ toString(2.data) }}

For more information, see the function documentation in the Help Center and do the tutorials in the Make Academy.

Hope this helps! Let me know if there are any further questions or issues.

@samliew

P.S.: Investing some effort into the Make Academy will save you lots of time and frustration using Make.