Page 1 of 1

Python Coding help - Any Buddies want to help

Posted: Tue Apr 12, 2011 8:34 pm
by Mysoogal
i need help in developing my rar streaming GUI, I'm new to python programming so treat me as a total newbie !

so far i done the following which just wire frame of standard window but no items inside, how would i add progress bar, table of listed downloads etc , Download button etc please look below at the Firefox download window, i want to exactly build something like that but, to only download rar parts and have them unrar and open with videolan.
rar streaming
rar streaming
untitled.PNG (25.67 KiB) Viewed 10139 times

Code: Select all

#!/usr/bin/python

# python 2.7 

import wx

def main():
    app = wx.App()

    frame = wx.Frame(None, 100, 'Decompression Manager', wx.Point(100,50), wx.Size(600,350))
    frame.SetIcon(wx.Icon('resources/gui.ico', wx.BITMAP_TYPE_ICO))
    frame.Center()
    frame.Show()
    app.MainLoop()

if __name__ == '__main__':
    main()

Re: Python Coding help - Any Buddies want to help

Posted: Tue Apr 12, 2011 8:36 pm
by Mysoogal
this is directly related to this post https://robot.lk/viewtopic.php?f=74&t=2358

i have the idea working, but now i want to build python GUI :mrgreen:

Re: Python Coding help - Any Buddies want to help

Posted: Tue Apr 12, 2011 9:08 pm
by Neo
I have no idea about Python. It is one of the few languages that I haven't even seen a source code.
It seems wxPython can be helpful for your project. Have a look.

Re: Python Coding help - Any Buddies want to help

Posted: Wed Apr 13, 2011 4:11 am
by Mysoogal
i am using that already wx :mrgreen:

i know how to set everything up, i just do not understand how to properly code on it yet, the style seem like java importing modules then accessing them :geek:

I'm watching you tube about wx but i still do not get it lol i really do hate coding :D

Re: Python Coding help - Any Buddies want to help

Posted: Thu Apr 14, 2011 11:31 pm
by Neo
Are you using Python for learning purposes?

If it is not, how if you use Java to build the front-end since there are lots of tools that supports it?. Also it is easily portable on Linux and Windows.

Re: Python Coding help - Any Buddies want to help

Posted: Fri Apr 15, 2011 2:28 pm
by Mysoogal
Neo wrote:Are you using Python for learning purposes?

If it is not, how if you use Java to build the front-end since there are lots of tools that supports it?. Also it is easily portable on Linux and Windows.
never mind I've installed
QT for py2.7
I'll try to use QT Library instead :mrgreen: maybe somebody at QT forum will code it for me :lol: I'm so cheap haaaa

java is not pre-installed on Linux :geek: while python i think is already installed with some software as requirement