Page 1 of 1

ListView equivalent in Python

Posted: 03 Aug 2014, 10:57
by Joe Glines
I've been learning Python but have yet to see anything equivalent to AutoHotKey's ListView. Does anyone know of a library/module which will display them in cells similar to it? Especially being able to sort on them, add/delete columns and edit values.

Re: ListView equivalent in Python

Posted: 03 Aug 2014, 11:33
by joedf
Have you tried PyQt or PyGTK?

Re: ListView equivalent in Python

Posted: 03 Aug 2014, 11:34
by Coco
Have you tried PyQt?

Re: ListView equivalent in Python

Posted: 03 Aug 2014, 16:21
by Joe Glines
I thought PyQt was for building GUIs. Yes, I understand I'm trying to display my csv data,but I just hadn't thought it would have built-in functionality for displaying CSV/tab delimited files. I tried searching them but was finding very complex solutions. I don't suppose anyone has a simplified example or could point me to a video showing how a table looks?

Thanks for the help!
Regards,
Joe

Re: ListView equivalent in Python

Posted: 03 Aug 2014, 18:58
by Joe Glines
I finally found a decent example. Yes, this looks pretty promising
http://www.lemonsoftware.eu/goodies/pyt ... listviewex

Re: ListView equivalent in Python

Posted: 03 Aug 2014, 19:19
by joedf
Hmmm cool! Thanks for sharing