odrpack


Nameodrpack JSON
Version 0.3.5 PyPI version JSON
download
home_pageNone
SummaryPackage for weighted orthogonal distance regression (ODR).
upload_time2025-09-05 21:23:28
maintainerNone
docs_urlNone
authorNone
requires_python>=3.10
licenseMIT License Copyright (c) 2025 HugoMVale 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 regression statistics mathematics
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # odrpack (-python)

[![Test-Linux](https://github.com/HugoMVale/odrpack-python/actions/workflows/test-linux.yml/badge.svg)](https://github.com/HugoMVale/odrpack-python/actions)
[![codecov](https://codecov.io/gh/HugoMVale/odrpack-python/graph/badge.svg?token=B9sFyJiweC)](https://codecov.io/gh/HugoMVale/odrpack-python)
[![Latest Commit](https://img.shields.io/github/last-commit/HugoMVale/odrpack-python)](https://img.shields.io/github/last-commit/HugoMVale/odrpack-python)
![PyPI - Downloads](https://img.shields.io/pypi/dm/odrpack?label=PyPI%20downloads)
[![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/HugoMVale/odrpack-python)

## Description

This Python package provides bindings for the well-known weighted orthogonal distance regression
(ODR) solver [odrpack95]. This design ensures that users benefit from the performance and reliability
of the original Fortran implementation, while working within the modern Python ecosystem.  

ODR, also known as [errors-in-variables regression], is designed primarily for instances when both
the explanatory and response variables have significant errors. 

<p align="center">
  <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/Total_least_squares.svg/220px-Total_least_squares.svg.png" width="250" alt="Deming regression; special case of ODR." style="margin-right: 10px;">
</p>

[errors-in-variables regression]: https://en.wikipedia.org/wiki/Errors-in-variables_models
[odrpack95]: https://github.com/HugoMVale/odrpack95


## Installation

You can install the package via pip:

```sh
pip install odrpack
```

## Documentation and Usage

The following example demonstrates a simple use of the package. For more comprehensive examples and explanations, please refer to the [documentation](https://hugomvale.github.io/odrpack-python/) pages.

```py
from odrpack import odr_fit
import numpy as np

xdata = np.array([0.982, 1.998, 4.978, 6.01])
ydata = np.array([2.7, 7.4, 148.0, 403.0])

beta0 = np.array([2.0, 0.5])
bounds = (np.array([0.0, 0.0]), np.array([10.0, 0.9]))

def f(x: np.ndarray, beta: np.ndarray) -> np.ndarray:
    "Model function."
    return beta[0] * np.exp(beta[1]*x)

sol = odr_fit(f, xdata, ydata, beta0, bounds=bounds)

print("beta:", sol.beta)
print("delta:", sol.delta)
```

```sh
beta: [1.63336897 0.9       ]
delta: [-0.36885696 -0.31272648  0.02929022  0.11031872]
```

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "odrpack",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": "regression, statistics, mathematics",
    "author": null,
    "author_email": "Hugo Vale <57530119+HugoMVale@users.noreply.github.com>",
    "download_url": "https://files.pythonhosted.org/packages/2d/7c/df8af775da9c189e5841c12dfd2b36fc711730cdf86e323134c674a870b9/odrpack-0.3.5.tar.gz",
    "platform": null,
    "description": "# odrpack (-python)\n\n[![Test-Linux](https://github.com/HugoMVale/odrpack-python/actions/workflows/test-linux.yml/badge.svg)](https://github.com/HugoMVale/odrpack-python/actions)\n[![codecov](https://codecov.io/gh/HugoMVale/odrpack-python/graph/badge.svg?token=B9sFyJiweC)](https://codecov.io/gh/HugoMVale/odrpack-python)\n[![Latest Commit](https://img.shields.io/github/last-commit/HugoMVale/odrpack-python)](https://img.shields.io/github/last-commit/HugoMVale/odrpack-python)\n![PyPI - Downloads](https://img.shields.io/pypi/dm/odrpack?label=PyPI%20downloads)\n[![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/HugoMVale/odrpack-python)\n\n## Description\n\nThis Python package provides bindings for the well-known weighted orthogonal distance regression\n(ODR) solver [odrpack95]. This design ensures that users benefit from the performance and reliability\nof the original Fortran implementation, while working within the modern Python ecosystem.  \n\nODR, also known as [errors-in-variables regression], is designed primarily for instances when both\nthe explanatory and response variables have significant errors. \n\n<p align=\"center\">\n  <img src=\"https://upload.wikimedia.org/wikipedia/commons/thumb/8/81/Total_least_squares.svg/220px-Total_least_squares.svg.png\" width=\"250\" alt=\"Deming regression; special case of ODR.\" style=\"margin-right: 10px;\">\n</p>\n\n[errors-in-variables regression]: https://en.wikipedia.org/wiki/Errors-in-variables_models\n[odrpack95]: https://github.com/HugoMVale/odrpack95\n\n\n## Installation\n\nYou can install the package via pip:\n\n```sh\npip install odrpack\n```\n\n## Documentation and Usage\n\nThe following example demonstrates a simple use of the package. For more comprehensive examples and explanations, please refer to the [documentation](https://hugomvale.github.io/odrpack-python/) pages.\n\n```py\nfrom odrpack import odr_fit\nimport numpy as np\n\nxdata = np.array([0.982, 1.998, 4.978, 6.01])\nydata = np.array([2.7, 7.4, 148.0, 403.0])\n\nbeta0 = np.array([2.0, 0.5])\nbounds = (np.array([0.0, 0.0]), np.array([10.0, 0.9]))\n\ndef f(x: np.ndarray, beta: np.ndarray) -> np.ndarray:\n    \"Model function.\"\n    return beta[0] * np.exp(beta[1]*x)\n\nsol = odr_fit(f, xdata, ydata, beta0, bounds=bounds)\n\nprint(\"beta:\", sol.beta)\nprint(\"delta:\", sol.delta)\n```\n\n```sh\nbeta: [1.63336897 0.9       ]\ndelta: [-0.36885696 -0.31272648  0.02929022  0.11031872]\n```\n",
    "bugtrack_url": null,
    "license": "MIT License\n         \n         Copyright (c) 2025 HugoMVale\n         \n         Permission is hereby granted, free of charge, to any person obtaining a copy\n         of this software and associated documentation files (the \"Software\"), to deal\n         in the Software without restriction, including without limitation the rights\n         to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n         copies of the Software, and to permit persons to whom the Software is\n         furnished to do so, subject to the following conditions:\n         \n         The above copyright notice and this permission notice shall be included in all\n         copies or substantial portions of the Software.\n         \n         THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n         IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n         FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n         AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n         LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n         OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n         SOFTWARE.\n         ",
    "summary": "Package for weighted orthogonal distance regression (ODR).",
    "version": "0.3.5",
    "project_urls": {
        "Documentation": "https://hugomvale.github.io/odrpack-python/",
        "Repository": "https://github.com/HugoMVale/odrpack-python"
    },
    "split_keywords": [
        "regression",
        " statistics",
        " mathematics"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dd5d834b73f37b55e275374e90c4ba06db3362d59443a81cfe68d80ff9c981d8",
                "md5": "d9502fab411d25d0e157127cd8b93546",
                "sha256": "06b97426eb9b419b9057661ca22b1ce5b35f7a06296768c6aaef00866af8ba07"
            },
            "downloads": -1,
            "filename": "odrpack-0.3.5-cp310-cp310-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d9502fab411d25d0e157127cd8b93546",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 2642107,
            "upload_time": "2025-09-05T21:22:50",
            "upload_time_iso_8601": "2025-09-05T21:22:50.062704Z",
            "url": "https://files.pythonhosted.org/packages/dd/5d/834b73f37b55e275374e90c4ba06db3362d59443a81cfe68d80ff9c981d8/odrpack-0.3.5-cp310-cp310-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "640d23777451f2776df7eeff8d0896f2678088ed549dd8f81556bf308d0c02e9",
                "md5": "cb1fd890de2c5624c10e91f7571c6d17",
                "sha256": "5462bb472757ff827f7c6536ef5fab3d2bb542df5b084f13f542831d72f6ef8b"
            },
            "downloads": -1,
            "filename": "odrpack-0.3.5-cp310-cp310-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cb1fd890de2c5624c10e91f7571c6d17",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 1921723,
            "upload_time": "2025-09-05T21:22:51",
            "upload_time_iso_8601": "2025-09-05T21:22:51.909359Z",
            "url": "https://files.pythonhosted.org/packages/64/0d/23777451f2776df7eeff8d0896f2678088ed549dd8f81556bf308d0c02e9/odrpack-0.3.5-cp310-cp310-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3ac44b75214850e91148269770948332b8c2aecc1014c58856598998b23eec3d",
                "md5": "172a6af977ad345e9c58f49a536cf1b3",
                "sha256": "842018760d9603588710c41c01ceafbd45e12cc64773584001113bba405a931a"
            },
            "downloads": -1,
            "filename": "odrpack-0.3.5-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "172a6af977ad345e9c58f49a536cf1b3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 12154063,
            "upload_time": "2025-09-05T21:22:53",
            "upload_time_iso_8601": "2025-09-05T21:22:53.550453Z",
            "url": "https://files.pythonhosted.org/packages/3a/c4/4b75214850e91148269770948332b8c2aecc1014c58856598998b23eec3d/odrpack-0.3.5-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "82abb48d597edc10155aa6392fcfc3f42e4c2e49433d9c86730f2f730cabfd74",
                "md5": "648693526d2ca849209dc9e5490886fd",
                "sha256": "22fe837b7f20b74675df2c845b63659d5ca7da0216f780de8f493c6fac5f7dd5"
            },
            "downloads": -1,
            "filename": "odrpack-0.3.5-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "648693526d2ca849209dc9e5490886fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 12618858,
            "upload_time": "2025-09-05T21:22:55",
            "upload_time_iso_8601": "2025-09-05T21:22:55.621171Z",
            "url": "https://files.pythonhosted.org/packages/82/ab/b48d597edc10155aa6392fcfc3f42e4c2e49433d9c86730f2f730cabfd74/odrpack-0.3.5-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5f145103f642e9ef6fd8decd0d5ef6a61123d71e3ee037b54acb5f02040792e7",
                "md5": "3bfbec12a37f505aa9a45d1f47945be0",
                "sha256": "e7f80744ed14957abb25496ef3d37ba94377166e90bd2512f515679447f39905"
            },
            "downloads": -1,
            "filename": "odrpack-0.3.5-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3bfbec12a37f505aa9a45d1f47945be0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 17389004,
            "upload_time": "2025-09-05T21:22:57",
            "upload_time_iso_8601": "2025-09-05T21:22:57.799296Z",
            "url": "https://files.pythonhosted.org/packages/5f/14/5103f642e9ef6fd8decd0d5ef6a61123d71e3ee037b54acb5f02040792e7/odrpack-0.3.5-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fd0dbda5edecb6a468d6be6e266c10ad6439f1b1ce1f3b13a5f6da216fc7ff1c",
                "md5": "8d362bd7b431e8ab3fa26d5e0bc4a206",
                "sha256": "2a0bc0e635e30bb4f8d14527a284bb387f41cb8299315c4610713a783621d65b"
            },
            "downloads": -1,
            "filename": "odrpack-0.3.5-cp311-cp311-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8d362bd7b431e8ab3fa26d5e0bc4a206",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 2641881,
            "upload_time": "2025-09-05T21:23:00",
            "upload_time_iso_8601": "2025-09-05T21:23:00.166901Z",
            "url": "https://files.pythonhosted.org/packages/fd/0d/bda5edecb6a468d6be6e266c10ad6439f1b1ce1f3b13a5f6da216fc7ff1c/odrpack-0.3.5-cp311-cp311-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9174cfcabcccf87cd10e5586dfaff8d2faff475dce22956a90969c07b38aefe2",
                "md5": "88e41c2388e1a2a2e08ddfdb4e7987af",
                "sha256": "383853ae1adbcbaa388dcb88f8397005aed086498517c0cced25bb033cc24782"
            },
            "downloads": -1,
            "filename": "odrpack-0.3.5-cp311-cp311-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "88e41c2388e1a2a2e08ddfdb4e7987af",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 1921553,
            "upload_time": "2025-09-05T21:23:01",
            "upload_time_iso_8601": "2025-09-05T21:23:01.862918Z",
            "url": "https://files.pythonhosted.org/packages/91/74/cfcabcccf87cd10e5586dfaff8d2faff475dce22956a90969c07b38aefe2/odrpack-0.3.5-cp311-cp311-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f4501a688ce18ac98e8c4db681f3fc4da2f222b0938cc9f5c0b888d93dd4c94a",
                "md5": "12a248e06e6d96af2c9821147b611e07",
                "sha256": "975e03d7d41677f36d99bf8890a86bd1427d2f199bc006c95083eb6ce669b446"
            },
            "downloads": -1,
            "filename": "odrpack-0.3.5-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "12a248e06e6d96af2c9821147b611e07",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 12153918,
            "upload_time": "2025-09-05T21:23:03",
            "upload_time_iso_8601": "2025-09-05T21:23:03.315353Z",
            "url": "https://files.pythonhosted.org/packages/f4/50/1a688ce18ac98e8c4db681f3fc4da2f222b0938cc9f5c0b888d93dd4c94a/odrpack-0.3.5-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "024716805012841ad6a0e4f6ecb5a1a758e655630fa7c0d4623d38267f9de669",
                "md5": "b3157dd3d6242a89a251cc402290b33e",
                "sha256": "763aef2b8369509651242f4b2e74df5b63a0dbe5c8f2604231a716c589944f55"
            },
            "downloads": -1,
            "filename": "odrpack-0.3.5-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b3157dd3d6242a89a251cc402290b33e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 12618664,
            "upload_time": "2025-09-05T21:23:05",
            "upload_time_iso_8601": "2025-09-05T21:23:05.609719Z",
            "url": "https://files.pythonhosted.org/packages/02/47/16805012841ad6a0e4f6ecb5a1a758e655630fa7c0d4623d38267f9de669/odrpack-0.3.5-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9e00779e86047777152f65bcc820ac55f1087cf1e17cc1bc2eac7c1b03fdd180",
                "md5": "e78a348b6525dc8be01b3f22f4652829",
                "sha256": "9f60eb69d99f19a584f95fdbffa3ee888eedc469e4acd3663afb1e499aa22e4c"
            },
            "downloads": -1,
            "filename": "odrpack-0.3.5-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e78a348b6525dc8be01b3f22f4652829",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 17389281,
            "upload_time": "2025-09-05T21:23:07",
            "upload_time_iso_8601": "2025-09-05T21:23:07.711047Z",
            "url": "https://files.pythonhosted.org/packages/9e/00/779e86047777152f65bcc820ac55f1087cf1e17cc1bc2eac7c1b03fdd180/odrpack-0.3.5-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "85e5b67c51dc61e1c121e95158ea23c6763e3327cd28a0f3687f4431eae2700e",
                "md5": "6dffc5544d5cf8012192690f15073b25",
                "sha256": "9c4bfcfb1c09259be70d2b7b8ace75fd396ab57d816f37125ca82f86543bc14d"
            },
            "downloads": -1,
            "filename": "odrpack-0.3.5-cp312-cp312-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6dffc5544d5cf8012192690f15073b25",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 2641647,
            "upload_time": "2025-09-05T21:23:10",
            "upload_time_iso_8601": "2025-09-05T21:23:10.078689Z",
            "url": "https://files.pythonhosted.org/packages/85/e5/b67c51dc61e1c121e95158ea23c6763e3327cd28a0f3687f4431eae2700e/odrpack-0.3.5-cp312-cp312-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "265cfb7caa14cb2d0c6483fa105846cfc2ae50cc721fc2e0bf5383a5d0476bd4",
                "md5": "3b845994a94ddc85e23728db69c1f15a",
                "sha256": "5a9a7e6391d3bf4347e2d899a538111bcc4b732e736847986792500d75905470"
            },
            "downloads": -1,
            "filename": "odrpack-0.3.5-cp312-cp312-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3b845994a94ddc85e23728db69c1f15a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 1920866,
            "upload_time": "2025-09-05T21:23:11",
            "upload_time_iso_8601": "2025-09-05T21:23:11.415077Z",
            "url": "https://files.pythonhosted.org/packages/26/5c/fb7caa14cb2d0c6483fa105846cfc2ae50cc721fc2e0bf5383a5d0476bd4/odrpack-0.3.5-cp312-cp312-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2e3303f956c4bdbf63bd1dac55e6fd4885bb4c7805d637a57a68d1d7f3aded5f",
                "md5": "c41fd20be8d4f532c6e39e0078312de9",
                "sha256": "67faa7afa44371150bc10c71b8ca2b71f8a82affbc283709306584c858cdb4b2"
            },
            "downloads": -1,
            "filename": "odrpack-0.3.5-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c41fd20be8d4f532c6e39e0078312de9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 12153461,
            "upload_time": "2025-09-05T21:23:12",
            "upload_time_iso_8601": "2025-09-05T21:23:12.903126Z",
            "url": "https://files.pythonhosted.org/packages/2e/33/03f956c4bdbf63bd1dac55e6fd4885bb4c7805d637a57a68d1d7f3aded5f/odrpack-0.3.5-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6121c012ba645d59c00791a792001746e47d6fc913443bbd66d151e81339ea39",
                "md5": "7515bca8c44d51e768b231b5b7572313",
                "sha256": "f8a1ca8ed45e3fdd256c7e806917348f064ca7352143e07b950c83f3ceb029d4"
            },
            "downloads": -1,
            "filename": "odrpack-0.3.5-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7515bca8c44d51e768b231b5b7572313",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 12617922,
            "upload_time": "2025-09-05T21:23:14",
            "upload_time_iso_8601": "2025-09-05T21:23:14.770993Z",
            "url": "https://files.pythonhosted.org/packages/61/21/c012ba645d59c00791a792001746e47d6fc913443bbd66d151e81339ea39/odrpack-0.3.5-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "35f29d73c20d9273d17c2f662b6fa7a4673c332cea81a26af3a4fc3958d51128",
                "md5": "761d38482f029d7dc4cb9cd57ca52a13",
                "sha256": "d80fb4a24ae99c928a74a594c4e9cace963383902b375a4c0719c5ec4a133cbb"
            },
            "downloads": -1,
            "filename": "odrpack-0.3.5-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "761d38482f029d7dc4cb9cd57ca52a13",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 17387664,
            "upload_time": "2025-09-05T21:23:16",
            "upload_time_iso_8601": "2025-09-05T21:23:16.686672Z",
            "url": "https://files.pythonhosted.org/packages/35/f2/9d73c20d9273d17c2f662b6fa7a4673c332cea81a26af3a4fc3958d51128/odrpack-0.3.5-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "314c139f1a6f03c93bc3405128dc7657831a7546bb85c1747a5d30b4903ec735",
                "md5": "a15e90e97233599e3da02a1cddef435b",
                "sha256": "b4786dd0fb17c1b28572c75cc69f9c33de591d52eeaa2089582ae4285abe58d7"
            },
            "downloads": -1,
            "filename": "odrpack-0.3.5-cp313-cp313-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a15e90e97233599e3da02a1cddef435b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 2641590,
            "upload_time": "2025-09-05T21:23:18",
            "upload_time_iso_8601": "2025-09-05T21:23:18.794730Z",
            "url": "https://files.pythonhosted.org/packages/31/4c/139f1a6f03c93bc3405128dc7657831a7546bb85c1747a5d30b4903ec735/odrpack-0.3.5-cp313-cp313-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "41b8d2efa6b52c79b9548f3243d21a3e77f6cd65730e315460728e68e4c80507",
                "md5": "de9aba7143c5b898af5fa021ab8c2b0e",
                "sha256": "7b2c123fffa76b34e8c45bb541199661e6f2ab657c983590b695edac1be699f7"
            },
            "downloads": -1,
            "filename": "odrpack-0.3.5-cp313-cp313-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "de9aba7143c5b898af5fa021ab8c2b0e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 1920892,
            "upload_time": "2025-09-05T21:23:20",
            "upload_time_iso_8601": "2025-09-05T21:23:20.195252Z",
            "url": "https://files.pythonhosted.org/packages/41/b8/d2efa6b52c79b9548f3243d21a3e77f6cd65730e315460728e68e4c80507/odrpack-0.3.5-cp313-cp313-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aeb9c186382cf07298e78653cdf2ca67bef9b311dfcc3c70fe4398e552cfe61d",
                "md5": "85fdca56c798732ec6a9724984128c73",
                "sha256": "1dadb9a4f5bbb6975d0adf7057c2c721911c2c3f0f1e4f2d5dd9687425ae9450"
            },
            "downloads": -1,
            "filename": "odrpack-0.3.5-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "85fdca56c798732ec6a9724984128c73",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 12153470,
            "upload_time": "2025-09-05T21:23:21",
            "upload_time_iso_8601": "2025-09-05T21:23:21.718862Z",
            "url": "https://files.pythonhosted.org/packages/ae/b9/c186382cf07298e78653cdf2ca67bef9b311dfcc3c70fe4398e552cfe61d/odrpack-0.3.5-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "490ff5bedd339056ca6e45e5c19127c80cffce409ba4d2bf312383e11d078633",
                "md5": "059a58ffdd325105d3f3f4a45dd6055c",
                "sha256": "62c5b5c8eba1510db737f9fb9fd652e13921b09a9f785767106f7def0c19d0ab"
            },
            "downloads": -1,
            "filename": "odrpack-0.3.5-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "059a58ffdd325105d3f3f4a45dd6055c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 12617999,
            "upload_time": "2025-09-05T21:23:23",
            "upload_time_iso_8601": "2025-09-05T21:23:23.747541Z",
            "url": "https://files.pythonhosted.org/packages/49/0f/f5bedd339056ca6e45e5c19127c80cffce409ba4d2bf312383e11d078633/odrpack-0.3.5-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6136fb4951af4c6ac478d0ca0b289e161f150972fadae6d68252a43ec63301da",
                "md5": "055446294abec4e2d9bb26047447827b",
                "sha256": "72b93171568556603d1e8453b05b4d0c91c521b1818884f51235263551270222"
            },
            "downloads": -1,
            "filename": "odrpack-0.3.5-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "055446294abec4e2d9bb26047447827b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.10",
            "size": 17387893,
            "upload_time": "2025-09-05T21:23:26",
            "upload_time_iso_8601": "2025-09-05T21:23:26.065004Z",
            "url": "https://files.pythonhosted.org/packages/61/36/fb4951af4c6ac478d0ca0b289e161f150972fadae6d68252a43ec63301da/odrpack-0.3.5-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2d7cdf8af775da9c189e5841c12dfd2b36fc711730cdf86e323134c674a870b9",
                "md5": "330fb01512855aaec2536c83fddb207f",
                "sha256": "9011a626c0b1d7aa7dacf1b93f7d27d14c748a60700a333bc5db9e37ba2046f4"
            },
            "downloads": -1,
            "filename": "odrpack-0.3.5.tar.gz",
            "has_sig": false,
            "md5_digest": "330fb01512855aaec2536c83fddb207f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 107695,
            "upload_time": "2025-09-05T21:23:28",
            "upload_time_iso_8601": "2025-09-05T21:23:28.090998Z",
            "url": "https://files.pythonhosted.org/packages/2d/7c/df8af775da9c189e5841c12dfd2b36fc711730cdf86e323134c674a870b9/odrpack-0.3.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-09-05 21:23:28",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "HugoMVale",
    "github_project": "odrpack-python",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "odrpack"
}
        
Elapsed time: 0.48855s