GETTING STARTED

Getting Started

Getting Started art

Getting Started

The quickest way to validate the front end is to install the SQL, hit the home page, and open the seeded pages from the dynamic menu. This page is a child of Documentation and proves the rollout stays open long enough to use.

from qtpy.QtWidgets import QApplication, QLabel

app = QApplication([])
label = QLabel("Hello from CutiePy")
label.resize(320, 60)
label.show()
app.exec()