Metadata-Version: 2.1
Name: prettyqt
Version: 0.81.0
Summary: Pythonic layer on top of PyQt5 / PySide2
Home-page: https://github.com/phil65/prettyqt
Author: Philipp Temminghoff
Author-email: phil65@kodi.tv
License: MIT license
Description: # prettyqt: Pythonic layer on top of PyQt5 / PySide2
        [![PyPI Latest Release](https://img.shields.io/pypi/v/prettyqt.svg)](https://pypi.org/project/prettyqt/)
        [![Package Status](https://img.shields.io/pypi/status/prettyqt.svg)](https://pypi.org/project/prettyqt/)
        [![License](https://img.shields.io/pypi/l/prettyqt.svg)](https://github.com/prettyqt-dev/prettyqt/blob/master/LICENSE)
        [![Travis Build Status](https://travis-ci.org/prettyqt-dev/prettyqt.svg?branch=master)](https://travis-ci.org/prettyqt-dev/prettyqt)
        [![CodeCov](https://codecov.io/gh/phil65/PrettyQt/branch/master/graph/badge.svg)](https://codecov.io/gh/phil65/PrettyQt)
        [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
        [![PyUp](https://pyup.io/repos/github/phil65/PrettyQt/shield.svg)](https://pyup.io/repos/github/phil65/PrettyQt/)
        
        ## What is it?
        
        **PrettyQt** is a Python package that provides a pythonic layer on top of the GUI frameworks PyQt5 / PySide2.
        
        ## Main Features
        Here are just a few of the things that PrettyQt does well:
        
          - Large parts of the Qt API are available in a **PEP-8**-compliant way.
          - Several predefined widgets, validators, models, syntax highlighters are included.
          - A regex module based on QRegularExpression with the same API as Pythons core re module.
        
        
           [widgets]: https://phil65.github.io/PrettyQt/widgets.html
           [validators]: https://phil65.github.io/PrettyQt/validators.html
           [syntaxhighlighters]: https://phil65.github.io/PrettyQt/syntaxhighlighters.html
           [models]: https://phil65.github.io/PrettyQt/models.html
        
        
        ## Where to get it
        The source code is currently hosted on GitHub at:
        https://github.com/phil65/PrettyQt
        
        The latest released version are available at the [Python
        package index](https://pypi.org/project/prettyqt).
        
        ```sh
        # or PyPI
        pip install prettyqt
        ```
        
        ## Dependencies
        - [qtpy](https://pypi.org/project/prettyqt)
        - [qtawesome](https://pypi.org/project/qtawesome)
        - [bidict](https://pypi.org/project/bidict)
        - [orjson](https://pypi.org/project/orjson)
        - [regex](https://pypi.org/project/regex)
        - [docutils](https://pypi.org/project/docutils)
        
        
        ## Installation from sources
        
        In the `prettyqt` directory (same one where you found this file after
        cloning the git repo), execute:
        
        ```sh
        python setup.py install
        ```
        
        or for installing in [development mode](https://pip.pypa.io/en/latest/reference/pip_install.html#editable-installs):
        
        
        ```sh
        python -m pip install -e .
        ```
        
        ## License
        [MIT](LICENSE)
        
        ## Documentation
        The official documentation is hosted on Github Pages: https://phil65.github.io/PrettyQt/
        
        ## Contributing to pandas [![Open Source Helpers](https://www.codetriage.com/phil65/prettyqt/badges/users.svg)](https://www.codetriage.com/phil65/prettyqt)
        
        All contributions, bug reports, bug fixes, documentation improvements, enhancements, and ideas are welcome.
        
        Or maybe through using PrettyQt you have an idea of your own or are looking for something in the documentation and thinking ‘this can be improved’...you can do something about it!
        
        
        ## v0.81.0 (2020-07-08)
        
        ### Feat
        
        - allow setting window icon color
        - os dark mode detection
        
        ## v0.80.1 (2020-07-08)
        
        ### Fix
        
        - Settings.value() returned wrong type
        
        ## v0.80.0 (2020-07-08)
        
        ### Feat
        
        - add Widget.set_attribute
        - add margin keyword argument to Widget.set_layout
        
        ## v0.79.1 (2020-07-08)
        
        ### Fix
        
        - remove Qt logger on Application exit
        
        ## v0.79.0 (2020-07-08)
        
        ### Feat
        
        - add widgets.Application.get_widget
        
        ## v0.78.0 (2020-07-08)
        
        ### Feat
        
        - allow to save/load window state recursively. Saving needs to be done explicitely now.
        
        ### Fix
        
        - some fixes for core.Settings dict interface
        - properly preserve types in core.Settings
        
        ## v0.77.1 (2020-07-07)
        
        ### Refactor
        
        - also allow qt flag for Splitter ctor
        
        ### Fix
        
        - return correct types for re.groupdict / re.groups
        - Fixed an issue which prevented saving an image from chartview
        
        ## 0.77.0 (2020-07-06)
        
        ### Feat
        
        - allow custom icons for Messagebox
        - add Icon.get_pixmap
        - add Object.set_unique_id / Object.get_id
        - allow None for set_max_height/width widget setters
        - add checkboxdelegate
        - add regexinput
        - add pre-commit-hook for commit messages
        
        ### Fix
        
        - fix Messagebox.message call
        
        ### Refactor
        
        - dont use property setter widget.id
        - dont use property setter widget.title
        - add child classes in re module
        - radiodelegate stuff
        - no props for abstractscrollarea scrollbars
        
Keywords: prettyqt
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
