select which lib for iNet?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Marco

    #1

    select which lib for iNet?

    Hello everyone,

    I wanta know why (Py)Qt has its own lib on socket/ sql/ openGL,etc ?

    Is the lib better than standard lib?

    Thank you!


    --
    LinuX Power
  • Marc 'BlackJack' Rintsch

    #2
    Re: select which lib for iNet?

    In <mailman.4367.1 172394756.32031 .python-list@python.org >, Marco wrote:
    I wanta know why (Py)Qt has its own lib on socket/ sql/ openGL,etc ?
    That's simply because Qt has these libraries. If you are programming in
    C++ this has the advantage that the application is platform independent if
    you write against the Qt APIs. As Python also has APIs for such things
    that work cross platform it might be better to use those, because you can
    separate GUI and logic better. It's hard to replace the Qt libraries with
    a Gtk, wxPython or web GUI if you still need Qt for networking or database
    access.

    Ciao,
    Marc 'BlackJack' Rintsch

    Comment

    Working...