Name | pyvinecopulib JSON |
Version |
0.7.0
JSON |
| download |
home_page | None |
Summary | A python interface to vinecopulib |
upload_time | 2025-01-08 12:38:53 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.8 |
license | The MIT License (MIT) Copyright © 2019-2023 Thomas Nagler and Thibault Vatter 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 |
copula
vines copulas
pair-copulas constructions
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# pyvinecopulib
[![Documentation](https://img.shields.io/website/http/vinecopulib.github.io/pyvinecopulib.svg)](https://vinecopulib.github.io/pyvinecopulib/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Build Status](https://github.com/vinecopulib/pyvinecopulib/actions/workflows/pypi.yml/badge.svg)](https://github.com/vinecopulib/pyvinecopulib/actions/workflows/pypi.yml)
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/3c0056d3ca5244a5ba6a2b32f87be4cf)](https://www.codacy.com/gh/vinecopulib/pyvinecopulib?utm_source=github.com&utm_medium=referral&utm_content=vinecopulib/pyvinecopulib&utm_campaign=Badge_Grade)
[![DOI](https://zenodo.org/badge/196999069.svg)](https://zenodo.org/badge/latestdoi/196999069)
## Introduction
### What are vine copulas?
Vine copulas are a flexible class of dependence models consisting of bivariate
building blocks (see e.g.,
[Aas et al., 2009](https://mediatum.ub.tum.de/doc/1083600/1083600.pdf)).
You can find a comprehensive list of publications and other materials on
[vine-copula.org](http://vine-copula.org).
### What is pyvinecopulib?
[pyvinecopulib](https://vinecopulib.github.io/pyvinecopulib/) is the python interface to vinecopulib, a header-only C++ library for vine copula models based on
[Eigen](http://eigen.tuxfamily.org/index.php?title=Main_Page). It provides
high-performance implementations of the core features of the popular
[VineCopula R library](https://github.com/tnagler/VineCopula), in particular
inference algorithms for both vine copula and bivariate copula models.
Advantages over VineCopula are
* a stand-alone C++ library with interfaces to both R and Python,
* a sleaker and more modern API,
* shorter runtimes and lower memory consumption, especially in high dimensions,
* nonparametric and multi-parameter families.
### License
pyvinecopulib is provided under an MIT license that can be found in the LICENSE
file. By using, distributing, or contributing to this project, you agree to the
terms and conditions of this license.
### Contact
If you have any questions regarding the library, feel free to
[open an issue](https://github.com/pyvinecopulib/pyvinecopulib/issues/new) or
send a mail to <info@vinecopulib.org>.
## Installation
### With pip
The latest release can be installed using `pip`:
```bash
pip install pyvinecopulib
```
### With conda
Similarly, it can be installed with `conda`:
```bash
conda install conda-forge::pyvinecopulib
```
Or with `mamba`:
```bash
mamba install conda-forge::pyvinecopulib
```
### From source
The main build time prerequisites are:
* scikit-build-core (>=0.4.3),
* nanobind (>=1.3.2),
* a compiler with C++17 support.
To install from source, `Eigen` and `Boost` also need to be available, and CMake will try to find suitable versions automatically.
A reproducible environment, also including requirements for the `pyvinecopulib`'s development and documentation, can be created using:
```bash
mamba create -n pyvinecopulib eigen boost nanobind scikit-build-core numpy pydot networkx matplotlib mypy ruff pytest sphinx-rtd-theme sphinx-autodoc-typehints nbsphinx myst-parser python=3.11
mamba activate pyvinecopulib
```
You can also specify the location if `Eigen` and `Boost` manually using the environment variables `EIGEN3_INCLUDE_DIR` and `Boost_INCLUDE_DIR` respectively.
On Linux, you can install the required packages and set the environment variables as follows:
```bash
sudo apt-get install libeigen3-dev libboost-all-dev
export Boost_INCLUDE_DIR=/usr/include
export EIGEN3_INCLUDE_DIR=/usr/include/eigen3
```
Then, just clone this repository and do `pip install`.
Note the `--recursive` option which is needed for the `vinecopulib` and `wdm` submodules:
```bash
git clone --recursive https://github.com/vinecopulib/pyvinecopulib.git
pip install ./pyvinecopulib
```
### Building the documentation
Documentation for the example project is generated using Sphinx and the "Read the Docs" theme.
The following command generates HTML-based reference documentation; for other
formats please refer to the Sphinx manual:
* `pip install sphinx-rtd-theme sphinx-autodoc-typehints nbsphinx recommonmark`
* `cd pyvinecopulib/docs`
* `python serve_sphinx.py`
Raw data
{
"_id": null,
"home_page": null,
"name": "pyvinecopulib",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "copula, vines copulas, pair-copulas constructions",
"author": null,
"author_email": "Thibault Vatter <info@vinecopulib.com>, Thomas Nagler <info@vinecopulib.com>",
"download_url": "https://files.pythonhosted.org/packages/af/34/d21555ab1efa08612e1cb9eaa550477c78f2048244493e67fa8a37ac1e08/pyvinecopulib-0.7.0.tar.gz",
"platform": null,
"description": "# pyvinecopulib\n\n[![Documentation](https://img.shields.io/website/http/vinecopulib.github.io/pyvinecopulib.svg)](https://vinecopulib.github.io/pyvinecopulib/)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n[![Build Status](https://github.com/vinecopulib/pyvinecopulib/actions/workflows/pypi.yml/badge.svg)](https://github.com/vinecopulib/pyvinecopulib/actions/workflows/pypi.yml)\n[![Codacy Badge](https://api.codacy.com/project/badge/Grade/3c0056d3ca5244a5ba6a2b32f87be4cf)](https://www.codacy.com/gh/vinecopulib/pyvinecopulib?utm_source=github.com&utm_medium=referral&utm_content=vinecopulib/pyvinecopulib&utm_campaign=Badge_Grade)\n[![DOI](https://zenodo.org/badge/196999069.svg)](https://zenodo.org/badge/latestdoi/196999069)\n\n## Introduction\n\n### What are vine copulas?\n\nVine copulas are a flexible class of dependence models consisting of bivariate\nbuilding blocks (see e.g.,\n[Aas et al., 2009](https://mediatum.ub.tum.de/doc/1083600/1083600.pdf)).\nYou can find a comprehensive list of publications and other materials on\n[vine-copula.org](http://vine-copula.org).\n\n### What is pyvinecopulib?\n\n[pyvinecopulib](https://vinecopulib.github.io/pyvinecopulib/) is the python interface to vinecopulib, a header-only C++ library for vine copula models based on\n[Eigen](http://eigen.tuxfamily.org/index.php?title=Main_Page). It provides\nhigh-performance implementations of the core features of the popular\n[VineCopula R library](https://github.com/tnagler/VineCopula), in particular\ninference algorithms for both vine copula and bivariate copula models.\nAdvantages over VineCopula are \n\n* a stand-alone C++ library with interfaces to both R and Python,\n* a sleaker and more modern API,\n* shorter runtimes and lower memory consumption, especially in high dimensions,\n* nonparametric and multi-parameter families.\n\n### License\n\npyvinecopulib is provided under an MIT license that can be found in the LICENSE\nfile. By using, distributing, or contributing to this project, you agree to the\nterms and conditions of this license.\n\n### Contact\n\nIf you have any questions regarding the library, feel free to\n[open an issue](https://github.com/pyvinecopulib/pyvinecopulib/issues/new) or\nsend a mail to <info@vinecopulib.org>.\n\n## Installation\n\n### With pip\n\nThe latest release can be installed using `pip`:\n\n```bash\npip install pyvinecopulib\n```\n\n### With conda\n\nSimilarly, it can be installed with `conda`:\n\n```bash\nconda install conda-forge::pyvinecopulib\n```\n\nOr with `mamba`:\n\n```bash\nmamba install conda-forge::pyvinecopulib\n```\n\n### From source\n\nThe main build time prerequisites are:\n\n* scikit-build-core (>=0.4.3),\n* nanobind (>=1.3.2),\n* a compiler with C++17 support.\n\nTo install from source, `Eigen` and `Boost` also need to be available, and CMake will try to find suitable versions automatically.\nA reproducible environment, also including requirements for the `pyvinecopulib`'s development and documentation, can be created using:\n\n```bash\nmamba create -n pyvinecopulib eigen boost nanobind scikit-build-core numpy pydot networkx matplotlib mypy ruff pytest sphinx-rtd-theme sphinx-autodoc-typehints nbsphinx myst-parser python=3.11\nmamba activate pyvinecopulib\n```\n\nYou can also specify the location if `Eigen` and `Boost` manually using the environment variables `EIGEN3_INCLUDE_DIR` and `Boost_INCLUDE_DIR` respectively.\nOn Linux, you can install the required packages and set the environment variables as follows:\n\n```bash\nsudo apt-get install libeigen3-dev libboost-all-dev\nexport Boost_INCLUDE_DIR=/usr/include\nexport EIGEN3_INCLUDE_DIR=/usr/include/eigen3\n```\n\nThen, just clone this repository and do `pip install`.\nNote the `--recursive` option which is needed for the `vinecopulib` and `wdm` submodules:\n\n```bash\ngit clone --recursive https://github.com/vinecopulib/pyvinecopulib.git\npip install ./pyvinecopulib\n```\n\n\n### Building the documentation\n\nDocumentation for the example project is generated using Sphinx and the \"Read the Docs\" theme.\nThe following command generates HTML-based reference documentation; for other\nformats please refer to the Sphinx manual:\n\n* `pip install sphinx-rtd-theme sphinx-autodoc-typehints nbsphinx recommonmark`\n* `cd pyvinecopulib/docs`\n* `python serve_sphinx.py`\n",
"bugtrack_url": null,
"license": "The MIT License (MIT) Copyright \u00a9 2019-2023 Thomas Nagler and Thibault Vatter Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \u201cSoftware\u201d), 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 \u201cAS IS\u201d, 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": "A python interface to vinecopulib",
"version": "0.7.0",
"project_urls": {
"Documentation": "https://vinecopulib.github.io/pyvinecopulib",
"Homepage": "https://github.com/vinecopulib/pyvinecopulib/",
"Issues": "https://github.com/vinecopulib/pyvinecopulib/issues",
"Repository": "https://github.com/vinecopulib/pyvinecopulib.git"
},
"split_keywords": [
"copula",
" vines copulas",
" pair-copulas constructions"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "f89df79773036a58cc35012b055b2090fa21d1dbde52b8f82d587d8ca3ddae83",
"md5": "78a9bf5be5949fe854198d66661c1a7c",
"sha256": "24379872a49b88375b572a7ad767e9a98a2c666aca4d1a5281ed62c694a9cffb"
},
"downloads": -1,
"filename": "pyvinecopulib-0.7.0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "78a9bf5be5949fe854198d66661c1a7c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1363375,
"upload_time": "2025-01-08T12:38:20",
"upload_time_iso_8601": "2025-01-08T12:38:20.260602Z",
"url": "https://files.pythonhosted.org/packages/f8/9d/f79773036a58cc35012b055b2090fa21d1dbde52b8f82d587d8ca3ddae83/pyvinecopulib-0.7.0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bd2d4da02202f317e1207c5f9eda051e62f114b2f39d1a9a3b1e0a471e53cf1e",
"md5": "919e2d1150cdfa8f261d0004c19b1911",
"sha256": "3a35867fe836f8bb5359d6d7ec9e690a1bb03c9a288263335d9d4323933d2407"
},
"downloads": -1,
"filename": "pyvinecopulib-0.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "919e2d1150cdfa8f261d0004c19b1911",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1521352,
"upload_time": "2025-01-08T12:38:21",
"upload_time_iso_8601": "2025-01-08T12:38:21.992307Z",
"url": "https://files.pythonhosted.org/packages/bd/2d/4da02202f317e1207c5f9eda051e62f114b2f39d1a9a3b1e0a471e53cf1e/pyvinecopulib-0.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c591721d2a3148b653f708c2a2b26f54cdbecb955e3d3de1a5027c3bc899d6d7",
"md5": "a276ebe9b3723f91afd036e2891e5c3d",
"sha256": "a979f0c7a2baf3fc52276ebea1f488dce62c1e8cbf2af7cabb8d80ab45888507"
},
"downloads": -1,
"filename": "pyvinecopulib-0.7.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "a276ebe9b3723f91afd036e2891e5c3d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1967306,
"upload_time": "2025-01-08T12:38:24",
"upload_time_iso_8601": "2025-01-08T12:38:24.364594Z",
"url": "https://files.pythonhosted.org/packages/c5/91/721d2a3148b653f708c2a2b26f54cdbecb955e3d3de1a5027c3bc899d6d7/pyvinecopulib-0.7.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "02d0c0c79ba7203dc7cef0bb54e5bc042aedc76094baa270e31d0158b604e6cc",
"md5": "176853350eaeba0a38575046226df336",
"sha256": "4d54b5edee5225d3e0966d4b8bc883cbf22f05981056432bdc09f66260805660"
},
"downloads": -1,
"filename": "pyvinecopulib-0.7.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "176853350eaeba0a38575046226df336",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 1347379,
"upload_time": "2025-01-08T12:38:25",
"upload_time_iso_8601": "2025-01-08T12:38:25.823971Z",
"url": "https://files.pythonhosted.org/packages/02/d0/c0c79ba7203dc7cef0bb54e5bc042aedc76094baa270e31d0158b604e6cc/pyvinecopulib-0.7.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "46b75eff49688992ce2b37f97e4c575917efeb09c74dd53514acc5d2790902c1",
"md5": "6d68abede37a5ac038eac4a31cca8ec9",
"sha256": "fd0bf65a749361cbfbfdc8a826e7a849380980357cf794a79299a5b81c8e61ec"
},
"downloads": -1,
"filename": "pyvinecopulib-0.7.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "6d68abede37a5ac038eac4a31cca8ec9",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1363699,
"upload_time": "2025-01-08T12:38:27",
"upload_time_iso_8601": "2025-01-08T12:38:27.552491Z",
"url": "https://files.pythonhosted.org/packages/46/b7/5eff49688992ce2b37f97e4c575917efeb09c74dd53514acc5d2790902c1/pyvinecopulib-0.7.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d19db0d9eccd73f0d587dd58134d76ee9948e37143274fc752cf0e4bc68902b3",
"md5": "14e308ad98273d345c97b210f4f4a33e",
"sha256": "3c426abe39d1616f16947889b8b6a70696575bd75d28fa623f1e62a7fa7b3d9d"
},
"downloads": -1,
"filename": "pyvinecopulib-0.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "14e308ad98273d345c97b210f4f4a33e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1521599,
"upload_time": "2025-01-08T12:38:29",
"upload_time_iso_8601": "2025-01-08T12:38:29.688629Z",
"url": "https://files.pythonhosted.org/packages/d1/9d/b0d9eccd73f0d587dd58134d76ee9948e37143274fc752cf0e4bc68902b3/pyvinecopulib-0.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "87f21b0fae63d4204052c27682c4483dcd3524424e97bb52efc384461432e2a7",
"md5": "e9de5bce79717a6a27a1c6eed72e00b8",
"sha256": "e9eaf479c079bfd61bbf48ad490de1e805960ce135f06b4140f089e9ad377d58"
},
"downloads": -1,
"filename": "pyvinecopulib-0.7.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "e9de5bce79717a6a27a1c6eed72e00b8",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1968073,
"upload_time": "2025-01-08T12:38:31",
"upload_time_iso_8601": "2025-01-08T12:38:31.098661Z",
"url": "https://files.pythonhosted.org/packages/87/f2/1b0fae63d4204052c27682c4483dcd3524424e97bb52efc384461432e2a7/pyvinecopulib-0.7.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "742bf40c5bd6071414fd2e40c0d12afa72de0e4928fec5f6e6978a1eda65c4ce",
"md5": "0aabf8e1782c029ad30eeeb8d133a90e",
"sha256": "0ded5e757c4785155aa7a3d23eda152d8a02dd4266ce4e5f2a7fd5d8f04cb067"
},
"downloads": -1,
"filename": "pyvinecopulib-0.7.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "0aabf8e1782c029ad30eeeb8d133a90e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 1347741,
"upload_time": "2025-01-08T12:38:32",
"upload_time_iso_8601": "2025-01-08T12:38:32.449715Z",
"url": "https://files.pythonhosted.org/packages/74/2b/f40c5bd6071414fd2e40c0d12afa72de0e4928fec5f6e6978a1eda65c4ce/pyvinecopulib-0.7.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8fc14e032c2df5e64350176b19081a8263fdf7832eb309c0568c463471aa81f7",
"md5": "b116b4dd8583a55ac5ddcf4e0f026329",
"sha256": "01f8465aa82e734c709ce2a730f67629ece452ca374987bb83b13e5e3e72139a"
},
"downloads": -1,
"filename": "pyvinecopulib-0.7.0-cp312-abi3-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "b116b4dd8583a55ac5ddcf4e0f026329",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1355458,
"upload_time": "2025-01-08T12:38:33",
"upload_time_iso_8601": "2025-01-08T12:38:33.878265Z",
"url": "https://files.pythonhosted.org/packages/8f/c1/4e032c2df5e64350176b19081a8263fdf7832eb309c0568c463471aa81f7/pyvinecopulib-0.7.0-cp312-abi3-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9f393376c46ec6b1ed2e54e615640fabf0b16fef6337fb2c641976650dac52a4",
"md5": "91f82e4a43e1492cbaec3c0b98def052",
"sha256": "83fbec8e4ca3e41b821298ffe523297839f91e9f5285e47ba7c7ac992c166a02"
},
"downloads": -1,
"filename": "pyvinecopulib-0.7.0-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "91f82e4a43e1492cbaec3c0b98def052",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1514586,
"upload_time": "2025-01-08T12:38:35",
"upload_time_iso_8601": "2025-01-08T12:38:35.237573Z",
"url": "https://files.pythonhosted.org/packages/9f/39/3376c46ec6b1ed2e54e615640fabf0b16fef6337fb2c641976650dac52a4/pyvinecopulib-0.7.0-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3025996f73d14f218f45cb9f28345f410d1816d099343473be1b0e76bb983918",
"md5": "83403f19cfb26c27db6e4e72957389fc",
"sha256": "8e8afa99fdd5f819d05b356718007437187bdf10b54d54327615c942abcf15c1"
},
"downloads": -1,
"filename": "pyvinecopulib-0.7.0-cp312-abi3-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "83403f19cfb26c27db6e4e72957389fc",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1962317,
"upload_time": "2025-01-08T12:38:36",
"upload_time_iso_8601": "2025-01-08T12:38:36.670052Z",
"url": "https://files.pythonhosted.org/packages/30/25/996f73d14f218f45cb9f28345f410d1816d099343473be1b0e76bb983918/pyvinecopulib-0.7.0-cp312-abi3-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b085149f81a24556cc5abda1f06669ea77e5f6f93367bd17bfe26aca8eb4809f",
"md5": "a89467e1a49bae5c5183c0503baad754",
"sha256": "e0d28ed56c2dacac30515fdf0508069fe7604c8c3f548a75efaa0cbc696c4188"
},
"downloads": -1,
"filename": "pyvinecopulib-0.7.0-cp312-abi3-win_amd64.whl",
"has_sig": false,
"md5_digest": "a89467e1a49bae5c5183c0503baad754",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 1346923,
"upload_time": "2025-01-08T12:38:38",
"upload_time_iso_8601": "2025-01-08T12:38:38.429867Z",
"url": "https://files.pythonhosted.org/packages/b0/85/149f81a24556cc5abda1f06669ea77e5f6f93367bd17bfe26aca8eb4809f/pyvinecopulib-0.7.0-cp312-abi3-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c2550c0d23c1588e1b90b62609a765bde75e8e9e27920c9278f8bdbb776a5574",
"md5": "75ffedf817994929e7a3414bc4ae7cd8",
"sha256": "3e893062c3351eb3498b1ca6e73ede85388b11404cdcc9e6eaca0714d506f47b"
},
"downloads": -1,
"filename": "pyvinecopulib-0.7.0-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "75ffedf817994929e7a3414bc4ae7cd8",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1362516,
"upload_time": "2025-01-08T12:38:39",
"upload_time_iso_8601": "2025-01-08T12:38:39.903761Z",
"url": "https://files.pythonhosted.org/packages/c2/55/0c0d23c1588e1b90b62609a765bde75e8e9e27920c9278f8bdbb776a5574/pyvinecopulib-0.7.0-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cda09e05bb910d3c201914b7215397477564da3ac70d00c241f07671395a5e61",
"md5": "80c7afa4f04f896f4d20bc87acd649b6",
"sha256": "149727b197d19ad3d5f1cec9864c1b47eea554194ec93663350afae9ab9570fb"
},
"downloads": -1,
"filename": "pyvinecopulib-0.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "80c7afa4f04f896f4d20bc87acd649b6",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1520727,
"upload_time": "2025-01-08T12:38:41",
"upload_time_iso_8601": "2025-01-08T12:38:41.311113Z",
"url": "https://files.pythonhosted.org/packages/cd/a0/9e05bb910d3c201914b7215397477564da3ac70d00c241f07671395a5e61/pyvinecopulib-0.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f4fdfe40bd3afb651a7bb2d1ac33fabe06fb239a65ec3f5906197057278ae607",
"md5": "a6f2d90ac6a37df83f1b42cca5d9ee98",
"sha256": "0335c65df8738dea8b57bac93cf9dec004bc2d1514c8b5104b5514eaa131af2b"
},
"downloads": -1,
"filename": "pyvinecopulib-0.7.0-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "a6f2d90ac6a37df83f1b42cca5d9ee98",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1966383,
"upload_time": "2025-01-08T12:38:42",
"upload_time_iso_8601": "2025-01-08T12:38:42.617307Z",
"url": "https://files.pythonhosted.org/packages/f4/fd/fe40bd3afb651a7bb2d1ac33fabe06fb239a65ec3f5906197057278ae607/pyvinecopulib-0.7.0-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a9faf71c1eb5ad30bb0bf91bbab45a98fb90739af93105c87e13efa61ee355c6",
"md5": "20e8701c9522a4dbd4e66555d4fd249a",
"sha256": "5d2b984fac21998843f193594fab76901461fa6dde95a73fd739089c7e9f2df3"
},
"downloads": -1,
"filename": "pyvinecopulib-0.7.0-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "20e8701c9522a4dbd4e66555d4fd249a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 1347305,
"upload_time": "2025-01-08T12:38:44",
"upload_time_iso_8601": "2025-01-08T12:38:44.139172Z",
"url": "https://files.pythonhosted.org/packages/a9/fa/f71c1eb5ad30bb0bf91bbab45a98fb90739af93105c87e13efa61ee355c6/pyvinecopulib-0.7.0-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5a0f7e873bef6654e61c9d08331d8e0e76f6c392ad98a7c14c024f92d6a1a948",
"md5": "f3c2619dc9c6dcde0b199279835abc80",
"sha256": "ba3ca15104d9aeba26a869d605eb5a324a8a557387718e845f1570d4d1253a13"
},
"downloads": -1,
"filename": "pyvinecopulib-0.7.0-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "f3c2619dc9c6dcde0b199279835abc80",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1363523,
"upload_time": "2025-01-08T12:38:47",
"upload_time_iso_8601": "2025-01-08T12:38:47.002675Z",
"url": "https://files.pythonhosted.org/packages/5a/0f/7e873bef6654e61c9d08331d8e0e76f6c392ad98a7c14c024f92d6a1a948/pyvinecopulib-0.7.0-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "013a0af4c0e9b14ec13bd11f9e5a904da888c47db545704de1e2042e498836be",
"md5": "139b4a6e5cc10561a5dbb2eeae597b46",
"sha256": "9a4923b7d2ed71f2300a489fbbbe6ccd46580d92da1ad6163a970c05dc4c88ce"
},
"downloads": -1,
"filename": "pyvinecopulib-0.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "139b4a6e5cc10561a5dbb2eeae597b46",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1521446,
"upload_time": "2025-01-08T12:38:48",
"upload_time_iso_8601": "2025-01-08T12:38:48.268106Z",
"url": "https://files.pythonhosted.org/packages/01/3a/0af4c0e9b14ec13bd11f9e5a904da888c47db545704de1e2042e498836be/pyvinecopulib-0.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "639161fce3c93fcc8a4fd636fada8338b0b24c9718fda8e79e977b982c14cae1",
"md5": "265aafc603e3140c96410d11d67d58d8",
"sha256": "35a65777c8506767fe04c7da91da67b1c3dce374084d99b11595392f38a85bc4"
},
"downloads": -1,
"filename": "pyvinecopulib-0.7.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "265aafc603e3140c96410d11d67d58d8",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1967748,
"upload_time": "2025-01-08T12:38:49",
"upload_time_iso_8601": "2025-01-08T12:38:49.768725Z",
"url": "https://files.pythonhosted.org/packages/63/91/61fce3c93fcc8a4fd636fada8338b0b24c9718fda8e79e977b982c14cae1/pyvinecopulib-0.7.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2f8928a8721fbe70dd5e03054614eed835c35250ebcbf3e6859682b976d735d5",
"md5": "b78b381fe1a0dc262c961585ef113e17",
"sha256": "16ee168d1e6c5dde334570d860ca2810c77b74f81b9a1e41b8ef521af57a119c"
},
"downloads": -1,
"filename": "pyvinecopulib-0.7.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "b78b381fe1a0dc262c961585ef113e17",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 1347676,
"upload_time": "2025-01-08T12:38:51",
"upload_time_iso_8601": "2025-01-08T12:38:51.118972Z",
"url": "https://files.pythonhosted.org/packages/2f/89/28a8721fbe70dd5e03054614eed835c35250ebcbf3e6859682b976d735d5/pyvinecopulib-0.7.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "af34d21555ab1efa08612e1cb9eaa550477c78f2048244493e67fa8a37ac1e08",
"md5": "f2d78e69c8794176c217ff7eb40a494e",
"sha256": "00cb8a6a54d35c732c5051be2624dba91672077fdcf7a44f39116fffd11adbc8"
},
"downloads": -1,
"filename": "pyvinecopulib-0.7.0.tar.gz",
"has_sig": false,
"md5_digest": "f2d78e69c8794176c217ff7eb40a494e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 1520639,
"upload_time": "2025-01-08T12:38:53",
"upload_time_iso_8601": "2025-01-08T12:38:53.460851Z",
"url": "https://files.pythonhosted.org/packages/af/34/d21555ab1efa08612e1cb9eaa550477c78f2048244493e67fa8a37ac1e08/pyvinecopulib-0.7.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-01-08 12:38:53",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "vinecopulib",
"github_project": "pyvinecopulib",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "pyvinecopulib"
}