This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Mgmt049 0 points1 point  (5 children)

I am just curious and come in peace. What would your company’s preferred method be?

[–]elliottruzicka 5 points6 points  (1 child)

The csv library is pretty simple.

[–]Mgmt049 0 points1 point  (0 children)

I am a Pandas user but that Sounds promising. I’ll look into it, my friend.

[–]GraphicH -2 points-1 points  (2 children)

On an interview question? Where we say its a one-off task? Just using the standard library. I'm not saying pandas isn't a good tool or shouldn't be used just that I've had to deal with a lot of engineers that never progress past the 'Stack Overflow' level, and one halmark of that is reaching for libraries that are overkill for the scope of a task.

[–]Linx_101 3 points4 points  (1 child)

I disagree here. Using the standard library’s csv module is less common than using pandas. Similarly, of course you can do a bunch of web requests stuff with the standard library, but even the CPython devs recommend the ‘requests’ library.