To install click the Add extension button. That's it.

The source code for the WIKI 2 extension is being checked by specialists of the Mozilla Foundation, Google, and Apple. You could also do it yourself at any point in time.

4,5
Kelly Slayton
Congratulations on this excellent venture… what a great idea!
Alexander Grigorievskiy
I use WIKI 2 every day and almost forgot how the original Wikipedia looks like.
Live Statistics
Spanish Articles
Improved in 24 Hours
Added in 24 Hours
What we do. Every page goes through several hundred of perfecting techniques; in live mode. Quite the same Wikipedia. Just better.
.
Leo
Newton
Brights
Milds

De Wikipedia, la enciclopedia libre

PyQt

Qt Designer
Información general
Tipo de programa Biblioteca de desarrollo
Desarrollador Riverbank Computing
Lanzamiento inicial 1998
Licencia GPL 2/3,
Propietaria
Información técnica
Programado en
Versiones
Última versión estable 6.4.2 ( 06 de febrero de 2023 (8 meses y 24 días))
Enlaces

PyQt es un binding de la biblioteca gráfica Qt para el lenguaje de programación Python. La biblioteca está desarrollada por la firma británica Riverbank Computing y está disponible para Windows, GNU/Linux y Mac OS X bajo diferentes licencias.

En agosto de 2009, tras intentar negociar con Riverbank Computing la liberación de PyQt bajo licencia LGPL sin conseguirlo, Nokia, propietaria de Qt, libera bajo esta licencia un binding similar, llamado PySide.

YouTube Encyclopedic

  • 1/3
    Views:
    307 407
    179 251
    4 821
  • Intro/basic GUI - PyQt with Python GUI Programming tutorial
  • Qt Designer - PyQt with Python GUI Programming tutorial
  • 임덕규: 업무에서 빠르게 만들어 사용하는 PyQt 프로그래밍 - PyCon Korea 2015

Transcription

Ejemplo simple

import sys

from PyQt5.QtWidgets import QMainWindow, QApplication, QLabel

class VentanaPrincipal(QMainWindow):
    def __init__(self):
        QMainWindow.__init__(self)
        self.setFixedSize(500, 500)

        self.setWindowTitle("Hola mundo")

app = QApplication(sys.argv)
ventanita = VentanaPrincipal()
ventanita.show()
sys.exit(app.exec())

y aquí esta el resultado:

Véase también

Enlaces externos

Esta página se editó por última vez el 19 feb 2023 a las 21:52.
Basis of this page is in Wikipedia. Text is available under the CC BY-SA 3.0 Unported License. Non-text media are available under their specified licenses. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc. WIKI 2 is an independent company and has no affiliation with Wikimedia Foundation.