PySide2


NamePySide2 JSON
Version 5.15.2.1 PyPI version JSON
download
home_pagehttps://www.pyside.org
SummaryPython bindings for the Qt cross-platform application and UI framework
upload_time2022-01-14 06:58:40
maintainer
docs_urlNone
authorQt for Python Team
requires_python>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <3.11
licenseLGPL
keywords qt
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # PySide2

### Introduction

PySide2 is the official Python module from the
[Qt for Python project](http://wiki.qt.io/Qt_for_Python),
which provides access to the complete Qt 5.12+ framework.

The Qt for Python project is developed in the open, with all facilities you'd expect
from any modern OSS project such as all code in a git repository and an open
design process. We welcome any contribution conforming to the
[Qt Contribution Agreement](https://www.qt.io/contributionagreement/).

### Installation

Since the release of the [Technical Preview](https://blog.qt.io/blog/2018/06/13/qt-python-5-11-released/)
it is possible to install via `pip`, both from Qt's servers
and [PyPi](https://pypi.org/project/PySide2/):

    pip install PySide2

#### Dependencies

PySide2 versions following 5.12 use a C++ parser based on
[Clang](http://clang.org/). The Clang library (C-bindings), version 6.0 or
higher is required for building. Prebuilt versions of it can be downloaded from
[download.qt.io](http://download.qt.io/development_releases/prebuilt/libclang/).

After unpacking the archive, set the environment variable *LLVM_INSTALL_DIR* to
point to the folder containing the *include* and *lib* directories of Clang:

    7z x .../libclang-release_60-linux-Rhel7.2-gcc5.3-x86_64-clazy.7z
    export LLVM_INSTALL_DIR=$PWD/libclang

On Windows:

    7z x .../libclang-release_60-windows-vs2015_64-clazy.7z
    SET LLVM_INSTALL_DIR=%CD%\libclang

### Building from source

For building PySide2 from scratch, please read about
[getting started](https://wiki.qt.io/Qt_for_Python/GettingStarted).
This process will include getting the code:

    git clone https://code.qt.io/pyside/pyside-setup
    cd pyside-setup
    git branch --track 5.12 origin/5.12
    git checkout 5.12

then install the dependencies, and following the instructions per platform.
A common build command will look like:

    python setup.py install --qmake=<path/to/qmake/> --parallel=8 --build-tests

You can obtain more information about the options to build PySide
and Shiboken in [our wiki](https://wiki.qt.io/Qt_for_Python/).

### Documentation and Bugs

You can find more information about the PySide2 module API in the
[official Qt for Python documentation](https://doc.qt.io/qtforpython/).

If you come across any issue, please file a bug report at our
[JIRA tracker](https://bugreports.qt.io/projects/PYSIDE) following
our [guidelines](https://wiki.qt.io/Qt_for_Python/Reporting_Bugs).

### Community

Check *#qt-pyside*, our official IRC channel on FreeNode,
or contact us via our [mailing list](http://lists.qt-project.org/mailman/listinfo/pyside).

### Licensing

PySide2 is available under both Open Source (LGPLv3/GPLv2) and commercial license.
Using PyPi is the recommended installation source, because the content of the wheels is valid for both cases.
For more information, refer to the [Qt Licensing page](https://www.qt.io/licensing/).



            

Raw data

            {
    "_id": null,
    "home_page": "https://www.pyside.org",
    "name": "PySide2",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <3.11",
    "maintainer_email": "",
    "keywords": "Qt",
    "author": "Qt for Python Team",
    "author_email": "pyside@qt-project.org",
    "download_url": "https://download.qt.io/official_releases/QtForPython",
    "platform": "",
    "description": "# PySide2\n\n### Introduction\n\nPySide2 is the official Python module from the\n[Qt for Python project](http://wiki.qt.io/Qt_for_Python),\nwhich provides access to the complete Qt 5.12+ framework.\n\nThe Qt for Python project is developed in the open, with all facilities you'd expect\nfrom any modern OSS project such as all code in a git repository and an open\ndesign process. We welcome any contribution conforming to the\n[Qt Contribution Agreement](https://www.qt.io/contributionagreement/).\n\n### Installation\n\nSince the release of the [Technical Preview](https://blog.qt.io/blog/2018/06/13/qt-python-5-11-released/)\nit is possible to install via `pip`, both from Qt's servers\nand [PyPi](https://pypi.org/project/PySide2/):\n\n    pip install PySide2\n\n#### Dependencies\n\nPySide2 versions following 5.12 use a C++ parser based on\n[Clang](http://clang.org/). The Clang library (C-bindings), version 6.0 or\nhigher is required for building. Prebuilt versions of it can be downloaded from\n[download.qt.io](http://download.qt.io/development_releases/prebuilt/libclang/).\n\nAfter unpacking the archive, set the environment variable *LLVM_INSTALL_DIR* to\npoint to the folder containing the *include* and *lib* directories of Clang:\n\n    7z x .../libclang-release_60-linux-Rhel7.2-gcc5.3-x86_64-clazy.7z\n    export LLVM_INSTALL_DIR=$PWD/libclang\n\nOn Windows:\n\n    7z x .../libclang-release_60-windows-vs2015_64-clazy.7z\n    SET LLVM_INSTALL_DIR=%CD%\\libclang\n\n### Building from source\n\nFor building PySide2 from scratch, please read about\n[getting started](https://wiki.qt.io/Qt_for_Python/GettingStarted).\nThis process will include getting the code:\n\n    git clone https://code.qt.io/pyside/pyside-setup\n    cd pyside-setup\n    git branch --track 5.12 origin/5.12\n    git checkout 5.12\n\nthen install the dependencies, and following the instructions per platform.\nA common build command will look like:\n\n    python setup.py install --qmake=<path/to/qmake/> --parallel=8 --build-tests\n\nYou can obtain more information about the options to build PySide\nand Shiboken in [our wiki](https://wiki.qt.io/Qt_for_Python/).\n\n### Documentation and Bugs\n\nYou can find more information about the PySide2 module API in the\n[official Qt for Python documentation](https://doc.qt.io/qtforpython/).\n\nIf you come across any issue, please file a bug report at our\n[JIRA tracker](https://bugreports.qt.io/projects/PYSIDE) following\nour [guidelines](https://wiki.qt.io/Qt_for_Python/Reporting_Bugs).\n\n### Community\n\nCheck *#qt-pyside*, our official IRC channel on FreeNode,\nor contact us via our [mailing list](http://lists.qt-project.org/mailman/listinfo/pyside).\n\n### Licensing\n\nPySide2 is available under both Open Source (LGPLv3/GPLv2) and commercial license.\nUsing PyPi is the recommended installation source, because the content of the wheels is valid for both cases.\nFor more information, refer to the [Qt Licensing page](https://www.qt.io/licensing/).\n\n\n",
    "bugtrack_url": null,
    "license": "LGPL",
    "summary": "Python bindings for the Qt cross-platform application and UI framework",
    "version": "5.15.2.1",
    "split_keywords": [
        "qt"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "7d1bac636562edc02aa7f8d8d609a2d1",
                "sha256": "b5e1d92f26b0bbaefff67727ccbb2e1b577f2c0164b349b3d6e80febb4c5bde2"
            },
            "downloads": -1,
            "filename": "PySide2-5.15.2.1-5.15.2-cp27-cp27m-macosx_10_13_intel.whl",
            "has_sig": false,
            "md5_digest": "7d1bac636562edc02aa7f8d8d609a2d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp27",
            "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <3.11",
            "size": 148122332,
            "upload_time": "2022-01-14T06:58:40",
            "upload_time_iso_8601": "2022-01-14T06:58:40.328178Z",
            "url": "https://files.pythonhosted.org/packages/b9/b0/38ba6691d4ee56d25f4c261e3d1e775b8760e30d4f5e0b62574d110299af/PySide2-5.15.2.1-5.15.2-cp27-cp27m-macosx_10_13_intel.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "4f51212147a205cc2e65366598ecd65e",
                "sha256": "235240b6ec8206d9fdf0232472c6ef3241783d480425e5b54796f06e39ed23da"
            },
            "downloads": -1,
            "filename": "PySide2-5.15.2.1-5.15.2-cp27-cp27mu-manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4f51212147a205cc2e65366598ecd65e",
            "packagetype": "bdist_wheel",
            "python_version": "cp27",
            "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <3.11",
            "size": 163743999,
            "upload_time": "2022-01-14T06:59:32",
            "upload_time_iso_8601": "2022-01-14T06:59:32.361488Z",
            "url": "https://files.pythonhosted.org/packages/da/18/8a59ed71344db7330ce321d3c415a87ef6e44c7eb1d24df679e728afc3a8/PySide2-5.15.2.1-5.15.2-cp27-cp27mu-manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "08fa98f08fbaec74f17e1b238b95bbf3",
                "sha256": "a9e2e6bbcb5d2ebb421e46e72244a0f4fe0943b2288115f80a863aacc1de1f06"
            },
            "downloads": -1,
            "filename": "PySide2-5.15.2.1-5.15.2-cp35.cp36.cp37.cp38.cp39.cp310-abi3-macosx_10_13_intel.whl",
            "has_sig": false,
            "md5_digest": "08fa98f08fbaec74f17e1b238b95bbf3",
            "packagetype": "bdist_wheel",
            "python_version": "cp35.cp36.cp37.cp38.cp39.cp310",
            "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <3.11",
            "size": 148464754,
            "upload_time": "2022-01-14T07:01:02",
            "upload_time_iso_8601": "2022-01-14T07:01:02.788004Z",
            "url": "https://files.pythonhosted.org/packages/1b/1f/194ed3a9c79abe4d8e8800112d5c19d0b9d7a1aca8b10029043bb3a083d0/PySide2-5.15.2.1-5.15.2-cp35.cp36.cp37.cp38.cp39.cp310-abi3-macosx_10_13_intel.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "6e7e3e87e4c3dbf650d7948a2800be2e",
                "sha256": "23886c6391ebd916e835fa1b5ae66938048504fd3a2934ae3189a96cd5ac0b46"
            },
            "downloads": -1,
            "filename": "PySide2-5.15.2.1-5.15.2-cp35.cp36.cp37.cp38.cp39.cp310-abi3-manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6e7e3e87e4c3dbf650d7948a2800be2e",
            "packagetype": "bdist_wheel",
            "python_version": "cp35.cp36.cp37.cp38.cp39.cp310",
            "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <3.11",
            "size": 164306859,
            "upload_time": "2022-01-14T07:01:45",
            "upload_time_iso_8601": "2022-01-14T07:01:45.748458Z",
            "url": "https://files.pythonhosted.org/packages/c2/9a/78ca8bada6cf4d2798e0c823c025c590517d74445837f4eb50bfddce8737/PySide2-5.15.2.1-5.15.2-cp35.cp36.cp37.cp38.cp39.cp310-abi3-manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "45cc6a3da92ea50aed1555d243577605",
                "sha256": "439509e53cfe05abbf9a99422a2cbad086408b0f9bf5e6f642ff1b13b1f8b055"
            },
            "downloads": -1,
            "filename": "PySide2-5.15.2.1-5.15.2-cp35.cp36.cp37.cp38.cp39.cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "45cc6a3da92ea50aed1555d243577605",
            "packagetype": "bdist_wheel",
            "python_version": "cp35.cp36.cp37.cp38.cp39.cp310",
            "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <3.11",
            "size": 116934577,
            "upload_time": "2022-01-14T07:02:20",
            "upload_time_iso_8601": "2022-01-14T07:02:20.723923Z",
            "url": "https://files.pythonhosted.org/packages/c9/ae/a8c2b9d7b19a787a9f96ddead3f38e4e7b041ec7ae901953dfa7a2fe2fff/PySide2-5.15.2.1-5.15.2-cp35.cp36.cp37.cp38.cp39.cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "d30c9ae54a1f0796ddc569e6e4614c4e",
                "sha256": "af6b263fe63ba6dea7eaebae80aa7b291491fe66f4f0057c0aafe780cc83da9d"
            },
            "downloads": -1,
            "filename": "PySide2-5.15.2.1-5.15.2-cp35.cp36.cp37.cp38.cp39.cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d30c9ae54a1f0796ddc569e6e4614c4e",
            "packagetype": "bdist_wheel",
            "python_version": "cp35.cp36.cp37.cp38.cp39.cp310",
            "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <3.11",
            "size": 137370554,
            "upload_time": "2022-01-14T07:03:01",
            "upload_time_iso_8601": "2022-01-14T07:03:01.160092Z",
            "url": "https://files.pythonhosted.org/packages/ed/5e/d0d540385dcc5eeda877a4288a9a4970e0e7b2282e840c2b08ce5442542e/PySide2-5.15.2.1-5.15.2-cp35.cp36.cp37.cp38.cp39.cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-01-14 06:58:40",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "lcname": "pyside2"
}
        
Elapsed time: 0.01508s