PySideX


NamePySideX JSON
Version 0.0.9 PyPI version JSON
download
home_pageNone
SummaryUnofficial PySide6 library, produced with the aim of facilitating the construction of more elegant and improved interfaces using PySide6 technology
upload_time2024-05-16 19:19:49
maintainerNone
docs_urlNone
authorRyan Souza Anselmo
requires_pythonNone
licenseMIT License Copyright (c) 2024 Ryan Souza Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords pysidex
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # PySideX
Unofficial PySide6 library, produced with the aim of facilitating the construction of more elegant and improved interfaces using PySide6 technology

# How to import
import *PySideX* as *px*

# Class
class App(px.*Window*):
    def __init__(
        self,
        title="PySideX 0.0.9",
        min_width=240,
        min_height=90,
        width=1280,
        height=720,
        icon="assets/ico/icon.ico",
    ):
        self._title = title
        self._min_width = min_width
        self._min_height = min_height
        self._width = width
        self._height = height
        self._icon = icon
        super().__init__(
            self._title,
            self._min_width,
            self._min_height,
            self._width,
            self._height,
            self._icon,
        )

# How to start
if __name__ == "__main__":
    app = px.*QApplication*(px.sys.argv)
    window = *App*()
    window.*show*()
    px.sys._exit_(app._exec_())

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "PySideX",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "pysidex",
    "author": "Ryan Souza Anselmo",
    "author_email": "ryansouza.cwb@email.com",
    "download_url": "https://files.pythonhosted.org/packages/f1/cb/711cbf3c421cc7282da202c93c0d399cc6110f6b9e8806b71057e10f8b2f/PySideX-0.0.9.tar.gz",
    "platform": null,
    "description": "# PySideX\r\nUnofficial PySide6 library, produced with the aim of facilitating the construction of more elegant and improved interfaces using PySide6 technology\r\n\r\n# How to import\r\nimport *PySideX* as *px*\r\n\r\n# Class\r\nclass App(px.*Window*):\r\n    def __init__(\r\n        self,\r\n        title=\"PySideX 0.0.9\",\r\n        min_width=240,\r\n        min_height=90,\r\n        width=1280,\r\n        height=720,\r\n        icon=\"assets/ico/icon.ico\",\r\n    ):\r\n        self._title = title\r\n        self._min_width = min_width\r\n        self._min_height = min_height\r\n        self._width = width\r\n        self._height = height\r\n        self._icon = icon\r\n        super().__init__(\r\n            self._title,\r\n            self._min_width,\r\n            self._min_height,\r\n            self._width,\r\n            self._height,\r\n            self._icon,\r\n        )\r\n\r\n# How to start\r\nif __name__ == \"__main__\":\r\n    app = px.*QApplication*(px.sys.argv)\r\n    window = *App*()\r\n    window.*show*()\r\n    px.sys._exit_(app._exec_())\r\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2024 Ryan Souza  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "Unofficial PySide6 library, produced with the aim of facilitating the construction of more elegant and improved interfaces using PySide6 technology",
    "version": "0.0.9",
    "project_urls": null,
    "split_keywords": [
        "pysidex"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f1cb711cbf3c421cc7282da202c93c0d399cc6110f6b9e8806b71057e10f8b2f",
                "md5": "a467f43d7e8d04b9cdf6de648a353448",
                "sha256": "8587d96ed016701111fb6e08c8f9bc1c6f3e8829d2dca0b63cbfeafd9bb0d124"
            },
            "downloads": -1,
            "filename": "PySideX-0.0.9.tar.gz",
            "has_sig": false,
            "md5_digest": "a467f43d7e8d04b9cdf6de648a353448",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 97423,
            "upload_time": "2024-05-16T19:19:49",
            "upload_time_iso_8601": "2024-05-16T19:19:49.861550Z",
            "url": "https://files.pythonhosted.org/packages/f1/cb/711cbf3c421cc7282da202c93c0d399cc6110f6b9e8806b71057e10f8b2f/PySideX-0.0.9.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-16 19:19:49",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "pysidex"
}
        
Elapsed time: 0.38391s