Help regarding Python table plot

Asky

Adept
Hey Guys

I am trying to do a simple thing:

Get data(2 coloumns,a field and its count) from a postgrSQL database and display it as (if possible) a fancy table.

The end product needs to be saved as an image. I have gotten to the point where I am getting the data I need but just don't know(cannot find a module) that will allow me to plot this data as a simple table.

I have looked at most of the Graphic libraries: matplotlib,cairoplot etc and all of them support 'advanced' plots like bar graphs pie charts maps etc etc but none of them can create a simple table image to suit my needs.

[PS : matplotlib has a table plot function but it sucks, the x and y axis always seem to accompany the table ]

Any ideas ? other methods ?

Thanks
 
Not sure which version of matplotlib you are using, but there is a method set_visible for axes (PS: In recent versions). you just need to set all of them to false. Just google it and you will find a solution.
 
Back
Top