DataTaunew | comments | leaders | submitlogin
11 Python Libraries You Might Not Know (yhathq.com)
23 points by glamp 3377 days ago | 4 comments


1 point by elliott34 3374 days ago | link

csvkit is a command line tool, technically not a library in the sense of this article, but it is written in python. fun to pretend you're a command line wizard.

https://csvkit.readthedocs.org/en/0.9.0/

-----

1 point by glamp 3375 days ago | link

Hope you all like this one. Let me know if you think I missed any!

-----

4 points by lameo 3375 days ago | link

Awesome list!

Not really something you missed, but just something I do different when printing tables:

I use Python's http server

    python -m SimpleHTTPServer
and then use pandas to write my dataframe (df) to a html table

    df.to_html('mytable.html')
Voila, now you have a nice way to preview/look at data.

-----

1 point by glamp 3375 days ago | link

I've never thought to do that but that's really slick!

-----




RSS | Announcements