Skip to main content

This app is a lil framework for PyQt5 like bootstrap for HTML5

Project description

PyCutee (The PyQt5 Framework)

PROJECT IS NOW ON GITHUB

PyCutee is a lightweight and stylish framework for PyQt5, designed to simplify the creation of modern and visually appealing graphical user interfaces (GUIs) in Python.

Features

  • Customizable Widgets: PyCutee offers a variety of customizable buttons, labels, and other widgets to enhance the visual appeal of your application.

  • Pre-defined Color Schemes: Easily apply stylish color schemes to your application components with minimal effort.

  • Simple API: The framework provides a straightforward and user-friendly API for creating sleek and modern interfaces.

  • Documentation: Comprehensive documentation to help you get started and make the most of PyCutee.

You can install PyCutee via pip:

pip install pycutee

Example Usage

Here's an example of how to use PyCutee in your project:

import sys

from PyQt5.QtWidgets import QApplication, QWidget, QPushButton, QVBoxLayout

from PyCutee import Button_simple, Button_rounded



def main():

    app = QApplication(sys.argv)



    window = QWidget()

    window.setWindowTitle('PyCutee Demo')



    layout = QVBoxLayout()



    regular_button = QPushButton("Regular QPushButton")

    layout.addWidget(regular_button)



    py_cutee_button = Button_simple()

    py_cutee_button("Click Me", "#95A5A6", "#95A5A6")

    layout.addWidget(py_cutee_button)



    py_cutee_button_rounded = Button_rounded()

    py_cutee_button_rounded("Click Me", "#95A5A6", "#95A5A6")

    layout.addWidget(py_cutee_button_rounded)



    window.setLayout(layout)



    window.show()



    sys.exit(app.exec_())



if __name__ == "__main__":

    main()

License

PyCutee is licensed under the MIT License. See LICENSE for more information.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pycutee-0.0.6.tar.gz (2.9 kB view hashes)

Uploaded Source

Built Distribution

PyCutee-0.0.6-py3-none-any.whl (3.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page