question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Data Loader: .to_csv()

It’d be nice if we could also write data from disk. A syntax like this would be nice:

Clumper.to_csv(path, settings)

An important theme here is to keep it simple and to think how we might want to deal with keys that sometimes go missing.

Issue Analytics

  • State:closed
  • Created 3 years ago
  • Comments:9 (9 by maintainers)

github_iconTop GitHub Comments

1reaction
samukwekucommented, Aug 23, 2020

Sure. I will make some commits and push a PR soon

1reaction
koaningcommented, Aug 19, 2020

It might be good to check how pandas might do this. I think another option is to just leave the fields empty. Also; I’m not sure what the best approach is so I’ve got a somewhat open mind here. I think it is also fine if the first implementation of this is “fair and reasonable in most cases” instead of “perfect in all cases”. I’m sure there’s some international standards but we don’t have to 100% comply to them immediately.

Read more comments on GitHub >

github_iconTop Results From Across the Web

csv — CSV File Reading and Writing — Python 3.11.1 ...
The csv module's reader and writer objects read and write sequences. Programmers can also read and write data in dictionary form using the...
Read more >
Writing CSV files in Python - GeeksforGeeks
csv.writer class is used to insert data to the CSV file. This class returns a writer object which is responsible for converting the...
Read more >
Writing to CSV in Python - codingem.com
Writing to CSV in Python is possible by opening a file, creating a CSV writer, and using the writerows() method to write data...
Read more >
Python CSV: Read and Write CSV files - Programiz
The csv.writer() function returns a writer object that converts the user's data into a delimited string. This string can later be used to...
Read more >
Reading and Writing CSV Files in Python - Real Python
A CSV file (Comma Separated Values file) is a type of plain text file that uses specific structuring to arrange tabular data. Because...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found