Socket
Socket
Sign inDemoInstall

PyCutee

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

PyCutee

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


Maintainers
1

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.

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc