QCustomPlot-PyQt5


NameQCustomPlot-PyQt5 JSON
Version 2.1.1.2 PyPI version JSON
download
home_pageNone
SummaryQCustomPlot is a Qt widget for plotting and data visualization
upload_time2024-05-01 15:10:29
maintainerNone
docs_urlNone
authorSergey Salnikov
requires_python>=3.7
licenseMIT
keywords pyqt qcustomplot gui
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # QCustomPlot for PyQt5 and PyQt6

- [Design goals](#design-goals)
- [Installing](#installing)
- [Getting started](#getting-started)
- [Examples](#examples)
- [Supported compilers](#supported-compilers)
- [License](#license)
- [Contact](#contact)
- [Thanks](#thanks)
- [Used third-party tools](#used-third-party-tools)
- [Projects using](#projects-using)
- [Building](#building)

## Design goals

This is Python bindings for [QCustomPlot](https://www.qcustomplot.com) - Qt C++ library for plotting and data visualization. This binding can be complied for use with **PyQ5** or **PyQt6**. There are myriads of Python charting libraries out there, and each may even have its reason to exist. QCustomPlot has the following goals:

- **Performance**. QCustomPlot is written in modern C++ with the excellent Qt library for superior performance over alternative libraries.

- **Flexibility**. QCustomPlot is one of the most customisable libraries available, with a wide range of supported graph types and full control over how the graph is rendered.


## Installing

### Linux

You can find compiled packages for many Linux distributions at [OBS](https://software.opensuse.org//download.html?project=home%3Asergeyopensuse%3Agpxviewer&package=python-qcustomplot-pyqt).

### Windows

Install the package via our favourite package manager:

```sh
$ pip install QCustomPlot_PyQt5
```
or

```sh
$ pip install QCustomPlot_PyQt6
```


## Getting started

Now let's take a look at some code:

```python
import sys
import math
from PyQt5.QtCore import Qt
from PyQt5.QtGui import QPen, QBrush, QColor
from PyQt5.QtWidgets import QApplication, QMainWindow
from QCustomPlot_PyQt5 import *


app = QApplication(sys.argv)
window = QMainWindow()
window.resize(800, 600)

customPlot = QCustomPlot()
window.setCentralWidget(customPlot)

graph0 = customPlot.addGraph()
graph0.setPen(QPen(Qt.blue))
graph0.setBrush(QBrush(QColor(0, 0, 255, 20)))

graph1 = customPlot.addGraph()
graph1.setPen(QPen(Qt.red))

x, y0, y1 = [], [], []
for i in range (251):
    x.append(i)
    y0.append(math.exp(-i/150.0)*math.cos(i/10.0))  # exponentially decaying cosine
    y1.append(math.exp(-i/150.0))                   # exponential envelope

graph0.setData(x, y0)
graph1.setData(x, y1)

customPlot.rescaleAxes()
customPlot.setInteraction(QCP.iRangeDrag)
customPlot.setInteraction(QCP.iRangeZoom)
customPlot.setInteraction(QCP.iSelectPlottables)

window.show()
sys.exit(app.exec_())
```

That's all!

Some important things:

* QCustomPlot is a QWidget type that can be used the same way as any other widget, added to layouts, etc. However, you can nest multiple graphs in a single QCustomPlot using layouts (see the Advanced Axes demo).


## Examples

Beside the examples below, you may want to check the [documentation](https://www.qcustomplot.com/index.php/support/documentation).


## Supported compilers

The following compilers are known to work:

- MSVC 140, 141
- GCC 4.8
- Clang 3.4

I would be happy to learn about other compilers/versions.


## License

<img align="right" src="http://opensource.org/trademarks/opensource/OSI-Approved-License-100x137.png">

This code is licensed under the [MIT License](http://opensource.org/licenses/MIT):

Copyright &copy; 2017-2023 Dmitry Voronin, Christopher Gilbert and [Sergey Salnikov](https://github.com/salsergey)

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.

* * *

Part of the code is licensed under the [GPL Version 3 License](https://opensource.org/licenses/GPL-3.0).

* * *

This project contains the [QCustomPlot](https://gitlab.com/DerManu/QCustomPlot) library from Emanuel Eichhammer which is licensed under the [GPL Version 3 License](https://opensource.org/licenses/GPL-3.0). Copyright &copy; 2011-2022 [Emanuel Eichhammer](http://bjoern.hoehrmann.de/) <bjoern@hoehrmann.de>


## Contact

If you have questions regarding the library, I would like to invite you to [open an issue at Github](https://github.com/salsergey/QCustomPlot-PyQt/issues/new). Please describe your request, problem, or question as detailed as possible, and also mention the version of the library you are using as well as the version of your compiler and operating system. Opening an issue at GitHub allows other users and contributors to this library to collaborate.


## Thanks

I deeply appreciate the help of the following people.

- [DerManu](https://gitlab.com/DerManu) is the official author and maintainer of the excellent QCustomPlot library.
- [dimv36](https://github.com/dimv36) is the original author of the Python bindings for QCustomPlot 1.0.0, upon which this project is based.
- [cowo78](https://github.com/cowo78) and [cjgdev](https://github.com/cjgdev) added support for the QCustomPlot 2.0.0 API.

Thanks a lot for helping out! Please [let me know](mailto:salsergey@gmail.com) if I forgot someone.


## Used third-party tools

This library is built, tested, documented, and whatnot using third-party tools and services. Thanks a lot!

- [**SIP**](https://www.riverbankcomputing.com/software/sip) to generate the Python bindings.


## Projects using

- [**GPX Viewer**](https://osdn.net/projects/gpxviewer/) --- an application for viewing GPX files as a list of points and tracks.

If you are using QCustomPlot-PyQt5 in a project and would like to share with the community, please let me know, or even better, raise a pull request.


## Building from sources

### Linux

Apt users (Debian, Ubuntu, etc) may follow the instructions below, users of other distributions may adapt the steps below for your own package manager. Qt5 or Qt6 can be used as a dependency.

```sh
# Fetch the necessary development tools and libraries
$ apt-get install build-essential python3-pyqt5 pyqt5-dev-tools qttools5-dev-tools

# Clone the repository and submodules
$ git clone --recursive https://github.com/salsergey/QCustomPlot-PyQt.git && cd QCustomPlot-PyQt

# Build
$ sip-build --qmake _path_to_qmake5_or_qmake6_

# Zzz..

# Install
$ sip-install --qmake _path_to_qmake5_or_qmake6_
```


### Windows

Windows users should install [Qt tools](https://www.qt.io/), appropriate version of [VC compiler](https://visualstudio.microsoft.com/), [Python](https://www.python.org/), [PyQt5](https://www.riverbankcomputing.com/software/pyqt/download5) and [SIP](https://www.riverbankcomputing.com/software/sip/download). You may need to build SIP from sources to ensure you have all files necessary for building other software. Then follow the instructions below to build the library, otherwise you will need to adapt the steps for your own environment.

- Download QCustomPlot-PyQt sources from [Github](https://github.com/salsergey/QCustomPlot-PyQt/releases). You can use git or download an archive.
- Launch Qt console and follow instructions there. It will ensure that you have all necessary tools in your PATH variable. Also be sure that python.exe binary is in your PATH.
- Then follow these instructions:

```cmd
# Go to QCustomPlot folder
cd <<PATH_TO QCustomPlot-PyQt>>

# Download submodules if you use git
git submodules update --init

# Build
sip-build --qmake _path_to_qmake5_or_qmake6_

# Zzz..

# Install
sip-install --qmake _path_to_qmake5_or_qmake6_
```


### macOS

Users of macOS using [homebrew](https://brew.sh/) may follow the instructions below to fetch the required packages to build the library, or simply adapt to your own environment.

```sh
# First ensure Xcode is installed, as homebrew depends on it
$ xcode-select --install

# Fetch the necessary development tools and libraries
$ brew install pyqt@5

# Clone the repository and submodules
$ git clone --recursive https://github.com/salsergey/QCustomPlot-PyQt.git && cd QCustomPlot-PyQt

# Build
$ CFLAGS='-std=c++11 -stdlib=libc++' CXXFLAGS='-std=c++11 -stdlib=libc++' sip-build --qmake _path_to_qmake5_or_qmake6_

# Zzz..

# Install
$ sip-install --qmake _path_to_qmake5_or_qmake6_
```

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "QCustomPlot-PyQt5",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "PyQt, QCustomPlot, GUI",
    "author": "Sergey Salnikov",
    "author_email": "salsergey@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/5f/2f/700739dc255dc0d90b6cb2e959a312b3cf0775e808a5bc6498021739c229/QCustomPlot_PyQt5-2.1.1.2.tar.gz",
    "platform": null,
    "description": "# QCustomPlot for PyQt5 and PyQt6\n\n- [Design goals](#design-goals)\n- [Installing](#installing)\n- [Getting started](#getting-started)\n- [Examples](#examples)\n- [Supported compilers](#supported-compilers)\n- [License](#license)\n- [Contact](#contact)\n- [Thanks](#thanks)\n- [Used third-party tools](#used-third-party-tools)\n- [Projects using](#projects-using)\n- [Building](#building)\n\n## Design goals\n\nThis is Python bindings for [QCustomPlot](https://www.qcustomplot.com) - Qt C++ library for plotting and data visualization. This binding can be complied for use with **PyQ5** or **PyQt6**. There are myriads of Python charting libraries out there, and each may even have its reason to exist. QCustomPlot has the following goals:\n\n- **Performance**. QCustomPlot is written in modern C++ with the excellent Qt library for superior performance over alternative libraries.\n\n- **Flexibility**. QCustomPlot is one of the most customisable libraries available, with a wide range of supported graph types and full control over how the graph is rendered.\n\n\n## Installing\n\n### Linux\n\nYou can find compiled packages for many Linux distributions at [OBS](https://software.opensuse.org//download.html?project=home%3Asergeyopensuse%3Agpxviewer&package=python-qcustomplot-pyqt).\n\n### Windows\n\nInstall the package via our favourite package manager:\n\n```sh\n$ pip install QCustomPlot_PyQt5\n```\nor\n\n```sh\n$ pip install QCustomPlot_PyQt6\n```\n\n\n## Getting started\n\nNow let's take a look at some code:\n\n```python\nimport sys\nimport math\nfrom PyQt5.QtCore import Qt\nfrom PyQt5.QtGui import QPen, QBrush, QColor\nfrom PyQt5.QtWidgets import QApplication, QMainWindow\nfrom QCustomPlot_PyQt5 import *\n\n\napp = QApplication(sys.argv)\nwindow = QMainWindow()\nwindow.resize(800, 600)\n\ncustomPlot = QCustomPlot()\nwindow.setCentralWidget(customPlot)\n\ngraph0 = customPlot.addGraph()\ngraph0.setPen(QPen(Qt.blue))\ngraph0.setBrush(QBrush(QColor(0, 0, 255, 20)))\n\ngraph1 = customPlot.addGraph()\ngraph1.setPen(QPen(Qt.red))\n\nx, y0, y1 = [], [], []\nfor i in range (251):\n    x.append(i)\n    y0.append(math.exp(-i/150.0)*math.cos(i/10.0))  # exponentially decaying cosine\n    y1.append(math.exp(-i/150.0))                   # exponential envelope\n\ngraph0.setData(x, y0)\ngraph1.setData(x, y1)\n\ncustomPlot.rescaleAxes()\ncustomPlot.setInteraction(QCP.iRangeDrag)\ncustomPlot.setInteraction(QCP.iRangeZoom)\ncustomPlot.setInteraction(QCP.iSelectPlottables)\n\nwindow.show()\nsys.exit(app.exec_())\n```\n\nThat's all!\n\nSome important things:\n\n* QCustomPlot is a QWidget type that can be used the same way as any other widget, added to layouts, etc. However, you can nest multiple graphs in a single QCustomPlot using layouts (see the Advanced Axes demo).\n\n\n## Examples\n\nBeside the examples below, you may want to check the [documentation](https://www.qcustomplot.com/index.php/support/documentation).\n\n\n## Supported compilers\n\nThe following compilers are known to work:\n\n- MSVC 140, 141\n- GCC 4.8\n- Clang 3.4\n\nI would be happy to learn about other compilers/versions.\n\n\n## License\n\n<img align=\"right\" src=\"http://opensource.org/trademarks/opensource/OSI-Approved-License-100x137.png\">\n\nThis code is licensed under the [MIT License](http://opensource.org/licenses/MIT):\n\nCopyright &copy; 2017-2023 Dmitry Voronin, Christopher Gilbert and [Sergey Salnikov](https://github.com/salsergey)\n\nPermission 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:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE 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.\n\n* * *\n\nPart of the code is licensed under the [GPL Version 3 License](https://opensource.org/licenses/GPL-3.0).\n\n* * *\n\nThis project contains the [QCustomPlot](https://gitlab.com/DerManu/QCustomPlot) library from Emanuel Eichhammer which is licensed under the [GPL Version 3 License](https://opensource.org/licenses/GPL-3.0). Copyright &copy; 2011-2022 [Emanuel Eichhammer](http://bjoern.hoehrmann.de/) <bjoern@hoehrmann.de>\n\n\n## Contact\n\nIf you have questions regarding the library, I would like to invite you to [open an issue at Github](https://github.com/salsergey/QCustomPlot-PyQt/issues/new). Please describe your request, problem, or question as detailed as possible, and also mention the version of the library you are using as well as the version of your compiler and operating system. Opening an issue at GitHub allows other users and contributors to this library to collaborate.\n\n\n## Thanks\n\nI deeply appreciate the help of the following people.\n\n- [DerManu](https://gitlab.com/DerManu) is the official author and maintainer of the excellent QCustomPlot library.\n- [dimv36](https://github.com/dimv36) is the original author of the Python bindings for QCustomPlot 1.0.0, upon which this project is based.\n- [cowo78](https://github.com/cowo78) and [cjgdev](https://github.com/cjgdev) added support for the QCustomPlot 2.0.0 API.\n\nThanks a lot for helping out! Please [let me know](mailto:salsergey@gmail.com) if I forgot someone.\n\n\n## Used third-party tools\n\nThis library is built, tested, documented, and whatnot using third-party tools and services. Thanks a lot!\n\n- [**SIP**](https://www.riverbankcomputing.com/software/sip) to generate the Python bindings.\n\n\n## Projects using\n\n- [**GPX Viewer**](https://osdn.net/projects/gpxviewer/) --- an application for viewing GPX files as a list of points and tracks.\n\nIf you are using QCustomPlot-PyQt5 in a project and would like to share with the community, please let me know, or even better, raise a pull request.\n\n\n## Building from sources\n\n### Linux\n\nApt users (Debian, Ubuntu, etc) may follow the instructions below, users of other distributions may adapt the steps below for your own package manager. Qt5 or Qt6 can be used as a dependency.\n\n```sh\n# Fetch the necessary development tools and libraries\n$ apt-get install build-essential python3-pyqt5 pyqt5-dev-tools qttools5-dev-tools\n\n# Clone the repository and submodules\n$ git clone --recursive https://github.com/salsergey/QCustomPlot-PyQt.git && cd QCustomPlot-PyQt\n\n# Build\n$ sip-build --qmake _path_to_qmake5_or_qmake6_\n\n# Zzz..\n\n# Install\n$ sip-install --qmake _path_to_qmake5_or_qmake6_\n```\n\n\n### Windows\n\nWindows users should install [Qt tools](https://www.qt.io/), appropriate version of [VC compiler](https://visualstudio.microsoft.com/), [Python](https://www.python.org/), [PyQt5](https://www.riverbankcomputing.com/software/pyqt/download5) and [SIP](https://www.riverbankcomputing.com/software/sip/download). You may need to build SIP from sources to ensure you have all files necessary for building other software. Then follow the instructions below to build the library, otherwise you will need to adapt the steps for your own environment.\n\n- Download QCustomPlot-PyQt sources from [Github](https://github.com/salsergey/QCustomPlot-PyQt/releases). You can use git or download an archive.\n- Launch Qt console and follow instructions there. It will ensure that you have all necessary tools in your PATH variable. Also be sure that python.exe binary is in your PATH.\n- Then follow these instructions:\n\n```cmd\n# Go to QCustomPlot folder\ncd <<PATH_TO QCustomPlot-PyQt>>\n\n# Download submodules if you use git\ngit submodules update --init\n\n# Build\nsip-build --qmake _path_to_qmake5_or_qmake6_\n\n# Zzz..\n\n# Install\nsip-install --qmake _path_to_qmake5_or_qmake6_\n```\n\n\n### macOS\n\nUsers of macOS using [homebrew](https://brew.sh/) may follow the instructions below to fetch the required packages to build the library, or simply adapt to your own environment.\n\n```sh\n# First ensure Xcode is installed, as homebrew depends on it\n$ xcode-select --install\n\n# Fetch the necessary development tools and libraries\n$ brew install pyqt@5\n\n# Clone the repository and submodules\n$ git clone --recursive https://github.com/salsergey/QCustomPlot-PyQt.git && cd QCustomPlot-PyQt\n\n# Build\n$ CFLAGS='-std=c++11 -stdlib=libc++' CXXFLAGS='-std=c++11 -stdlib=libc++' sip-build --qmake _path_to_qmake5_or_qmake6_\n\n# Zzz..\n\n# Install\n$ sip-install --qmake _path_to_qmake5_or_qmake6_\n```\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "QCustomPlot is a Qt widget for plotting and data visualization",
    "version": "2.1.1.2",
    "project_urls": {
        "homepage": "https://github.com/salsergey/QCustomPlot-PyQt"
    },
    "split_keywords": [
        "pyqt",
        " qcustomplot",
        " gui"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "007fa4f903bb2ad64dc5c394fbb78ad36ed42731e1da4a3818c308c5e5eb21b2",
                "md5": "a8bd3736fed0a0713430a2e1bb8d868a",
                "sha256": "baaba9f70c33dea1989c89f15d659b98b0b3d6bee67941aab02beb5dcc90de71"
            },
            "downloads": -1,
            "filename": "QCustomPlot_PyQt5-2.1.1.2-cp310-cp310-manylinux_2_17_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a8bd3736fed0a0713430a2e1bb8d868a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1030395,
            "upload_time": "2024-05-01T15:10:16",
            "upload_time_iso_8601": "2024-05-01T15:10:16.059229Z",
            "url": "https://files.pythonhosted.org/packages/00/7f/a4f903bb2ad64dc5c394fbb78ad36ed42731e1da4a3818c308c5e5eb21b2/QCustomPlot_PyQt5-2.1.1.2-cp310-cp310-manylinux_2_17_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "994e6238987c9127c70386f9ec7c7db341fed274d4b6cf6dd7f54e4469060673",
                "md5": "55ca695d26336f8ae7f646702bfdb487",
                "sha256": "1b2d478733fb2cb154f59ef3e21ff80bd00163cd6741fe9419df473d2e547637"
            },
            "downloads": -1,
            "filename": "QCustomPlot_PyQt5-2.1.1.2-cp311-cp311-manylinux_2_17_x86_64.whl",
            "has_sig": false,
            "md5_digest": "55ca695d26336f8ae7f646702bfdb487",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1030395,
            "upload_time": "2024-05-01T15:10:18",
            "upload_time_iso_8601": "2024-05-01T15:10:18.709107Z",
            "url": "https://files.pythonhosted.org/packages/99/4e/6238987c9127c70386f9ec7c7db341fed274d4b6cf6dd7f54e4469060673/QCustomPlot_PyQt5-2.1.1.2-cp311-cp311-manylinux_2_17_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3ea5ffb09be0bf8cf4971b26fee7bacf5336bc6ff637293c72049d72bf52b4f6",
                "md5": "90f611f5d7d7afbbc28eae270d9a5d0d",
                "sha256": "ce2675e2b151171687ae532965878a422510ec9ac36c7be60d19eff302663b1d"
            },
            "downloads": -1,
            "filename": "QCustomPlot_PyQt5-2.1.1.2-cp312-cp312-manylinux_2_17_x86_64.whl",
            "has_sig": false,
            "md5_digest": "90f611f5d7d7afbbc28eae270d9a5d0d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1031988,
            "upload_time": "2024-05-01T15:10:20",
            "upload_time_iso_8601": "2024-05-01T15:10:20.639461Z",
            "url": "https://files.pythonhosted.org/packages/3e/a5/ffb09be0bf8cf4971b26fee7bacf5336bc6ff637293c72049d72bf52b4f6/QCustomPlot_PyQt5-2.1.1.2-cp312-cp312-manylinux_2_17_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5f2f700739dc255dc0d90b6cb2e959a312b3cf0775e808a5bc6498021739c229",
                "md5": "eed26769f01c6dfaf3e511c3f23cf788",
                "sha256": "ff797c0d5793b188c1208530cda1009213dcf52ae10dcbe63208cec313f32299"
            },
            "downloads": -1,
            "filename": "QCustomPlot_PyQt5-2.1.1.2.tar.gz",
            "has_sig": false,
            "md5_digest": "eed26769f01c6dfaf3e511c3f23cf788",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 487884,
            "upload_time": "2024-05-01T15:10:29",
            "upload_time_iso_8601": "2024-05-01T15:10:29.291374Z",
            "url": "https://files.pythonhosted.org/packages/5f/2f/700739dc255dc0d90b6cb2e959a312b3cf0775e808a5bc6498021739c229/QCustomPlot_PyQt5-2.1.1.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-01 15:10:29",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "salsergey",
    "github_project": "QCustomPlot-PyQt",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "qcustomplot-pyqt5"
}
        
Elapsed time: 0.23876s