[02:59] Anyone here familiar in working with the Ubuntu Software center API in JSOn format? [06:31] good morning everyone [07:05] good morning [09:55] hello [09:56] I've been reading about using quickly to create ubuntu applications, and can see that 'quickly edit' opens the files, but which one should i place my python (2.7) code into? [10:20] hi TheFred. Your GUI code should be on the Window.py file [10:20] you can modify it to suit your needs [10:20] aha - thanks,i was tinkering trying to work it out for myself [10:20] but that does not mean that the code needs to be confined there [10:20] you can add your own additional modules outside of that file [10:21] what that file provides is just a boilerplate to help you get started [10:21] I was banging my head trying to modify the __init__.py [10:21] dpm, thanks - thats appreciated [10:22] TheFred, no worries, glad to help. Feel free to ask here or on askubuntu if we can give a hand in any way [10:22] I know this is newbish - but do i have to create my own class, or modify the ***Window class thats already there? [10:23] it all depends on what you want to do. If you are just starting, I'd recommend just modifying the window that's created for you [10:23] simply run 'quickly design', strip it of anything you don't need [10:24] add the widgets, that you need, etc [10:24] and modify the rest in the code (on Window.py) [10:25] you might also want to read the tutorial, it's quite helpful. You can run 'quickly tutorial' and the documentation viewer will pop up with the docs [10:25] ok, i've got a python program that runs well, it reads ascii strings from a socket and would like to display this in either a text box or label [10:26] aha - quickly tutorial, you say.... thats gold [10:26] :-) [10:27] if your program is contained in a module, perhaps you can just drop it as it in the 'yourapp' folder and integrate it with Window.py so that it reads the results and displays them [10:27] this way you get nice separation between logic and UI [10:34] thats an area i really need to do more work on - classes and modules, this may just be the motivation i need [10:52] cool :) [10:53] a real project always helps with motivation [14:26] hmm, now to try to get the strings from the socket into a textview.. but how to I go about connecting data = client_socket.recv(512) to a text view? [14:26] The button events seem straight forward enough, but socket events? === gnufz is now known as gnufs [21:45] hey there [21:46] I don't know if anyone here uses vim to code PyGobject, but i'm having a lot of troubles with it [21:47] i've explained the problem in details here: https://plus.google.com/u/0/105054545451660940700/posts/YMd62nU17GP [21:48] but basically, vim crashes as soon as i enter PyGobject code