Here is the code: http://pastebin.com/dCL7Nt8K
I am working in python and I am thinking it is a list or dictionary that I am workig with but I am using the program to fetch what types of videos can be retrieved.
I have it to where it will get the information and put it into the combobox but I want to be able to compare the information and when I print the get_active_text I get a 0,1,2,3, etc. based on the position of the item in the combobox, which doesn't bother me a ton, I just want to compare if the Item that is in the combobox and see if it is == to N.
I hope this makes sense. I am using a 3rd party library which works ideally for the situation.
Can you let me know what it is that I am working with? Are they called tuples?
def cb_changed(w): passw = w.get_active()
liststore1 = gtk.ListStore(str)
liststore2 = gtk.ListStore(str)
liststore3 = gtk.ListStore(str)
liststore4 = gtk.ListStore(str)
liststore5 = gtk.ListStore(str)
liststore6 = gtk.ListStore(str)
def combo1_text(widget):
yt = YouTube()
yt.url = Conviare.entry1.get_text()
videolist = yt.videos
for videos in yt.videos:
Conviare.liststore1.append([videos])
return videolist
Sorry I ma trying to make as much sense of this as possible. for a simple Pytube documentation I one can look at this http://pypi.python.org/pypi/pytube/ . It's really really simple(try it). I took what he is pprinting and put into the combo box, I am using the liststore1 to hold this list. I just want to be able to some how download so that the user can select a combobox and have it download what the user wants. The pastebin is the source code if needed.
