pyxirr


Namepyxirr JSON
Version 0.10.8 PyPI version JSON
download
home_pagehttps://github.com/Anexen/pyxirr
SummaryRust-powered collection of financial functions for Python.
upload_time2025-11-03 22:16:19
maintainerNone
docs_urlNone
authorAnexen
requires_python>=3.7
licenseUnlicense
keywords python fast financial xirr cashflow day count convention pme
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![rust-lang.org](https://img.shields.io/badge/Made%20with-Rust-red)](https://www.rust-lang.org/)
[![License](https://img.shields.io/github/license/Anexen/pyxirr.svg)](https://github.com/Anexen/pyxirr/blob/master/LICENSE)
[![pypi](https://img.shields.io/pypi/v/pyxirr.svg)](https://pypi.org/project/pyxirr/)
[![versions](https://img.shields.io/pypi/pyversions/pyxirr.svg)](https://pypi.org/project/pyxirr/)

# PyXIRR

Rust-powered collection of financial functions.

PyXIRR stands for "Python XIRR" (for historical reasons), but contains many other financial functions such as IRR, FV, NPV, etc.

Features:

- correct
- supports different day count conventions (e.g. ACT/360, 30E/360, etc.)
- works with different input data types (iterators, numpy arrays, pandas DataFrames)
- no external dependencies
- type annotations
- blazingly fast

# Installation

```
pip install pyxirr
```

> WASM wheels for [pyodide](https://github.com/pyodide/pyodide) are also available,
> but unfortunately are [not supported by PyPI](https://github.com/pypi/warehouse/issues/10416).
> You can find them on the [GitHub Releases](https://github.com/Anexen/pyxirr/releases) page.

# Benchmarks

Rust implementation has been tested against existing [xirr](https://pypi.org/project/xirr/) package
(uses [scipy.optimize](https://docs.scipy.org/doc/scipy/reference/generated/scipy.optimize.newton.html) under the hood)
and the [implementation from the Stack Overflow](https://stackoverflow.com/a/11503492) (pure python).

![bench](https://raw.githubusercontent.com/Anexen/pyxirr/main/docs/static/bench.png)

PyXIRR is much faster than the other implementations.

Powered by [github-action-benchmark](https://github.com/benchmark-action/github-action-benchmark) and [plotly.js](https://github.com/plotly/plotly.js).

Live benchmarks are hosted on [Github Pages](https://anexen.github.io/pyxirr/bench).

# Example

```python
from datetime import date
from pyxirr import xirr

dates = [date(2020, 1, 1), date(2021, 1, 1), date(2022, 1, 1)]
amounts = [-1000, 750, 500]

# feed columnar data
xirr(dates, amounts)
# feed iterators
xirr(iter(dates), (x / 2 for x in amounts))
# feed an iterable of tuples
xirr(zip(dates, amounts))
# feed a dictionary
xirr(dict(zip(dates, amounts)))
# dates as strings
xirr(['2020-01-01', '2021-01-01'], [-1000, 1200])
```

# Multiple IRR problem

The Multiple IRR problem occurs when the signs of cash flows change more than
once. In this case, we say that the project has non-conventional cash flows.
This leads to situation, where it can have more the one IRR or have no IRR at all.

PyXIRR addresses the Multiple IRR problem as follows:

1. It looks for positive result around 0.1 (the same as Excel with the default guess=0.1).
2. If it can't find a result, it uses several other attempts and selects the lowest IRR to be conservative.

Here is an example illustrating how to identify multiple IRRs:

```python
import numpy as np
import pyxirr

# load cash flow:
cf = pd.read_csv("tests/samples/30-22.csv", names=["date", "amount"])
# check whether the cash flow is conventional:
print(pyxirr.is_conventional_cash_flow(cf["amount"]))  # false

# build NPV profile:
# calculate 50 NPV values for different rates
rates = np.linspace(-0.5, 0.5, 50)
# any iterable, any rates, e.g.
# rates = [-0.5, -0.3, -0.1, 0.1, -0.6]
values = pyxirr.xnpv(rates, cf)

# print NPV profile:
# NPV changes sign two times:
#   1) between -0.316 and -0.295
#   2) between -0.03 and -0.01
print("NPV profile:")
for rate, value in zip(rates, values):
    print(rate, value)

# plot NPV profile
import pandas as pd
series = pd.Series(values, index=rates)
pd.DataFrame(series[series > -1e6]).assign(zero=0).plot()

# find points where NPV function crosses zero
indexes = pyxirr.zero_crossing_points(values)

print("Zero crossing points:")
for idx in indexes:
    print("between", rates[idx], "and", rates[idx+1])

# XIRR has two results:
#   -0.31540826742734207
#   -0.028668460065441048
for i, idx in enumerate(indexes, start=1):
    rate = pyxirr.xirr(cf, guess=rates[idx])
    npv = pyxirr.xnpv(rate, cf)
    print(f"{i}) {rate}; XNPV = {npv}")
```

# More Examples

### Numpy and Pandas

```python
import numpy as np
import pandas as pd

# feed numpy array
xirr(np.array([dates, amounts]))
xirr(np.array(dates), np.array(amounts))

# feed DataFrame (columns names doesn't matter; ordering matters)
xirr(pd.DataFrame({"a": dates, "b": amounts}))

# feed Series with DatetimeIndex
xirr(pd.Series(amounts, index=pd.to_datetime(dates)))

# bonus: apply xirr to a DataFrame with DatetimeIndex:
df = pd.DataFrame(
    index=pd.date_range("2021", "2022", freq="MS", inclusive="left"),
    data={
        "one": [-100] + [20] * 11,
        "two": [-80] + [19] * 11,
    },
)
df.apply(xirr)  # Series(index=["one", "two"], data=[5.09623547168478, 8.780801977141174])
```

### Day count conventions

Check out the available options on the [docs/day-count-conventions](https://anexen.github.io/pyxirr/functions.html#day-count-conventions).

```python
from pyxirr import DayCount

xirr(dates, amounts, day_count=DayCount.ACT_360)

# parse day count from string
xirr(dates, amounts, day_count="30E/360")
```

### Private equity performance metrics

```python
from pyxirr import pe

pe.pme_plus([-20, 15, 0], index=[100, 115, 130], nav=20)

pe.direct_alpha([-20, 15, 0], index=[100, 115, 130], nav=20)
```

[Docs](https://anexen.github.io/pyxirr/private_equity.html)

### Other financial functions

```python
import pyxirr

# Future Value
pyxirr.fv(0.05/12, 10*12, -100, -100)

# Net Present Value
pyxirr.npv(0, [-40_000, 5_000, 8_000, 12_000, 30_000])

# IRR
pyxirr.irr([-100, 39, 59, 55, 20])

# ... and more! Check out the docs.
```

[Docs](https://anexen.github.io/pyxirr/functions.html)

### Vectorization

PyXIRR supports numpy-like vectorization.

If all input is scalar, returns a scalar float. If any input is array_like,
returns values for each input element. If multiple inputs are
array_like, performs broadcasting and returns values for each element.

```python
import pyxirr

# feed list
pyxirr.fv([0.05/12, 0.06/12], 10*12, -100, -100)
pyxirr.fv([0.05/12, 0.06/12], [10*12, 9*12], [-100, -200], -100)

# feed numpy array
import numpy as np
rates = np.array([0.05, 0.06, 0.07])/12
pyxirr.fv(rates, 10*12, -100, -100)

# feed any iterable!
pyxirr.fv(
    np.linspace(0.01, 0.2, 10),
    (x + 1 for x in range(10)),
    range(-100, -1100, -100),
    tuple(range(-100, -200, -10))
)

# 2d, 3d, 4d, and more!
rates = [[[[[[0.01], [0.02]]]]]]
pyxirr.fv(rates, 10*12, -100, -100)
```

# API reference

See the [docs](https://anexen.github.io/pyxirr)

# Roadmap

- [x] Implement all functions from [numpy-financial](https://numpy.org/numpy-financial/latest/index.html)
- [x] Improve docs, add more tests
- [x] Type hints
- [x] Vectorized versions of numpy-financial functions.
- [ ] Compile library for rust/javascript/python

# Development

Running tests with pyo3 is a bit tricky. In short, you need to compile your tests without `extension-module` feature to avoid linking errors.
See the following issues for the details: [#341](https://github.com/PyO3/pyo3/issues/341), [#771](https://github.com/PyO3/pyo3/issues/771).

If you are using `pyenv`, make sure you have the shared library installed (check for `${PYENV_ROOT}/versions/<version>/lib/libpython3.so` file).

```bash
$ PYTHON_CONFIGURE_OPTS="--enable-shared" pyenv install <version>
```

Install dev-requirements

```bash
$ pip install -r dev-requirements.txt
```

### Building

```bash
$ maturin develop
```

### Testing

```bash
$ LD_LIBRARY_PATH=${PYENV_ROOT}/versions/3.10.8/lib cargo test
```

### Benchmarks

```bash
$ pip install -r bench-requirements.txt
$ LD_LIBRARY_PATH=${PYENV_ROOT}/versions/3.10.8/lib cargo +nightly bench
```

# Building and distribution

This library uses [maturin](https://github.com/PyO3/maturin) to build and distribute python wheels.

```bash
$ docker run --rm -v $(pwd):/io ghcr.io/pyo3/maturin build --release --manylinux 2010 --strip
$ maturin upload target/wheels/pyxirr-${version}*
```


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Anexen/pyxirr",
    "name": "pyxirr",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "python, fast, financial, xirr, cashflow, day count convention, PME",
    "author": "Anexen",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/69/79/9c329287b4fbcea245a74680e06f0b9139305ef71ba814b2f6c12562285e/pyxirr-0.10.8.tar.gz",
    "platform": null,
    "description": "[![rust-lang.org](https://img.shields.io/badge/Made%20with-Rust-red)](https://www.rust-lang.org/)\n[![License](https://img.shields.io/github/license/Anexen/pyxirr.svg)](https://github.com/Anexen/pyxirr/blob/master/LICENSE)\n[![pypi](https://img.shields.io/pypi/v/pyxirr.svg)](https://pypi.org/project/pyxirr/)\n[![versions](https://img.shields.io/pypi/pyversions/pyxirr.svg)](https://pypi.org/project/pyxirr/)\n\n# PyXIRR\n\nRust-powered collection of financial functions.\n\nPyXIRR stands for \"Python XIRR\" (for historical reasons), but contains many other financial functions such as IRR, FV, NPV, etc.\n\nFeatures:\n\n- correct\n- supports different day count conventions (e.g. ACT/360, 30E/360, etc.)\n- works with different input data types (iterators, numpy arrays, pandas DataFrames)\n- no external dependencies\n- type annotations\n- blazingly fast\n\n# Installation\n\n```\npip install pyxirr\n```\n\n> WASM wheels for [pyodide](https://github.com/pyodide/pyodide) are also available,\n> but unfortunately are [not supported by PyPI](https://github.com/pypi/warehouse/issues/10416).\n> You can find them on the [GitHub Releases](https://github.com/Anexen/pyxirr/releases) page.\n\n# Benchmarks\n\nRust implementation has been tested against existing [xirr](https://pypi.org/project/xirr/) package\n(uses [scipy.optimize](https://docs.scipy.org/doc/scipy/reference/generated/scipy.optimize.newton.html) under the hood)\nand the [implementation from the Stack Overflow](https://stackoverflow.com/a/11503492) (pure python).\n\n![bench](https://raw.githubusercontent.com/Anexen/pyxirr/main/docs/static/bench.png)\n\nPyXIRR is much faster than the other implementations.\n\nPowered by [github-action-benchmark](https://github.com/benchmark-action/github-action-benchmark) and [plotly.js](https://github.com/plotly/plotly.js).\n\nLive benchmarks are hosted on [Github Pages](https://anexen.github.io/pyxirr/bench).\n\n# Example\n\n```python\nfrom datetime import date\nfrom pyxirr import xirr\n\ndates = [date(2020, 1, 1), date(2021, 1, 1), date(2022, 1, 1)]\namounts = [-1000, 750, 500]\n\n# feed columnar data\nxirr(dates, amounts)\n# feed iterators\nxirr(iter(dates), (x / 2 for x in amounts))\n# feed an iterable of tuples\nxirr(zip(dates, amounts))\n# feed a dictionary\nxirr(dict(zip(dates, amounts)))\n# dates as strings\nxirr(['2020-01-01', '2021-01-01'], [-1000, 1200])\n```\n\n# Multiple IRR problem\n\nThe Multiple IRR problem occurs when the signs of cash flows change more than\nonce. In this case, we say that the project has non-conventional cash flows.\nThis leads to situation, where it can have more the one IRR or have no IRR at all.\n\nPyXIRR addresses the Multiple IRR problem as follows:\n\n1. It looks for positive result around 0.1 (the same as Excel with the default guess=0.1).\n2. If it can't find a result, it uses several other attempts and selects the lowest IRR to be conservative.\n\nHere is an example illustrating how to identify multiple IRRs:\n\n```python\nimport numpy as np\nimport pyxirr\n\n# load cash flow:\ncf = pd.read_csv(\"tests/samples/30-22.csv\", names=[\"date\", \"amount\"])\n# check whether the cash flow is conventional:\nprint(pyxirr.is_conventional_cash_flow(cf[\"amount\"]))  # false\n\n# build NPV profile:\n# calculate 50 NPV values for different rates\nrates = np.linspace(-0.5, 0.5, 50)\n# any iterable, any rates, e.g.\n# rates = [-0.5, -0.3, -0.1, 0.1, -0.6]\nvalues = pyxirr.xnpv(rates, cf)\n\n# print NPV profile:\n# NPV changes sign two times:\n#   1) between -0.316 and -0.295\n#   2) between -0.03 and -0.01\nprint(\"NPV profile:\")\nfor rate, value in zip(rates, values):\n    print(rate, value)\n\n# plot NPV profile\nimport pandas as pd\nseries = pd.Series(values, index=rates)\npd.DataFrame(series[series > -1e6]).assign(zero=0).plot()\n\n# find points where NPV function crosses zero\nindexes = pyxirr.zero_crossing_points(values)\n\nprint(\"Zero crossing points:\")\nfor idx in indexes:\n    print(\"between\", rates[idx], \"and\", rates[idx+1])\n\n# XIRR has two results:\n#   -0.31540826742734207\n#   -0.028668460065441048\nfor i, idx in enumerate(indexes, start=1):\n    rate = pyxirr.xirr(cf, guess=rates[idx])\n    npv = pyxirr.xnpv(rate, cf)\n    print(f\"{i}) {rate}; XNPV = {npv}\")\n```\n\n# More Examples\n\n### Numpy and Pandas\n\n```python\nimport numpy as np\nimport pandas as pd\n\n# feed numpy array\nxirr(np.array([dates, amounts]))\nxirr(np.array(dates), np.array(amounts))\n\n# feed DataFrame (columns names doesn't matter; ordering matters)\nxirr(pd.DataFrame({\"a\": dates, \"b\": amounts}))\n\n# feed Series with DatetimeIndex\nxirr(pd.Series(amounts, index=pd.to_datetime(dates)))\n\n# bonus: apply xirr to a DataFrame with DatetimeIndex:\ndf = pd.DataFrame(\n    index=pd.date_range(\"2021\", \"2022\", freq=\"MS\", inclusive=\"left\"),\n    data={\n        \"one\": [-100] + [20] * 11,\n        \"two\": [-80] + [19] * 11,\n    },\n)\ndf.apply(xirr)  # Series(index=[\"one\", \"two\"], data=[5.09623547168478, 8.780801977141174])\n```\n\n### Day count conventions\n\nCheck out the available options on the [docs/day-count-conventions](https://anexen.github.io/pyxirr/functions.html#day-count-conventions).\n\n```python\nfrom pyxirr import DayCount\n\nxirr(dates, amounts, day_count=DayCount.ACT_360)\n\n# parse day count from string\nxirr(dates, amounts, day_count=\"30E/360\")\n```\n\n### Private equity performance metrics\n\n```python\nfrom pyxirr import pe\n\npe.pme_plus([-20, 15, 0], index=[100, 115, 130], nav=20)\n\npe.direct_alpha([-20, 15, 0], index=[100, 115, 130], nav=20)\n```\n\n[Docs](https://anexen.github.io/pyxirr/private_equity.html)\n\n### Other financial functions\n\n```python\nimport pyxirr\n\n# Future Value\npyxirr.fv(0.05/12, 10*12, -100, -100)\n\n# Net Present Value\npyxirr.npv(0, [-40_000, 5_000, 8_000, 12_000, 30_000])\n\n# IRR\npyxirr.irr([-100, 39, 59, 55, 20])\n\n# ... and more! Check out the docs.\n```\n\n[Docs](https://anexen.github.io/pyxirr/functions.html)\n\n### Vectorization\n\nPyXIRR supports numpy-like vectorization.\n\nIf all input is scalar, returns a scalar float. If any input is array_like,\nreturns values for each input element. If multiple inputs are\narray_like, performs broadcasting and returns values for each element.\n\n```python\nimport pyxirr\n\n# feed list\npyxirr.fv([0.05/12, 0.06/12], 10*12, -100, -100)\npyxirr.fv([0.05/12, 0.06/12], [10*12, 9*12], [-100, -200], -100)\n\n# feed numpy array\nimport numpy as np\nrates = np.array([0.05, 0.06, 0.07])/12\npyxirr.fv(rates, 10*12, -100, -100)\n\n# feed any iterable!\npyxirr.fv(\n    np.linspace(0.01, 0.2, 10),\n    (x + 1 for x in range(10)),\n    range(-100, -1100, -100),\n    tuple(range(-100, -200, -10))\n)\n\n# 2d, 3d, 4d, and more!\nrates = [[[[[[0.01], [0.02]]]]]]\npyxirr.fv(rates, 10*12, -100, -100)\n```\n\n# API reference\n\nSee the [docs](https://anexen.github.io/pyxirr)\n\n# Roadmap\n\n- [x] Implement all functions from [numpy-financial](https://numpy.org/numpy-financial/latest/index.html)\n- [x] Improve docs, add more tests\n- [x] Type hints\n- [x] Vectorized versions of numpy-financial functions.\n- [ ] Compile library for rust/javascript/python\n\n# Development\n\nRunning tests with pyo3 is a bit tricky. In short, you need to compile your tests without `extension-module` feature to avoid linking errors.\nSee the following issues for the details: [#341](https://github.com/PyO3/pyo3/issues/341), [#771](https://github.com/PyO3/pyo3/issues/771).\n\nIf you are using `pyenv`, make sure you have the shared library installed (check for `${PYENV_ROOT}/versions/<version>/lib/libpython3.so` file).\n\n```bash\n$ PYTHON_CONFIGURE_OPTS=\"--enable-shared\" pyenv install <version>\n```\n\nInstall dev-requirements\n\n```bash\n$ pip install -r dev-requirements.txt\n```\n\n### Building\n\n```bash\n$ maturin develop\n```\n\n### Testing\n\n```bash\n$ LD_LIBRARY_PATH=${PYENV_ROOT}/versions/3.10.8/lib cargo test\n```\n\n### Benchmarks\n\n```bash\n$ pip install -r bench-requirements.txt\n$ LD_LIBRARY_PATH=${PYENV_ROOT}/versions/3.10.8/lib cargo +nightly bench\n```\n\n# Building and distribution\n\nThis library uses [maturin](https://github.com/PyO3/maturin) to build and distribute python wheels.\n\n```bash\n$ docker run --rm -v $(pwd):/io ghcr.io/pyo3/maturin build --release --manylinux 2010 --strip\n$ maturin upload target/wheels/pyxirr-${version}*\n```\n\n",
    "bugtrack_url": null,
    "license": "Unlicense",
    "summary": "Rust-powered collection of financial functions for Python.",
    "version": "0.10.8",
    "project_urls": {
        "Homepage": "https://github.com/Anexen/pyxirr"
    },
    "split_keywords": [
        "python",
        " fast",
        " financial",
        " xirr",
        " cashflow",
        " day count convention",
        " pme"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "62b0cced222cb816cfbe72d1c3ac895b814ae4e6f8c452838073ebb57daf54eb",
                "md5": "66c71f328d32cfb7d2f5c72bfcc82bd7",
                "sha256": "4b03a3d6437aa1a939ecc7b73979fbe70434522fcb623e328149100f78061817"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "66c71f328d32cfb7d2f5c72bfcc82bd7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 509828,
            "upload_time": "2025-11-03T22:15:18",
            "upload_time_iso_8601": "2025-11-03T22:15:18.563878Z",
            "url": "https://files.pythonhosted.org/packages/62/b0/cced222cb816cfbe72d1c3ac895b814ae4e6f8c452838073ebb57daf54eb/pyxirr-0.10.8-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6e87eaee2e8f42536d7c84c36736d736b4ff655a69b19d184f1d337c9d3a6b1c",
                "md5": "24d122ca3991b897d721003ee96c62c4",
                "sha256": "7b584dff73949ac52307125358e3cf2f9fea18aaee334a1f60fd754554983304"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "24d122ca3991b897d721003ee96c62c4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 458125,
            "upload_time": "2025-11-03T22:15:54",
            "upload_time_iso_8601": "2025-11-03T22:15:54.234759Z",
            "url": "https://files.pythonhosted.org/packages/6e/87/eaee2e8f42536d7c84c36736d736b4ff655a69b19d184f1d337c9d3a6b1c/pyxirr-0.10.8-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "90ce588a337608c29c423e980335a8ae4712e36d02328e3a95879620332012f6",
                "md5": "37421093ddf8927e377b4df6c3ecbcd4",
                "sha256": "96d02bf93d6a6893cabe582ff41d09410de594bfab8ef65db7b1b101276e1b6a"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "37421093ddf8927e377b4df6c3ecbcd4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 473732,
            "upload_time": "2025-11-03T22:15:58",
            "upload_time_iso_8601": "2025-11-03T22:15:58.577428Z",
            "url": "https://files.pythonhosted.org/packages/90/ce/588a337608c29c423e980335a8ae4712e36d02328e3a95879620332012f6/pyxirr-0.10.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "35526c66e32682e3751df8bda2bcb97ffe872614ca1634470d9d92079a41f4c7",
                "md5": "5622e1c987b100a3db49e284f6200ef5",
                "sha256": "3462b5d37b974bdb9704af5e619875c05f67aa608348deb0b569ef26a875167c"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "5622e1c987b100a3db49e284f6200ef5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 472063,
            "upload_time": "2025-11-03T22:17:47",
            "upload_time_iso_8601": "2025-11-03T22:17:47.549523Z",
            "url": "https://files.pythonhosted.org/packages/35/52/6c66e32682e3751df8bda2bcb97ffe872614ca1634470d9d92079a41f4c7/pyxirr-0.10.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cb50b7d0d92073bfc104ec8d4244eb3e9b6de85f3f3f02495ca717bb4378a065",
                "md5": "26cc2597501e437b78dd52b91685134f",
                "sha256": "24a0bdaa847337cceac73ac3e037b7f81471fc417a95c40465f8ae5c971f20d2"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "26cc2597501e437b78dd52b91685134f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 666714,
            "upload_time": "2025-11-03T22:16:40",
            "upload_time_iso_8601": "2025-11-03T22:16:40.038749Z",
            "url": "https://files.pythonhosted.org/packages/cb/50/b7d0d92073bfc104ec8d4244eb3e9b6de85f3f3f02495ca717bb4378a065/pyxirr-0.10.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a03c7435578e53d305a7bcb36a10efbaf4185d54c14795488a3bf9c9efb543ee",
                "md5": "b2eb35b8f7059b9ce61c2ad676f764e1",
                "sha256": "7add84bbf592f0144fe8a411767927d80f91c96e68d8bdb8b73c1db504b4aea9"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp310-cp310-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "b2eb35b8f7059b9ce61c2ad676f764e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 540340,
            "upload_time": "2025-11-03T22:15:57",
            "upload_time_iso_8601": "2025-11-03T22:15:57.010753Z",
            "url": "https://files.pythonhosted.org/packages/a0/3c/7435578e53d305a7bcb36a10efbaf4185d54c14795488a3bf9c9efb543ee/pyxirr-0.10.8-cp310-cp310-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d4416d0d7b7ea2d838d0f81df0bb6d9c02f526133090ca0df031e002fbaa7891",
                "md5": "684ffd8958fddf5c38409f32547b3d12",
                "sha256": "a43875e58161f10453a3e4d6b5a60a200331c9a7e1958c0003cd08ab72759a7c"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "684ffd8958fddf5c38409f32547b3d12",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 666479,
            "upload_time": "2025-11-03T22:16:06",
            "upload_time_iso_8601": "2025-11-03T22:16:06.048292Z",
            "url": "https://files.pythonhosted.org/packages/d4/41/6d0d7b7ea2d838d0f81df0bb6d9c02f526133090ca0df031e002fbaa7891/pyxirr-0.10.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "58b174340471337bbef4eff401196fa972edf13363771f6392f12860cb0619ab",
                "md5": "d3dc335dd4040a1b2fe4afe55f2e64d3",
                "sha256": "7ed674822e2a7fa86a688791cdfafbd363bdf00dcc3f9bb3f68b94be8b0f6b14"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d3dc335dd4040a1b2fe4afe55f2e64d3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 538074,
            "upload_time": "2025-11-03T22:16:18",
            "upload_time_iso_8601": "2025-11-03T22:16:18.013448Z",
            "url": "https://files.pythonhosted.org/packages/58/b1/74340471337bbef4eff401196fa972edf13363771f6392f12860cb0619ab/pyxirr-0.10.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "527d7fa30a49ea4f479ac86447b6f00287eed93070b44106b27b8715dd8d20d2",
                "md5": "04e593c4319aa519906f8f6ddc1fb8e8",
                "sha256": "4fc043fe4e826c0e50560e1b85e410cbaf16263226926639fa978cdf546cb787"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "04e593c4319aa519906f8f6ddc1fb8e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 655667,
            "upload_time": "2025-11-03T22:16:41",
            "upload_time_iso_8601": "2025-11-03T22:16:41.787426Z",
            "url": "https://files.pythonhosted.org/packages/52/7d/7fa30a49ea4f479ac86447b6f00287eed93070b44106b27b8715dd8d20d2/pyxirr-0.10.8-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1c3d25d9622eb0b8e0e1f4b135347c303a12f554ae0f7c2d0a24fc6618e8e453",
                "md5": "5c14c727312e1e6a8a196c833e48c968",
                "sha256": "2cb11936e5d47ac2a961348a6e8b64636176b36d63353b0290a7227c46969240"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp310-cp310-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "5c14c727312e1e6a8a196c833e48c968",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 737145,
            "upload_time": "2025-11-03T22:17:35",
            "upload_time_iso_8601": "2025-11-03T22:17:35.210275Z",
            "url": "https://files.pythonhosted.org/packages/1c/3d/25d9622eb0b8e0e1f4b135347c303a12f554ae0f7c2d0a24fc6618e8e453/pyxirr-0.10.8-cp310-cp310-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "433ea1b7565b012a12e550cd28277bdbe5d3d2dcf51c878872a3e816b1e86680",
                "md5": "5ed7ab5e1410fd96abae90d66156d588",
                "sha256": "ebbccfa63b0181f160c58a8e191344083e54d5126580eaaf264957792e146e0b"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "5ed7ab5e1410fd96abae90d66156d588",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 730245,
            "upload_time": "2025-11-03T22:17:29",
            "upload_time_iso_8601": "2025-11-03T22:17:29.468331Z",
            "url": "https://files.pythonhosted.org/packages/43/3e/a1b7565b012a12e550cd28277bdbe5d3d2dcf51c878872a3e816b1e86680/pyxirr-0.10.8-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "caa04e2ac149b01b47083719bcd8d8daa9ff52f444f5a04c1a973a199dee52a0",
                "md5": "88a1e1896cbef1a27da6be9d397274e9",
                "sha256": "fa6950b006a98c902471d0660f0f715815cd9375e2377a4819c27800e839972e"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "88a1e1896cbef1a27da6be9d397274e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 711891,
            "upload_time": "2025-11-03T22:15:24",
            "upload_time_iso_8601": "2025-11-03T22:15:24.182149Z",
            "url": "https://files.pythonhosted.org/packages/ca/a0/4e2ac149b01b47083719bcd8d8daa9ff52f444f5a04c1a973a199dee52a0/pyxirr-0.10.8-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "148f969d4da355cb89e92f19c0a346a1a9375ca42a8d0fcb49602b41042d096b",
                "md5": "fbe5575f98151bfba0edd2c1cab11552",
                "sha256": "7008758109cf62c149d492310660f0220f757d044fa4a6204ee13f7b3c968c55"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fbe5575f98151bfba0edd2c1cab11552",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 456057,
            "upload_time": "2025-11-03T22:17:26",
            "upload_time_iso_8601": "2025-11-03T22:17:26.505003Z",
            "url": "https://files.pythonhosted.org/packages/14/8f/969d4da355cb89e92f19c0a346a1a9375ca42a8d0fcb49602b41042d096b/pyxirr-0.10.8-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8a40a9efe8b3cc43cb7a9347772ec2f73f44c86f0a5beef502aabfdcc0c52901",
                "md5": "4394eb115819b91e23585b837b9831f0",
                "sha256": "dd119d601752f0b845db77bc8c6b2a8bb1559845451c1347ff6935d931e7e2a3"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4394eb115819b91e23585b837b9831f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 509539,
            "upload_time": "2025-11-03T22:17:23",
            "upload_time_iso_8601": "2025-11-03T22:17:23.145956Z",
            "url": "https://files.pythonhosted.org/packages/8a/40/a9efe8b3cc43cb7a9347772ec2f73f44c86f0a5beef502aabfdcc0c52901/pyxirr-0.10.8-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "64d95cbe31711140d47f7c0216a5ac99ede6200e207fe9836c92cebc2547b52c",
                "md5": "fbc3000fdc7bdb4c8ad14d043e83f9da",
                "sha256": "aea29b4ccf419d24f159663c25023db2373bfded759a6531835966b407967b77"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "fbc3000fdc7bdb4c8ad14d043e83f9da",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 458347,
            "upload_time": "2025-11-03T22:17:46",
            "upload_time_iso_8601": "2025-11-03T22:17:46.056401Z",
            "url": "https://files.pythonhosted.org/packages/64/d9/5cbe31711140d47f7c0216a5ac99ede6200e207fe9836c92cebc2547b52c/pyxirr-0.10.8-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d26855d1dac021c4484ce98a59e4d7ca7c78049e34b8b4058f50170192ad3b34",
                "md5": "85d9737b9a802eb59a6ddc52a137e35b",
                "sha256": "cb07fba522e3d885d14869841b1ec6db77f1a334ee11aa41280af77aa8205a4c"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "85d9737b9a802eb59a6ddc52a137e35b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 473987,
            "upload_time": "2025-11-03T22:15:14",
            "upload_time_iso_8601": "2025-11-03T22:15:14.407699Z",
            "url": "https://files.pythonhosted.org/packages/d2/68/55d1dac021c4484ce98a59e4d7ca7c78049e34b8b4058f50170192ad3b34/pyxirr-0.10.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "de2410570b4b308225e8d33f11bc55896fcf906b88a3eeb3d73d98f1c1d6b4d9",
                "md5": "dce3a7328ea85c8b5d0e8209e7c66f08",
                "sha256": "1d0323aa4b074aa4fff36312521407198178cafb3531329246dc6d471dded578"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "dce3a7328ea85c8b5d0e8209e7c66f08",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 472149,
            "upload_time": "2025-11-03T22:15:10",
            "upload_time_iso_8601": "2025-11-03T22:15:10.835037Z",
            "url": "https://files.pythonhosted.org/packages/de/24/10570b4b308225e8d33f11bc55896fcf906b88a3eeb3d73d98f1c1d6b4d9/pyxirr-0.10.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cb2dddb157c00b45e76914bb1c81f08f1ef9d4ffaca2b5a0df4c4aa9dc625db3",
                "md5": "67c176d2a0a6d8355a17cce42cbadbdf",
                "sha256": "59d1cf4b8f9d48a9c795f590eb96a62bcbadd990a51dedceb18221dcef3322fa"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "67c176d2a0a6d8355a17cce42cbadbdf",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 667482,
            "upload_time": "2025-11-03T22:17:20",
            "upload_time_iso_8601": "2025-11-03T22:17:20.127255Z",
            "url": "https://files.pythonhosted.org/packages/cb/2d/ddb157c00b45e76914bb1c81f08f1ef9d4ffaca2b5a0df4c4aa9dc625db3/pyxirr-0.10.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0d8eda1bee527ca1ba156916bfeea3e6058f350b90de613d59ee775acf6b7273",
                "md5": "b4bbec120b0b503f05aee80fd9954646",
                "sha256": "72dfe71505e966e6b174bc76a10dc099c4c8ce8dbfdaeebc96e2ed38973bc9a7"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp311-cp311-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "b4bbec120b0b503f05aee80fd9954646",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 540749,
            "upload_time": "2025-11-03T22:16:16",
            "upload_time_iso_8601": "2025-11-03T22:16:16.463380Z",
            "url": "https://files.pythonhosted.org/packages/0d/8e/da1bee527ca1ba156916bfeea3e6058f350b90de613d59ee775acf6b7273/pyxirr-0.10.8-cp311-cp311-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cef599e6294ecb9cb366f4c4d9eeb13e57a5b7a1cb84abd4fcf731f0a1385d40",
                "md5": "c9ab3359729de27eb07df9e28c913636",
                "sha256": "0f98748ecadaf5fa800cd4042b16e1d6a6088842d22be7bad0e5ff1526775b72"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "c9ab3359729de27eb07df9e28c913636",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 666976,
            "upload_time": "2025-11-03T22:15:06",
            "upload_time_iso_8601": "2025-11-03T22:15:06.546348Z",
            "url": "https://files.pythonhosted.org/packages/ce/f5/99e6294ecb9cb366f4c4d9eeb13e57a5b7a1cb84abd4fcf731f0a1385d40/pyxirr-0.10.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "16303e3c6105c02c989d223108bcd96589a3df755f5136a4db28963d308e55fc",
                "md5": "8cb213b18fb6aaf8e94a2f82d9b59fd5",
                "sha256": "3fe176e32ecca7924b1b75d19066503751070df7470b3803155d03d9e9045ae0"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8cb213b18fb6aaf8e94a2f82d9b59fd5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 538589,
            "upload_time": "2025-11-03T22:17:13",
            "upload_time_iso_8601": "2025-11-03T22:17:13.554674Z",
            "url": "https://files.pythonhosted.org/packages/16/30/3e3c6105c02c989d223108bcd96589a3df755f5136a4db28963d308e55fc/pyxirr-0.10.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1e4486f4c3ba8a0b5cda96edb7f063b460cb5acf950865eb74730833c93bb68d",
                "md5": "2319dcd3c04bb7f4f983608e58028f5c",
                "sha256": "3271111554cbea5d2893338b1012a32593df2a7333a66b3f8148ef9a1104685e"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2319dcd3c04bb7f4f983608e58028f5c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 655941,
            "upload_time": "2025-11-03T22:16:59",
            "upload_time_iso_8601": "2025-11-03T22:16:59.864838Z",
            "url": "https://files.pythonhosted.org/packages/1e/44/86f4c3ba8a0b5cda96edb7f063b460cb5acf950865eb74730833c93bb68d/pyxirr-0.10.8-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "03837c702ec1f516748b10cc4582c7ce43279f4e68be8b1fcf97291926a42587",
                "md5": "5580c915fa26623830b6068aa3288a4a",
                "sha256": "eaec298b943999b92a15b5451c9eeadb4144acd906b7b177438314a399b863c7"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp311-cp311-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "5580c915fa26623830b6068aa3288a4a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 737171,
            "upload_time": "2025-11-03T22:17:51",
            "upload_time_iso_8601": "2025-11-03T22:17:51.052151Z",
            "url": "https://files.pythonhosted.org/packages/03/83/7c702ec1f516748b10cc4582c7ce43279f4e68be8b1fcf97291926a42587/pyxirr-0.10.8-cp311-cp311-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "132614f5cbb2eb3d3cf21d501c94be508010412764d84d2010f5771e909da3cc",
                "md5": "13fc0549bf2c17742888e33dad8b6f71",
                "sha256": "078de4e50dd2749e75930dc6316ccd060bea1615da8f1cfee5d3cce200f7997a"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "13fc0549bf2c17742888e33dad8b6f71",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 731155,
            "upload_time": "2025-11-03T22:15:32",
            "upload_time_iso_8601": "2025-11-03T22:15:32.445068Z",
            "url": "https://files.pythonhosted.org/packages/13/26/14f5cbb2eb3d3cf21d501c94be508010412764d84d2010f5771e909da3cc/pyxirr-0.10.8-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8d9c4c324ea0a53854e197250f160ce6486f5ef6e1b16109a2448d87653cb031",
                "md5": "92354de716e525438e8aa5e3191bd81b",
                "sha256": "bf7ec26972b255df055582cf301512af8e886deb42cada846d1193cb9f65dc99"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "92354de716e525438e8aa5e3191bd81b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 712413,
            "upload_time": "2025-11-03T22:17:36",
            "upload_time_iso_8601": "2025-11-03T22:17:36.750202Z",
            "url": "https://files.pythonhosted.org/packages/8d/9c/4c324ea0a53854e197250f160ce6486f5ef6e1b16109a2448d87653cb031/pyxirr-0.10.8-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b3ad82cc92bfb80199ee4421a9cab4f58342e2afe11563aaeb22f08af477cab0",
                "md5": "3eda488ab7c7f2379228e40296792d36",
                "sha256": "85829d2fc727762fe9b35d1a0916d8dadd352adc923493bc63e0c8cb23e516af"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3eda488ab7c7f2379228e40296792d36",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 456217,
            "upload_time": "2025-11-03T22:15:07",
            "upload_time_iso_8601": "2025-11-03T22:15:07.879588Z",
            "url": "https://files.pythonhosted.org/packages/b3/ad/82cc92bfb80199ee4421a9cab4f58342e2afe11563aaeb22f08af477cab0/pyxirr-0.10.8-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "658751c128c806f5202e9e9ab94daab28d8cf229bd2d30e309da270187720b3f",
                "md5": "54601ddcf98e55eb37a10aa02087eadb",
                "sha256": "726998e9d1bab16381587679a91609bdd619fdd3f9e7c999235fec107a9a15d4"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "54601ddcf98e55eb37a10aa02087eadb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 503705,
            "upload_time": "2025-11-03T22:15:40",
            "upload_time_iso_8601": "2025-11-03T22:15:40.667561Z",
            "url": "https://files.pythonhosted.org/packages/65/87/51c128c806f5202e9e9ab94daab28d8cf229bd2d30e309da270187720b3f/pyxirr-0.10.8-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f0f3b86883ef9d82f957b81c19d5ee66dc1665cb324203daadc831905bc0edbe",
                "md5": "d0fc958bb9c5605f9743be0d2e5a8312",
                "sha256": "738eece5ccf055523ccb9ca8933719c65432c22c408111782cee4000fe4f696c"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d0fc958bb9c5605f9743be0d2e5a8312",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 453672,
            "upload_time": "2025-11-03T22:16:37",
            "upload_time_iso_8601": "2025-11-03T22:16:37.230341Z",
            "url": "https://files.pythonhosted.org/packages/f0/f3/b86883ef9d82f957b81c19d5ee66dc1665cb324203daadc831905bc0edbe/pyxirr-0.10.8-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "78a5f99e0e2078d859987aa2961e51813fc94044fe76baa33182430d3194f265",
                "md5": "be2bb161d91641dd1cb3f83df73bca3c",
                "sha256": "2fd8ffbbd6666c655c98141d46f1303c745d883caf23792ebf693a3ea38b5f03"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "be2bb161d91641dd1cb3f83df73bca3c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 465900,
            "upload_time": "2025-11-03T22:15:00",
            "upload_time_iso_8601": "2025-11-03T22:15:00.674647Z",
            "url": "https://files.pythonhosted.org/packages/78/a5/f99e0e2078d859987aa2961e51813fc94044fe76baa33182430d3194f265/pyxirr-0.10.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f228db0384e404518e341896ed09d94f2cd92ed7e3b62562906db183f37b1e21",
                "md5": "da1d846adf3d5d404364615236cc042f",
                "sha256": "6c64d63b740fcb8ea3c7f7ece3b6506edd4aaa0b37669c8a034682fd072cc673"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "da1d846adf3d5d404364615236cc042f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 471190,
            "upload_time": "2025-11-03T22:16:25",
            "upload_time_iso_8601": "2025-11-03T22:16:25.301050Z",
            "url": "https://files.pythonhosted.org/packages/f2/28/db0384e404518e341896ed09d94f2cd92ed7e3b62562906db183f37b1e21/pyxirr-0.10.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0df1e6ed680b19b56e8eb5164bb45175aa5f362920a9c48fc2cb3d4c87eda7e4",
                "md5": "fcac22aaa222ef7e5eaec083406d9ea2",
                "sha256": "172865dbfe4e2181886254e17c186cf4106d54c64e3d8e076aceeadd2868fdfa"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "fcac22aaa222ef7e5eaec083406d9ea2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 652650,
            "upload_time": "2025-11-03T22:17:43",
            "upload_time_iso_8601": "2025-11-03T22:17:43.121170Z",
            "url": "https://files.pythonhosted.org/packages/0d/f1/e6ed680b19b56e8eb5164bb45175aa5f362920a9c48fc2cb3d4c87eda7e4/pyxirr-0.10.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "04ab6b1f72fc2cbbe387387b3fa862aa1e1567beaaad80a15f175381b042fb6e",
                "md5": "f58218a6eb6e58d40b8317f89152dd4f",
                "sha256": "ba50ee33f95255cc882e0416c59f53d136cd11ebc943a17bf58ae9ef0119099e"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp312-cp312-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "f58218a6eb6e58d40b8317f89152dd4f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 533781,
            "upload_time": "2025-11-03T22:17:04",
            "upload_time_iso_8601": "2025-11-03T22:17:04.382914Z",
            "url": "https://files.pythonhosted.org/packages/04/ab/6b1f72fc2cbbe387387b3fa862aa1e1567beaaad80a15f175381b042fb6e/pyxirr-0.10.8-cp312-cp312-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b3d3dd7fab3b68d4ce48f1bbc9f717e473ece91dcde355c52e9e3274e249aa4f",
                "md5": "c2592b92aa2ac4c2bf2e3557f4dbdc00",
                "sha256": "c4833d07e1b3f7cd37c2b0026ced098b52f36e42d3ed6e0e5b6604fd1c94c3d0"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "c2592b92aa2ac4c2bf2e3557f4dbdc00",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 662465,
            "upload_time": "2025-11-03T22:16:43",
            "upload_time_iso_8601": "2025-11-03T22:16:43.213786Z",
            "url": "https://files.pythonhosted.org/packages/b3/d3/dd7fab3b68d4ce48f1bbc9f717e473ece91dcde355c52e9e3274e249aa4f/pyxirr-0.10.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9a70a5a4cfab51f5b6da155b91aa34f628181464096dc2b6ee2aa8d6adcdc959",
                "md5": "96f52ee859ff0c446fcf703cdd9b93b0",
                "sha256": "9fb79b9a4592f71f4e649f2f5d0d0d3f50dd5a9a29360fe8f81bac85868869cd"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "96f52ee859ff0c446fcf703cdd9b93b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 533065,
            "upload_time": "2025-11-03T22:16:46",
            "upload_time_iso_8601": "2025-11-03T22:16:46.256494Z",
            "url": "https://files.pythonhosted.org/packages/9a/70/a5a4cfab51f5b6da155b91aa34f628181464096dc2b6ee2aa8d6adcdc959/pyxirr-0.10.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b1888db4637ce1a466cd6093445111877f3eb22be8f6d8d6c601ae09b1cb9c32",
                "md5": "258360d5ea972c25b44eeeef9555a1e0",
                "sha256": "4d93ecdcacc93d37939f06e1c05c604e0bdf04547a9644c7c3fcc7f82d545e73"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "258360d5ea972c25b44eeeef9555a1e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 648136,
            "upload_time": "2025-11-03T22:15:49",
            "upload_time_iso_8601": "2025-11-03T22:15:49.185463Z",
            "url": "https://files.pythonhosted.org/packages/b1/88/8db4637ce1a466cd6093445111877f3eb22be8f6d8d6c601ae09b1cb9c32/pyxirr-0.10.8-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "84cd07e82fbee996f12572897f84a0f7fbc5a599305b32ceabbb282660daf273",
                "md5": "9f4b6caba4d20fd521cb88377c3efa42",
                "sha256": "036ba8faedd68584ae21ec10c8d4b8e80755523a309b4f93819e89f7278f8fda"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp312-cp312-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "9f4b6caba4d20fd521cb88377c3efa42",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 736217,
            "upload_time": "2025-11-03T22:17:56",
            "upload_time_iso_8601": "2025-11-03T22:17:56.145410Z",
            "url": "https://files.pythonhosted.org/packages/84/cd/07e82fbee996f12572897f84a0f7fbc5a599305b32ceabbb282660daf273/pyxirr-0.10.8-cp312-cp312-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "72fd4511b3a6c05d5c2ee31650a5c033d4f8ee847abeb45db4a5de4b33ce37d4",
                "md5": "6a407a785777327b801023810cc4de75",
                "sha256": "421282a2e776fa39025e868bcc1eb865b894e91fb58f07534a2c0f2f531c0a0d"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "6a407a785777327b801023810cc4de75",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 730264,
            "upload_time": "2025-11-03T22:17:39",
            "upload_time_iso_8601": "2025-11-03T22:17:39.990191Z",
            "url": "https://files.pythonhosted.org/packages/72/fd/4511b3a6c05d5c2ee31650a5c033d4f8ee847abeb45db4a5de4b33ce37d4/pyxirr-0.10.8-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8a9f3f1d9977ae4d77e277d68532ad5a761a32800f61df3b22057c62fee3940b",
                "md5": "db46ce7c1be2f90f22e3e242a3dbad9f",
                "sha256": "7e44e6b7f4a1a3ad3ae6a42dd66a0594393d793caf582aa8c08934916635fc88"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "db46ce7c1be2f90f22e3e242a3dbad9f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 707081,
            "upload_time": "2025-11-03T22:16:38",
            "upload_time_iso_8601": "2025-11-03T22:16:38.635437Z",
            "url": "https://files.pythonhosted.org/packages/8a/9f/3f1d9977ae4d77e277d68532ad5a761a32800f61df3b22057c62fee3940b/pyxirr-0.10.8-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "211134f5cbd77630539ef36cbdf11fb09c6c0be5168d480400019ead2bbcbc22",
                "md5": "378560c7e1d3e86241a4d7e9d533adb3",
                "sha256": "1c094f79ceb2f1e80b77d77f7f699c97af3f9d7d7243861463273776e8925dfa"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "378560c7e1d3e86241a4d7e9d533adb3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 457683,
            "upload_time": "2025-11-03T22:16:22",
            "upload_time_iso_8601": "2025-11-03T22:16:22.242429Z",
            "url": "https://files.pythonhosted.org/packages/21/11/34f5cbd77630539ef36cbdf11fb09c6c0be5168d480400019ead2bbcbc22/pyxirr-0.10.8-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "942055523ac15e0e16ab798c474db25897501b452b608af3688d6a8bcf364ece",
                "md5": "b488675e1e410bf86a829ee4366a84f0",
                "sha256": "a7474eec3f859c48ea2670791f545d38728a98e33019ee1d7b627cb44909dae2"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp313-cp313-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b488675e1e410bf86a829ee4366a84f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 503389,
            "upload_time": "2025-11-03T22:17:54",
            "upload_time_iso_8601": "2025-11-03T22:17:54.354045Z",
            "url": "https://files.pythonhosted.org/packages/94/20/55523ac15e0e16ab798c474db25897501b452b608af3688d6a8bcf364ece/pyxirr-0.10.8-cp313-cp313-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "05deb595b04778c882e78bff82e6ef87383ae8f323e2e2aa62b0dae435a9434b",
                "md5": "88e9f312a091a64d659608fb40b9f30f",
                "sha256": "5f383b897fc25724ec43edd6dd6c193583ef6bba86af55209a347612e832234a"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "88e9f312a091a64d659608fb40b9f30f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 453082,
            "upload_time": "2025-11-03T22:16:13",
            "upload_time_iso_8601": "2025-11-03T22:16:13.291043Z",
            "url": "https://files.pythonhosted.org/packages/05/de/b595b04778c882e78bff82e6ef87383ae8f323e2e2aa62b0dae435a9434b/pyxirr-0.10.8-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bcdbf3c620eebc5ab4924afb9ec4820f8835292d23483d552da30439d55171e8",
                "md5": "9ef0cb7a77ebf227c55f2130090c8b12",
                "sha256": "db3e4cea189ae965f428ee85fdb74329e96248f9f6bd5b2d81e6f9f094b0f816"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9ef0cb7a77ebf227c55f2130090c8b12",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 465385,
            "upload_time": "2025-11-03T22:15:25",
            "upload_time_iso_8601": "2025-11-03T22:15:25.771620Z",
            "url": "https://files.pythonhosted.org/packages/bc/db/f3c620eebc5ab4924afb9ec4820f8835292d23483d552da30439d55171e8/pyxirr-0.10.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1ac6de7fcf59ea268592b5916fe6a2b72a5b05dfe62a789aca3f4c1200fb44ad",
                "md5": "ffa908f2286c48a0efe2afc6209e9e28",
                "sha256": "004ac61af8ab756031cea74d08b2f8c88ea36966e63ae2d1d3e3fc60a80ad662"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ffa908f2286c48a0efe2afc6209e9e28",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 470444,
            "upload_time": "2025-11-03T22:17:44",
            "upload_time_iso_8601": "2025-11-03T22:17:44.636968Z",
            "url": "https://files.pythonhosted.org/packages/1a/c6/de7fcf59ea268592b5916fe6a2b72a5b05dfe62a789aca3f4c1200fb44ad/pyxirr-0.10.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c6c5a7477b33387ae27b210fa0b9cd03d151b0e3cf272f5fdd4ff19bc17ba374",
                "md5": "0e39562b5a01db3ee767cb573543efb2",
                "sha256": "659eb9d97ae7851d3260cfbe8d0914b93662228802d9fb1bf459c365982943e6"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "0e39562b5a01db3ee767cb573543efb2",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 651976,
            "upload_time": "2025-11-03T22:17:59",
            "upload_time_iso_8601": "2025-11-03T22:17:59.559925Z",
            "url": "https://files.pythonhosted.org/packages/c6/c5/a7477b33387ae27b210fa0b9cd03d151b0e3cf272f5fdd4ff19bc17ba374/pyxirr-0.10.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f0fdf03ee3e52bab20f5cda5c713d0e2bf29fa31795646c775c5b516297deab7",
                "md5": "e08b33b13eff1383060ba5cb2e76fce3",
                "sha256": "7d5da7a620d6719bd7bfcb8325881f835008514e90817bd552f62b36d214ed67"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp313-cp313-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "e08b33b13eff1383060ba5cb2e76fce3",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 532435,
            "upload_time": "2025-11-03T22:16:10",
            "upload_time_iso_8601": "2025-11-03T22:16:10.532917Z",
            "url": "https://files.pythonhosted.org/packages/f0/fd/f03ee3e52bab20f5cda5c713d0e2bf29fa31795646c775c5b516297deab7/pyxirr-0.10.8-cp313-cp313-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6ff66892f963935815af64a1ebb3b0a81b86418490d6a6c96c2db6a5da57b580",
                "md5": "ab0d55928a87960df3a25837a4a07e25",
                "sha256": "1581f05efa87c6e238d4406647fc2055b70c99edfb79587dfd55ce7d818e8125"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "ab0d55928a87960df3a25837a4a07e25",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 661931,
            "upload_time": "2025-11-03T22:17:08",
            "upload_time_iso_8601": "2025-11-03T22:17:08.761421Z",
            "url": "https://files.pythonhosted.org/packages/6f/f6/6892f963935815af64a1ebb3b0a81b86418490d6a6c96c2db6a5da57b580/pyxirr-0.10.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d61620af051a66906860e91e033a59553451592ba26794e96ebd4dcaeb840f8f",
                "md5": "316122bbc1b521493b2883b113f31a94",
                "sha256": "f81ca9b993551c9e141e2c2dc0ebf4a1e3e3700c8967e954f8862b1b1fcfdbf8"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "316122bbc1b521493b2883b113f31a94",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 532359,
            "upload_time": "2025-11-03T22:16:04",
            "upload_time_iso_8601": "2025-11-03T22:16:04.355494Z",
            "url": "https://files.pythonhosted.org/packages/d6/16/20af051a66906860e91e033a59553451592ba26794e96ebd4dcaeb840f8f/pyxirr-0.10.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "153a8da4840d0b00b575ca3b19e6c6599be4839acd68f1ca121666e9eae4dddf",
                "md5": "812ee44736a764b53b8a4c07147a4045",
                "sha256": "481aa3b3ad739c17b0cd0afb76dca5308ffc489e9947c320a0574699ee37df70"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "812ee44736a764b53b8a4c07147a4045",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 647520,
            "upload_time": "2025-11-03T22:16:09",
            "upload_time_iso_8601": "2025-11-03T22:16:09.015897Z",
            "url": "https://files.pythonhosted.org/packages/15/3a/8da4840d0b00b575ca3b19e6c6599be4839acd68f1ca121666e9eae4dddf/pyxirr-0.10.8-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bf2fd85a6bc4483b954220df2a3b7636bcb1249df5ae34203e3ab941fa6037bd",
                "md5": "270e84dae9ad4bb822512f8ea67ae5ea",
                "sha256": "e734b4004dd38c04cd37257bb5f7d8aa32082ff7a78c3719c82b684869575326"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp313-cp313-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "270e84dae9ad4bb822512f8ea67ae5ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 735529,
            "upload_time": "2025-11-03T22:15:30",
            "upload_time_iso_8601": "2025-11-03T22:15:30.248024Z",
            "url": "https://files.pythonhosted.org/packages/bf/2f/d85a6bc4483b954220df2a3b7636bcb1249df5ae34203e3ab941fa6037bd/pyxirr-0.10.8-cp313-cp313-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3f56917885bbad3d447c143725a05e9e7cb35c5444f0dce8bc609a91f9411fd0",
                "md5": "91c5d673d06b48077140b012b867a9f1",
                "sha256": "d6424aa6d02de420609a1157b879a137c3979b3302f0b2a90959d364a71a4679"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "91c5d673d06b48077140b012b867a9f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 729679,
            "upload_time": "2025-11-03T22:16:07",
            "upload_time_iso_8601": "2025-11-03T22:16:07.480654Z",
            "url": "https://files.pythonhosted.org/packages/3f/56/917885bbad3d447c143725a05e9e7cb35c5444f0dce8bc609a91f9411fd0/pyxirr-0.10.8-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d765b61f825ce32fd5cee02577858fa92c76dd7b9d3adad1b15989ebcbb286c8",
                "md5": "2d4ddd1b7b30ec914536ae6dbdcc14e2",
                "sha256": "174e5a8ccdf20c4ffb408c23b21361c8bb2460709f6c7892f98ef774b4e428cb"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2d4ddd1b7b30ec914536ae6dbdcc14e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 706443,
            "upload_time": "2025-11-03T22:15:55",
            "upload_time_iso_8601": "2025-11-03T22:15:55.664648Z",
            "url": "https://files.pythonhosted.org/packages/d7/65/b61f825ce32fd5cee02577858fa92c76dd7b9d3adad1b15989ebcbb286c8/pyxirr-0.10.8-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d5fa85be1287ee5701013f0ef0e5b77998af8b0edde4d18d480fac9376ffa426",
                "md5": "f3375dbc5cc48711f10f67f9bd67ac62",
                "sha256": "7d7b91b5fa3d935562fcddf9fd0b57a9cf2d972329fec4d5ac87616ed404c6eb"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp313-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f3375dbc5cc48711f10f67f9bd67ac62",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 457041,
            "upload_time": "2025-11-03T22:15:51",
            "upload_time_iso_8601": "2025-11-03T22:15:51.069875Z",
            "url": "https://files.pythonhosted.org/packages/d5/fa/85be1287ee5701013f0ef0e5b77998af8b0edde4d18d480fac9376ffa426/pyxirr-0.10.8-cp313-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cf7da85ee18673bd2ddd6281b8653f6c3d554e015cda20d1fd1b0821fd120544",
                "md5": "2d024902e598e2c3bc21c80d2f56321d",
                "sha256": "fd7b4af506a2eb0deedcc6373381e0b7509c2882fde6036714068cf3f5344664"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp314-cp314-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2d024902e598e2c3bc21c80d2f56321d",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.7",
            "size": 503842,
            "upload_time": "2025-11-03T22:16:29",
            "upload_time_iso_8601": "2025-11-03T22:16:29.611820Z",
            "url": "https://files.pythonhosted.org/packages/cf/7d/a85ee18673bd2ddd6281b8653f6c3d554e015cda20d1fd1b0821fd120544/pyxirr-0.10.8-cp314-cp314-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cf6672af63e6238da45b7619a041c0662f63ebcfcef55d48c78932002e857ef9",
                "md5": "e5a6488dffe6c0711fdf090c38ef0dac",
                "sha256": "8cfb84e857c9ea2dba28c033ac81f9072ac0aff1dfa7f35dab36b599bf715174"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp314-cp314-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e5a6488dffe6c0711fdf090c38ef0dac",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.7",
            "size": 453601,
            "upload_time": "2025-11-03T22:17:49",
            "upload_time_iso_8601": "2025-11-03T22:17:49.235180Z",
            "url": "https://files.pythonhosted.org/packages/cf/66/72af63e6238da45b7619a041c0662f63ebcfcef55d48c78932002e857ef9/pyxirr-0.10.8-cp314-cp314-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "960bff310beea7f7b6d56e6b63b008a82e5783f3f3628dfb14c33333193918b7",
                "md5": "c3f24fd04ec89a9fe52b21bdba82e95d",
                "sha256": "68b0a3eb78e00f58c3251ef08668d10b1ad37d323c130d193788d0dd002a6389"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c3f24fd04ec89a9fe52b21bdba82e95d",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.7",
            "size": 465741,
            "upload_time": "2025-11-03T22:15:33",
            "upload_time_iso_8601": "2025-11-03T22:15:33.842739Z",
            "url": "https://files.pythonhosted.org/packages/96/0b/ff310beea7f7b6d56e6b63b008a82e5783f3f3628dfb14c33333193918b7/pyxirr-0.10.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "60d4c46f368b1ba2211e9746f27d7728d79a1a7264c4e5f3314068b69ef5f990",
                "md5": "db0e37c2912b7a38ce9ebbb0e7ff54d3",
                "sha256": "4dec8d38f60160cc35cf03d9953c58655ba80f70189d5b5b93616828cc1cc1e6"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "db0e37c2912b7a38ce9ebbb0e7ff54d3",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.7",
            "size": 470829,
            "upload_time": "2025-11-03T22:15:20",
            "upload_time_iso_8601": "2025-11-03T22:15:20.072479Z",
            "url": "https://files.pythonhosted.org/packages/60/d4/c46f368b1ba2211e9746f27d7728d79a1a7264c4e5f3314068b69ef5f990/pyxirr-0.10.8-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4a2c3d907a9128454f2e8494cae3cbd241f3f19f10c19f7c3a679eb6c1f3527e",
                "md5": "6e72cdba212591a7ec17faa50c9315c2",
                "sha256": "0b8869291f5625cfa9b3fac84575b1aee8390d5fbfaaac5f6b426322a8b67e02"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "6e72cdba212591a7ec17faa50c9315c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.7",
            "size": 652807,
            "upload_time": "2025-11-03T22:17:05",
            "upload_time_iso_8601": "2025-11-03T22:17:05.739117Z",
            "url": "https://files.pythonhosted.org/packages/4a/2c/3d907a9128454f2e8494cae3cbd241f3f19f10c19f7c3a679eb6c1f3527e/pyxirr-0.10.8-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "09f125f66bb783f155b464125c5f03b675a4385839b424645b90e1df76d7d80b",
                "md5": "745505ff47cf277db473e7cf2b1264f3",
                "sha256": "8e2ed244cfcb41a1275fc160103341a773e02d1e2d29668ac51d6b956b93154d"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp314-cp314-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "745505ff47cf277db473e7cf2b1264f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.7",
            "size": 533361,
            "upload_time": "2025-11-03T22:17:02",
            "upload_time_iso_8601": "2025-11-03T22:17:02.736647Z",
            "url": "https://files.pythonhosted.org/packages/09/f1/25f66bb783f155b464125c5f03b675a4385839b424645b90e1df76d7d80b/pyxirr-0.10.8-cp314-cp314-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0f940f789405e2f848056783e496d04e91296643c016ecd1158d057e1ba861d9",
                "md5": "94ca58974ca747360af834819ea9799d",
                "sha256": "593a2f0dffa6873c605a95136a1277280917703347cc9098eee6099da12252db"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "94ca58974ca747360af834819ea9799d",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.7",
            "size": 662334,
            "upload_time": "2025-11-03T22:16:14",
            "upload_time_iso_8601": "2025-11-03T22:16:14.747234Z",
            "url": "https://files.pythonhosted.org/packages/0f/94/0f789405e2f848056783e496d04e91296643c016ecd1158d057e1ba861d9/pyxirr-0.10.8-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0f9d59f8aed8c40c4e8bc991672ef22a75f3ee66bdfb592ce17e144f60db5a28",
                "md5": "64708bbd61d89238b0d9bd34dbe6eee5",
                "sha256": "ce53ec01ab05da76e37e4d66e94c0274fd1e416b93412d8be8da1ef6236176fe"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "64708bbd61d89238b0d9bd34dbe6eee5",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.7",
            "size": 532817,
            "upload_time": "2025-11-03T22:15:44",
            "upload_time_iso_8601": "2025-11-03T22:15:44.888936Z",
            "url": "https://files.pythonhosted.org/packages/0f/9d/59f8aed8c40c4e8bc991672ef22a75f3ee66bdfb592ce17e144f60db5a28/pyxirr-0.10.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0a3e465d93f50dd09c9ca7d4699989c6c046c22018b96f8b32d85c983a039a13",
                "md5": "4d74c333b6d764d83b8881904037a90c",
                "sha256": "73360047fa9775c2278bcbc190a4af98c669ad35f1d3868c9ffcea2d9d82e033"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp314-cp314-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4d74c333b6d764d83b8881904037a90c",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.7",
            "size": 648088,
            "upload_time": "2025-11-03T22:17:16",
            "upload_time_iso_8601": "2025-11-03T22:17:16.711313Z",
            "url": "https://files.pythonhosted.org/packages/0a/3e/465d93f50dd09c9ca7d4699989c6c046c22018b96f8b32d85c983a039a13/pyxirr-0.10.8-cp314-cp314-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e585ab66b359bd09836c98fc84b771abad2d419dd0f47c5f71908127af9b7b59",
                "md5": "96694659c589fb2e7ab0f2b4c7516759",
                "sha256": "5b058ebd11251375420718844063b9a5abafbd4b02519486f60515cddfcf455c"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp314-cp314-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "96694659c589fb2e7ab0f2b4c7516759",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.7",
            "size": 735943,
            "upload_time": "2025-11-03T22:16:23",
            "upload_time_iso_8601": "2025-11-03T22:16:23.918870Z",
            "url": "https://files.pythonhosted.org/packages/e5/85/ab66b359bd09836c98fc84b771abad2d419dd0f47c5f71908127af9b7b59/pyxirr-0.10.8-cp314-cp314-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "37a2a86da0b048180a0a4ab3d1b65f3bbf1457ca503a1c141a11f1425aed61ad",
                "md5": "2ca94b3e936226ed585150767d51784e",
                "sha256": "14b4ed182226981248f88a286e1f9aa42114e189d105caf470697f8af6e2b2a7"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp314-cp314-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "2ca94b3e936226ed585150767d51784e",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.7",
            "size": 730669,
            "upload_time": "2025-11-03T22:15:43",
            "upload_time_iso_8601": "2025-11-03T22:15:43.370027Z",
            "url": "https://files.pythonhosted.org/packages/37/a2/a86da0b048180a0a4ab3d1b65f3bbf1457ca503a1c141a11f1425aed61ad/pyxirr-0.10.8-cp314-cp314-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "23d14cc1024e84da052b3ee46b4c479a6e187e699030692802dabab527c07e76",
                "md5": "25d6762c470bbe79249edeb0ad01eb78",
                "sha256": "23d28b4e80942decbcfd9c2c90078fe49e7522c3c654f37044be86a423110a2b"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp314-cp314-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "25d6762c470bbe79249edeb0ad01eb78",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.7",
            "size": 706903,
            "upload_time": "2025-11-03T22:17:07",
            "upload_time_iso_8601": "2025-11-03T22:17:07.177308Z",
            "url": "https://files.pythonhosted.org/packages/23/d1/4cc1024e84da052b3ee46b4c479a6e187e699030692802dabab527c07e76/pyxirr-0.10.8-cp314-cp314-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1ffb08006985096f8fb7de1eba7f554d870bb53051dc3c90ed7caab46169169c",
                "md5": "3bb4c9f1fe22f6f705d56f763a6ef58e",
                "sha256": "69372d1c4663f14d53bf4e9101d4faa8269a50eb9b14495ff49e55d8e796acc7"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp314-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3bb4c9f1fe22f6f705d56f763a6ef58e",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.7",
            "size": 457507,
            "upload_time": "2025-11-03T22:17:24",
            "upload_time_iso_8601": "2025-11-03T22:17:24.582000Z",
            "url": "https://files.pythonhosted.org/packages/1f/fb/08006985096f8fb7de1eba7f554d870bb53051dc3c90ed7caab46169169c/pyxirr-0.10.8-cp314-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "51d74c5afe0bcec2f392904d47f4ce54c8f746cce39c6351b6dbd58ea5406c84",
                "md5": "a6484e2d2222a77c47be0f3f616e3ad7",
                "sha256": "cdd20306ea5401aa154f65764324b58983fe50b778a9675295a59bb135e906a8"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp37-abi3-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a6484e2d2222a77c47be0f3f616e3ad7",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 513451,
            "upload_time": "2025-11-03T22:15:21",
            "upload_time_iso_8601": "2025-11-03T22:15:21.636247Z",
            "url": "https://files.pythonhosted.org/packages/51/d7/4c5afe0bcec2f392904d47f4ce54c8f746cce39c6351b6dbd58ea5406c84/pyxirr-0.10.8-cp37-abi3-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f95c5c7b0c28aa9a8e4cd31051637a95d425a55f18c1f3789b1983869f63150e",
                "md5": "7c85be4afbd6dd80bb1d7c6f5a1c80a0",
                "sha256": "b9b1dbee786c219b1f95449ca5fb6e47632a277bcb184750466e1c9048235974"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp37-abi3-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7c85be4afbd6dd80bb1d7c6f5a1c80a0",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 460406,
            "upload_time": "2025-11-03T22:17:28",
            "upload_time_iso_8601": "2025-11-03T22:17:28.079819Z",
            "url": "https://files.pythonhosted.org/packages/f9/5c/5c7b0c28aa9a8e4cd31051637a95d425a55f18c1f3789b1983869f63150e/pyxirr-0.10.8-cp37-abi3-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d9ac5ea4326645a68833a6e14f09dc6b8bb780513d824d344cdc5e5ca2785ab5",
                "md5": "2be801ee8a3a09f5499d1b066f0ddf83",
                "sha256": "4c796823279db7d9794f3245b78d17b1070c4d4683ff57adbcc50b8f690f5246"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2be801ee8a3a09f5499d1b066f0ddf83",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 471426,
            "upload_time": "2025-11-03T22:16:33",
            "upload_time_iso_8601": "2025-11-03T22:16:33.117471Z",
            "url": "https://files.pythonhosted.org/packages/d9/ac/5ea4326645a68833a6e14f09dc6b8bb780513d824d344cdc5e5ca2785ab5/pyxirr-0.10.8-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "18085314c9b3cab2badb23ca4341b411337327beda641b3e01f79fa96e7dc080",
                "md5": "743666f4c29e4146b8dbf88cff74d4fe",
                "sha256": "b707ad6433cd0e08e4a31378ac41b2d7eceaa535b23f6cdda1a69bdf767d0c4e"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "743666f4c29e4146b8dbf88cff74d4fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 474791,
            "upload_time": "2025-11-03T22:16:35",
            "upload_time_iso_8601": "2025-11-03T22:16:35.900810Z",
            "url": "https://files.pythonhosted.org/packages/18/08/5314c9b3cab2badb23ca4341b411337327beda641b3e01f79fa96e7dc080/pyxirr-0.10.8-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e16737b48dcc55dd20e3fe29c4aabc96471f703900106254565242c2346d5b3f",
                "md5": "20426f3194f7f1b06ebfc7f803c2be1b",
                "sha256": "24a3335ced4b7d18da244f0fa0b68a5cce74558b8bfe385db2533e8f5e961d69"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "20426f3194f7f1b06ebfc7f803c2be1b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 670864,
            "upload_time": "2025-11-03T22:15:04",
            "upload_time_iso_8601": "2025-11-03T22:15:04.180051Z",
            "url": "https://files.pythonhosted.org/packages/e1/67/37b48dcc55dd20e3fe29c4aabc96471f703900106254565242c2346d5b3f/pyxirr-0.10.8-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "536c5d119a9e1605dbfcd5dbbc7762234008392972b1dcba9ac3164624c680b2",
                "md5": "0cddb4166150cf696fba27f023718ab4",
                "sha256": "c0d4cb328c74a761544d4a78b200064a9ea62b3534f32b1aaa555defbd127be4"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp37-abi3-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "0cddb4166150cf696fba27f023718ab4",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 543472,
            "upload_time": "2025-11-03T22:16:00",
            "upload_time_iso_8601": "2025-11-03T22:16:00.065495Z",
            "url": "https://files.pythonhosted.org/packages/53/6c/5d119a9e1605dbfcd5dbbc7762234008392972b1dcba9ac3164624c680b2/pyxirr-0.10.8-cp37-abi3-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0e71b3ab12603e893b76f56cd59b39cf55ec714f864c0d4b08da108bb7fca1db",
                "md5": "49224d02f8d3e10a2da7aca68911ee7e",
                "sha256": "8613ed3e909025defcd0726f3dff5880759a3cf8ab8004510afb6ea2f66895c8"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "49224d02f8d3e10a2da7aca68911ee7e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 672689,
            "upload_time": "2025-11-03T22:18:01",
            "upload_time_iso_8601": "2025-11-03T22:18:01.399316Z",
            "url": "https://files.pythonhosted.org/packages/0e/71/b3ab12603e893b76f56cd59b39cf55ec714f864c0d4b08da108bb7fca1db/pyxirr-0.10.8-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0c3df5d9da98686220490c80bab8a50bf8f356baf2e3d292859092acf6d5648b",
                "md5": "77ec5e5213d60a3ab824325e96818ffb",
                "sha256": "2cf5216d71d90466965591d92bec14f4a5ccce492e351b5e46a7b1b62fefea44"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "77ec5e5213d60a3ab824325e96818ffb",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 541386,
            "upload_time": "2025-11-03T22:15:37",
            "upload_time_iso_8601": "2025-11-03T22:15:37.881272Z",
            "url": "https://files.pythonhosted.org/packages/0c/3d/f5d9da98686220490c80bab8a50bf8f356baf2e3d292859092acf6d5648b/pyxirr-0.10.8-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f9f7d6deae1e9ab1211552a43d3101c38f96cfba22db9c9ebf8af2767e18ee59",
                "md5": "52ab28cd2f4a1a9e8d2a50873b1bf8ef",
                "sha256": "749bc7a71a1f4257afed6caa71ea4d29a0cfdd15c325582026b077095a3be4cb"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp37-abi3-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "52ab28cd2f4a1a9e8d2a50873b1bf8ef",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 653692,
            "upload_time": "2025-11-03T22:15:41",
            "upload_time_iso_8601": "2025-11-03T22:15:41.970311Z",
            "url": "https://files.pythonhosted.org/packages/f9/f7/d6deae1e9ab1211552a43d3101c38f96cfba22db9c9ebf8af2767e18ee59/pyxirr-0.10.8-cp37-abi3-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a289107c6f5c8936aaf0d8bccdd9f5a666371553c4a20022595a05f23413e2d4",
                "md5": "c245d1efffdd7fb6db1f777c5b1677a3",
                "sha256": "6dd479d44eb0c784b041766044b4a7562d3e22b807b7c8b5fdad123461ebb531"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp37-abi3-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c245d1efffdd7fb6db1f777c5b1677a3",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 739907,
            "upload_time": "2025-11-03T22:16:49",
            "upload_time_iso_8601": "2025-11-03T22:16:49.144409Z",
            "url": "https://files.pythonhosted.org/packages/a2/89/107c6f5c8936aaf0d8bccdd9f5a666371553c4a20022595a05f23413e2d4/pyxirr-0.10.8-cp37-abi3-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "839ec6a4c3258247a99ca8f6650b30453991a03995a627b0d55303bc6f18cc37",
                "md5": "73675c522116b4de592e9a67dce19a11",
                "sha256": "c4b9ea37f905ed6f571292b73942d6c0382823ac326a52b00e62107b8851cbb4"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp37-abi3-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "73675c522116b4de592e9a67dce19a11",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 733700,
            "upload_time": "2025-11-03T22:17:52",
            "upload_time_iso_8601": "2025-11-03T22:17:52.462897Z",
            "url": "https://files.pythonhosted.org/packages/83/9e/c6a4c3258247a99ca8f6650b30453991a03995a627b0d55303bc6f18cc37/pyxirr-0.10.8-cp37-abi3-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "52b3ba76ff08ce7ff049fc05089d9b5527ec2fb3c1e50e8269d903478bed2cc0",
                "md5": "018cde58bfb1b0729e8306a495a2d06e",
                "sha256": "df00db884ecd138bfe9eb2146e5bcc6d6a0f65efeec4cbdffd19aed6ce11f2d3"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp37-abi3-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "018cde58bfb1b0729e8306a495a2d06e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 715211,
            "upload_time": "2025-11-03T22:15:39",
            "upload_time_iso_8601": "2025-11-03T22:15:39.352775Z",
            "url": "https://files.pythonhosted.org/packages/52/b3/ba76ff08ce7ff049fc05089d9b5527ec2fb3c1e50e8269d903478bed2cc0/pyxirr-0.10.8-cp37-abi3-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8895bc398ff75aa70d04b0ed575c8bb39e1caa9052198dc26d8422ab66893372",
                "md5": "4d37c8dd9535551206449be6f8a688ad",
                "sha256": "daf6289d890d95015c046ee400c2d2d8a3994521be8e7c65bd1cb3561cc60c6a"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp37-cp37m-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4d37c8dd9535551206449be6f8a688ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 510622,
            "upload_time": "2025-11-03T22:15:46",
            "upload_time_iso_8601": "2025-11-03T22:15:46.245279Z",
            "url": "https://files.pythonhosted.org/packages/88/95/bc398ff75aa70d04b0ed575c8bb39e1caa9052198dc26d8422ab66893372/pyxirr-0.10.8-cp37-cp37m-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ae6ebbc94c29e4299aba16a630b375142800c0ddff541d3697255c870c52dd92",
                "md5": "7e383a7c6eb79a1fd9334ec8553ebecf",
                "sha256": "5ca77e2d04d078fb77693df7f060d4288fda4b405de98ec64517dfce4bcbc9fa"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp37-cp37m-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7e383a7c6eb79a1fd9334ec8553ebecf",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 458757,
            "upload_time": "2025-11-03T22:17:01",
            "upload_time_iso_8601": "2025-11-03T22:17:01.261511Z",
            "url": "https://files.pythonhosted.org/packages/ae/6e/bbc94c29e4299aba16a630b375142800c0ddff541d3697255c870c52dd92/pyxirr-0.10.8-cp37-cp37m-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1197e5c05089d11d85faa0cf4a3d935ff01baad68aea9528667843f38f4e935e",
                "md5": "03dcfaa0f8a2271d3036e5e8d4277931",
                "sha256": "d539a05d86c044f25f97d89f5c44fd47699f6018fcc0ce5504d0ba409d5cf55c"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "03dcfaa0f8a2271d3036e5e8d4277931",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 474416,
            "upload_time": "2025-11-03T22:16:44",
            "upload_time_iso_8601": "2025-11-03T22:16:44.931513Z",
            "url": "https://files.pythonhosted.org/packages/11/97/e5c05089d11d85faa0cf4a3d935ff01baad68aea9528667843f38f4e935e/pyxirr-0.10.8-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0448bc06dc5df3c109e3e371abcac1d0c7ebec40865ada8a955ad1648ad7ac73",
                "md5": "a2f3ca7e2a18a3f51174affb950ab632",
                "sha256": "3c464ddac89e5f46f2e95acc86c93b69616c9c56c039351a52697ebe7647ed48"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a2f3ca7e2a18a3f51174affb950ab632",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 472048,
            "upload_time": "2025-11-03T22:15:17",
            "upload_time_iso_8601": "2025-11-03T22:15:17.210762Z",
            "url": "https://files.pythonhosted.org/packages/04/48/bc06dc5df3c109e3e371abcac1d0c7ebec40865ada8a955ad1648ad7ac73/pyxirr-0.10.8-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cd64b8f61518be4244efb7b7c79f2b74197c96bb91975dfe35939b3808dc73f7",
                "md5": "4393c14d6517cf92cef2123014b80a92",
                "sha256": "f458b8e6b6744d4728d855c97407afefc3fbd9aca8d30ba7200d7b7894d74eee"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "4393c14d6517cf92cef2123014b80a92",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 667948,
            "upload_time": "2025-11-03T22:15:27",
            "upload_time_iso_8601": "2025-11-03T22:15:27.435193Z",
            "url": "https://files.pythonhosted.org/packages/cd/64/b8f61518be4244efb7b7c79f2b74197c96bb91975dfe35939b3808dc73f7/pyxirr-0.10.8-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c3c58c15d32528de7432ff4d42af7f0b22d6ef9ad501df88c69f9758b761e3bc",
                "md5": "b9236beb73b56110db6c82241f683d5d",
                "sha256": "ed173470f1fcab8747b8c4d7b1a4afc8f4976f381f6a6305b20171ea69bd5c0c"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp37-cp37m-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "b9236beb73b56110db6c82241f683d5d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 541210,
            "upload_time": "2025-11-03T22:16:53",
            "upload_time_iso_8601": "2025-11-03T22:16:53.855820Z",
            "url": "https://files.pythonhosted.org/packages/c3/c5/8c15d32528de7432ff4d42af7f0b22d6ef9ad501df88c69f9758b761e3bc/pyxirr-0.10.8-cp37-cp37m-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d0b86de6983512bc04a0fce37ada0919a1e14e36e54decaa4a8a894c8d62b9fd",
                "md5": "0d477aaf8f9ad9c2d29883ef48146828",
                "sha256": "e228b34d05bb0192d8c4ddfe072b3dbf094458ec58c019247895cc11e0cca021"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "0d477aaf8f9ad9c2d29883ef48146828",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 667404,
            "upload_time": "2025-11-03T22:17:21",
            "upload_time_iso_8601": "2025-11-03T22:17:21.708678Z",
            "url": "https://files.pythonhosted.org/packages/d0/b8/6de6983512bc04a0fce37ada0919a1e14e36e54decaa4a8a894c8d62b9fd/pyxirr-0.10.8-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "abf11069ca6ed6cce9fdd1dedfc6086b9eb2945b7400e7e661ff42055dcf162d",
                "md5": "264311a2a1ca001cfb187ef27b08c5c3",
                "sha256": "01744192cec45a277df86f938af784836091b3ff85bcd79bb5998bfe6935618c"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "264311a2a1ca001cfb187ef27b08c5c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 538897,
            "upload_time": "2025-11-03T22:16:47",
            "upload_time_iso_8601": "2025-11-03T22:16:47.730777Z",
            "url": "https://files.pythonhosted.org/packages/ab/f1/1069ca6ed6cce9fdd1dedfc6086b9eb2945b7400e7e661ff42055dcf162d/pyxirr-0.10.8-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "559a7d3f2a9699dc9ea7a2ede546feb19ce9a8f4439f8c1ee7c6a7c48bb0033d",
                "md5": "4494815ecec7bd2f2a408607d4840d98",
                "sha256": "d6097cfc562bcd0fa0c41888a458fdd77b23b5d9ca5759205319188fe82906bd"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp37-cp37m-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4494815ecec7bd2f2a408607d4840d98",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 656221,
            "upload_time": "2025-11-03T22:15:09",
            "upload_time_iso_8601": "2025-11-03T22:15:09.251254Z",
            "url": "https://files.pythonhosted.org/packages/55/9a/7d3f2a9699dc9ea7a2ede546feb19ce9a8f4439f8c1ee7c6a7c48bb0033d/pyxirr-0.10.8-cp37-cp37m-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6588b601ce38f9e3151df7590acbfe48943236be0dcb8d9a86d44106380f5ec4",
                "md5": "72db6bc3a340c31603b6097e13c6afdb",
                "sha256": "28e999ef99bf7372f0b7757332d94539a18db8c40bcb0f4e8961fb09ed99ff2c"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp37-cp37m-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "72db6bc3a340c31603b6097e13c6afdb",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 737032,
            "upload_time": "2025-11-03T22:15:47",
            "upload_time_iso_8601": "2025-11-03T22:15:47.787900Z",
            "url": "https://files.pythonhosted.org/packages/65/88/b601ce38f9e3151df7590acbfe48943236be0dcb8d9a86d44106380f5ec4/pyxirr-0.10.8-cp37-cp37m-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8f033fd3e0315aecfdc42fd51291990c284bbea8919fc5b9ed104f5e7f0403e8",
                "md5": "1790684bfa9e09ada7700f2a24e63974",
                "sha256": "c77b49ad0ba1b7616078d4ec926d8651927271bbe730bb846762b724a249bafc"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp37-cp37m-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "1790684bfa9e09ada7700f2a24e63974",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 731023,
            "upload_time": "2025-11-03T22:17:18",
            "upload_time_iso_8601": "2025-11-03T22:17:18.272198Z",
            "url": "https://files.pythonhosted.org/packages/8f/03/3fd3e0315aecfdc42fd51291990c284bbea8919fc5b9ed104f5e7f0403e8/pyxirr-0.10.8-cp37-cp37m-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9bfcccb4a6812b63ee767b90573bf02172772038a6cc6267bd4d3cb90ef7035a",
                "md5": "837163e01d0f209790d061c5859a0de5",
                "sha256": "aa129481a5b58cd24eb18041d2b9a665cb986d74338dc80f441253e0076830a8"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "837163e01d0f209790d061c5859a0de5",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 712801,
            "upload_time": "2025-11-03T22:18:02",
            "upload_time_iso_8601": "2025-11-03T22:18:02.803942Z",
            "url": "https://files.pythonhosted.org/packages/9b/fc/ccb4a6812b63ee767b90573bf02172772038a6cc6267bd4d3cb90ef7035a/pyxirr-0.10.8-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2b5b23f8fc6a13ba67075559572557a5d2c4c071b41ad95e782c0f430ddaf0f7",
                "md5": "478fe9c4b17b5c4c4cd8b10e1716fae1",
                "sha256": "5286f81120aebd383ea9b4f71b65b71456a803daabde78bfac1fa62f0f85e5bb"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp37-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "478fe9c4b17b5c4c4cd8b10e1716fae1",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 457043,
            "upload_time": "2025-11-03T22:17:57",
            "upload_time_iso_8601": "2025-11-03T22:17:57.738898Z",
            "url": "https://files.pythonhosted.org/packages/2b/5b/23f8fc6a13ba67075559572557a5d2c4c071b41ad95e782c0f430ddaf0f7/pyxirr-0.10.8-cp37-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "98bd50af0a19c188e186a63af93d857db902e80fc8e1138d561be1865669a0ac",
                "md5": "7c678c9b240fe70c5aa06d09a707dad0",
                "sha256": "0622789e312f67747af6d8036573d3be6b665f045df5cb739af932f4bc21dc83"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp38-cp38-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7c678c9b240fe70c5aa06d09a707dad0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 510613,
            "upload_time": "2025-11-03T22:16:50",
            "upload_time_iso_8601": "2025-11-03T22:16:50.904943Z",
            "url": "https://files.pythonhosted.org/packages/98/bd/50af0a19c188e186a63af93d857db902e80fc8e1138d561be1865669a0ac/pyxirr-0.10.8-cp38-cp38-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6e3cbaad99fb1a2bb933cd2e94b870036a87a4abf6735c3286bea5dc538e8736",
                "md5": "37632778895b253b1af363282d340647",
                "sha256": "0754c362ed748d86ac55d48e5584c07de8b054d11cfe4c2c1eb46c38e13aa8a9"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "37632778895b253b1af363282d340647",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 458751,
            "upload_time": "2025-11-03T22:16:28",
            "upload_time_iso_8601": "2025-11-03T22:16:28.360314Z",
            "url": "https://files.pythonhosted.org/packages/6e/3c/baad99fb1a2bb933cd2e94b870036a87a4abf6735c3286bea5dc538e8736/pyxirr-0.10.8-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3fd65610ca77518bdc33d4e87d1b3de622bc5b47d0892f2ee6bc93a98989be46",
                "md5": "4e6d8d3739e001ade33835ccd0b2dc58",
                "sha256": "dfeb4bd8d95d1aff4717728aaa8c2417df47adb72cf62d3c94266f99485dd911"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4e6d8d3739e001ade33835ccd0b2dc58",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 474353,
            "upload_time": "2025-11-03T22:15:35",
            "upload_time_iso_8601": "2025-11-03T22:15:35.146411Z",
            "url": "https://files.pythonhosted.org/packages/3f/d6/5610ca77518bdc33d4e87d1b3de622bc5b47d0892f2ee6bc93a98989be46/pyxirr-0.10.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c7ff6e481bdea56659099c44044ae1a62cde89979eba1837af7e6e81e2bbc959",
                "md5": "ec0e76d1f2692b2de3d792be4d06671a",
                "sha256": "d5a9bba6f5f2c4d6d864c77a89ea9665c9a7283f51fe88a0f1fd028f06cdcfa2"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ec0e76d1f2692b2de3d792be4d06671a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 471986,
            "upload_time": "2025-11-03T22:17:30",
            "upload_time_iso_8601": "2025-11-03T22:17:30.905236Z",
            "url": "https://files.pythonhosted.org/packages/c7/ff/6e481bdea56659099c44044ae1a62cde89979eba1837af7e6e81e2bbc959/pyxirr-0.10.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fd0b72a8c6065393c7e7bf0563c9f4f48c537cdc60cc198d055c37cc54f80a3d",
                "md5": "7890f876e67c04f1678f0bcc9fc5687d",
                "sha256": "f0e57f199ec2de4e6b8ffd1e5ed82d96996b4aa5a2449c2acaf085a35101216c"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "7890f876e67c04f1678f0bcc9fc5687d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 667785,
            "upload_time": "2025-11-03T22:15:28",
            "upload_time_iso_8601": "2025-11-03T22:15:28.832523Z",
            "url": "https://files.pythonhosted.org/packages/fd/0b/72a8c6065393c7e7bf0563c9f4f48c537cdc60cc198d055c37cc54f80a3d/pyxirr-0.10.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "120c5310d030dd11221fd55516df70bf1115849f0e716405346c79bdd4da454f",
                "md5": "64c5f97b759185d5ce5c5964c31bc30b",
                "sha256": "7bde2c88ed1fd1a7df3b84616bb4a09ab68f46eb7965c1d7f3556020e3355e85"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp38-cp38-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "64c5f97b759185d5ce5c5964c31bc30b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 541111,
            "upload_time": "2025-11-03T22:16:56",
            "upload_time_iso_8601": "2025-11-03T22:16:56.637005Z",
            "url": "https://files.pythonhosted.org/packages/12/0c/5310d030dd11221fd55516df70bf1115849f0e716405346c79bdd4da454f/pyxirr-0.10.8-cp38-cp38-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "621d53abf64311b9ecd06c32259ff59cb83c8f7803fcd3b9b5a8f398378273b7",
                "md5": "5420f199987f82c1b7fbe6199ea8c5ac",
                "sha256": "1624dbf2acee0d917298fee046bc9583ca8fe7d7fb30a34309b85c59a4fd2725"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "5420f199987f82c1b7fbe6199ea8c5ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 667440,
            "upload_time": "2025-11-03T22:17:12",
            "upload_time_iso_8601": "2025-11-03T22:17:12.062648Z",
            "url": "https://files.pythonhosted.org/packages/62/1d/53abf64311b9ecd06c32259ff59cb83c8f7803fcd3b9b5a8f398378273b7/pyxirr-0.10.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f47c0e723936db4bf4788a060a7bc437c51e1bc5178cebee22bbc1db66faf632",
                "md5": "0c35b66d263cd31a524ee4d253834279",
                "sha256": "459978743405a01e08d3752caa2516630d697105a0d9f0502e7ff8af78b6e05a"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0c35b66d263cd31a524ee4d253834279",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 538887,
            "upload_time": "2025-11-03T22:16:34",
            "upload_time_iso_8601": "2025-11-03T22:16:34.587312Z",
            "url": "https://files.pythonhosted.org/packages/f4/7c/0e723936db4bf4788a060a7bc437c51e1bc5178cebee22bbc1db66faf632/pyxirr-0.10.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ed5aef07a09b5a1e0504c466d7fbc8f67da38affcd4d0fe2da8301a3264f8a50",
                "md5": "675763b4aacf1245fbab7de59660b99f",
                "sha256": "3e48995d3e987d89415dd0804f3459b686eb693e13c1e5e72f646425fb27845d"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "675763b4aacf1245fbab7de59660b99f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 656225,
            "upload_time": "2025-11-03T22:17:41",
            "upload_time_iso_8601": "2025-11-03T22:17:41.475028Z",
            "url": "https://files.pythonhosted.org/packages/ed/5a/ef07a09b5a1e0504c466d7fbc8f67da38affcd4d0fe2da8301a3264f8a50/pyxirr-0.10.8-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bb966412798862b574c346a61bbea1f803871d759347e82dc480ca6cce2a9f1a",
                "md5": "55afdcd86905c94310a85fc90e10223a",
                "sha256": "da35950bf021f0ec53fb1b5c90f24893678f14cf5aeb64cba33552637edce96f"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp38-cp38-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "55afdcd86905c94310a85fc90e10223a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 736952,
            "upload_time": "2025-11-03T22:16:27",
            "upload_time_iso_8601": "2025-11-03T22:16:27.057933Z",
            "url": "https://files.pythonhosted.org/packages/bb/96/6412798862b574c346a61bbea1f803871d759347e82dc480ca6cce2a9f1a/pyxirr-0.10.8-cp38-cp38-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "85fa7577af64efa863535df6ad9e5257be9a07139327933887f2ef1e8df942ba",
                "md5": "2499cfc036bc0d083b2bc73cbc35ec28",
                "sha256": "b69d3e475ce89da242adb57f2737107e1a3098b4be22ea6dff6103a2fa873c70"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "2499cfc036bc0d083b2bc73cbc35ec28",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 731089,
            "upload_time": "2025-11-03T22:16:58",
            "upload_time_iso_8601": "2025-11-03T22:16:58.124764Z",
            "url": "https://files.pythonhosted.org/packages/85/fa/7577af64efa863535df6ad9e5257be9a07139327933887f2ef1e8df942ba/pyxirr-0.10.8-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "189d095652978e5d95888284b55213f02fb4d5a994746fe64ff6e7acde183085",
                "md5": "34ec49b99bf1432cbf9906ff24a21b82",
                "sha256": "1ab526065f9a2f4ce3148cf759c55338cd9fd9dc6afb1b0c8de7721e434c3a23"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "34ec49b99bf1432cbf9906ff24a21b82",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 712787,
            "upload_time": "2025-11-03T22:16:55",
            "upload_time_iso_8601": "2025-11-03T22:16:55.139087Z",
            "url": "https://files.pythonhosted.org/packages/18/9d/095652978e5d95888284b55213f02fb4d5a994746fe64ff6e7acde183085/pyxirr-0.10.8-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "59f500db9e396edeb8b44e40018610634bcfa644760f5d8a2a264dcd19655cac",
                "md5": "952023201b3946a4491dec4008d687dd",
                "sha256": "6ef3754ab95361d0a011cbe18940931fcbd8d34a9393d0cf55e899743b9452ef"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "952023201b3946a4491dec4008d687dd",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 457041,
            "upload_time": "2025-11-03T22:17:33",
            "upload_time_iso_8601": "2025-11-03T22:17:33.845960Z",
            "url": "https://files.pythonhosted.org/packages/59/f5/00db9e396edeb8b44e40018610634bcfa644760f5d8a2a264dcd19655cac/pyxirr-0.10.8-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e7fcde5ddaf678da1055a16332350315713c0ea08b31c21be19947a0784f8975",
                "md5": "6b91f8760bdc89a6b1e4f84c4d2e7bf3",
                "sha256": "cb866c352a657b589aa423b49b0b09f45a6578db596c18cb3e037cbe2f3eef67"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6b91f8760bdc89a6b1e4f84c4d2e7bf3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 510741,
            "upload_time": "2025-11-03T22:16:31",
            "upload_time_iso_8601": "2025-11-03T22:16:31.441452Z",
            "url": "https://files.pythonhosted.org/packages/e7/fc/de5ddaf678da1055a16332350315713c0ea08b31c21be19947a0784f8975/pyxirr-0.10.8-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f9d352cb5939a75b540b1889322c0fc65222679f43e42f5378013554ce575c0b",
                "md5": "7acd094985bb60a3efbd171e04df3e43",
                "sha256": "c2a83faaeb6e3120aaab6f8bda8de82f575648ba80288d26511cf4e25dee0304"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7acd094985bb60a3efbd171e04df3e43",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 458632,
            "upload_time": "2025-11-03T22:16:20",
            "upload_time_iso_8601": "2025-11-03T22:16:20.708312Z",
            "url": "https://files.pythonhosted.org/packages/f9/d3/52cb5939a75b540b1889322c0fc65222679f43e42f5378013554ce575c0b/pyxirr-0.10.8-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5b6d1cc78522ecb4cfc0868eefb9168292f43800b391719144ee4e877b3e8b7e",
                "md5": "740816b325c8b2abad0197ea7352757e",
                "sha256": "98a091f416398021b232988270d99b2fa5ba92320a081c94514e53b5627c6d1d"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "740816b325c8b2abad0197ea7352757e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 474347,
            "upload_time": "2025-11-03T22:16:01",
            "upload_time_iso_8601": "2025-11-03T22:16:01.915080Z",
            "url": "https://files.pythonhosted.org/packages/5b/6d/1cc78522ecb4cfc0868eefb9168292f43800b391719144ee4e877b3e8b7e/pyxirr-0.10.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "018bf5a5b406f5aad50cfaeb93a683c09d783e76a56bf5f097e382bd488a6a2e",
                "md5": "56d3310b3b92dc2107c23e111cf7f91e",
                "sha256": "9f634c047b2c5c237d1fb76341d02ebf1ac182fe80058b1b53e9e9d80c2f2f76"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "56d3310b3b92dc2107c23e111cf7f91e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 472751,
            "upload_time": "2025-11-03T22:17:38",
            "upload_time_iso_8601": "2025-11-03T22:17:38.259464Z",
            "url": "https://files.pythonhosted.org/packages/01/8b/f5a5b406f5aad50cfaeb93a683c09d783e76a56bf5f097e382bd488a6a2e/pyxirr-0.10.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8c06b06fad92088af85e2114a38aaf8f40d2af49fb811cf2c7ff8aeb5913daf5",
                "md5": "469d99f3dab357ad35fef1f8386a0707",
                "sha256": "29c28357a8072589d054343be781abfe86d80f5068645da68038821917898d2d"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "469d99f3dab357ad35fef1f8386a0707",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 667757,
            "upload_time": "2025-11-03T22:16:52",
            "upload_time_iso_8601": "2025-11-03T22:16:52.303209Z",
            "url": "https://files.pythonhosted.org/packages/8c/06/b06fad92088af85e2114a38aaf8f40d2af49fb811cf2c7ff8aeb5913daf5/pyxirr-0.10.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "86981d2bd41ef9a599939a1178ebfdacaf58d1fbc80efc9558bb9e44c9928789",
                "md5": "7aee0a46040f2f72845784dbb26c2b49",
                "sha256": "d2a386b0b6c2e9745d8d4cf8b249a16e56806a9707b0643f35581254853d3b31"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp39-cp39-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "7aee0a46040f2f72845784dbb26c2b49",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 540970,
            "upload_time": "2025-11-03T22:15:02",
            "upload_time_iso_8601": "2025-11-03T22:15:02.731411Z",
            "url": "https://files.pythonhosted.org/packages/86/98/1d2bd41ef9a599939a1178ebfdacaf58d1fbc80efc9558bb9e44c9928789/pyxirr-0.10.8-cp39-cp39-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7f0cf4c261cd4b570e276216093102c5b22eabfba6e5dccf108ed88bcbee7260",
                "md5": "01c6c3d43a0b67aef0a411fcf7d009f7",
                "sha256": "323e7d2099796fd755a122a67d3c1d21ad64fb8a8ffd6b153f7f0ab58ac0842d"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "01c6c3d43a0b67aef0a411fcf7d009f7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 667273,
            "upload_time": "2025-11-03T22:17:32",
            "upload_time_iso_8601": "2025-11-03T22:17:32.449798Z",
            "url": "https://files.pythonhosted.org/packages/7f/0c/f4c261cd4b570e276216093102c5b22eabfba6e5dccf108ed88bcbee7260/pyxirr-0.10.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cb3c68911007a3b988956b35a011603b1f2e0591df842b2e372f31208dc5a87d",
                "md5": "b71d6458490107377416a2456a1882a4",
                "sha256": "6071d412441c3ed2c1c094e6cb40d706aec96b9f04e620cf326a3b96129a1e5b"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b71d6458490107377416a2456a1882a4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 538638,
            "upload_time": "2025-11-03T22:16:11",
            "upload_time_iso_8601": "2025-11-03T22:16:11.937958Z",
            "url": "https://files.pythonhosted.org/packages/cb/3c/68911007a3b988956b35a011603b1f2e0591df842b2e372f31208dc5a87d/pyxirr-0.10.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eb90ffcb76c4eef080a026687804e879e96b25a220371fe9e8115993e4684fc9",
                "md5": "618b92dfd9948325da6c734a745c1083",
                "sha256": "32b49b5eaebcec63d019bdf253247804864ea3247c79e1b4dc288bd7cb51288a"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "618b92dfd9948325da6c734a745c1083",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 656083,
            "upload_time": "2025-11-03T22:15:52",
            "upload_time_iso_8601": "2025-11-03T22:15:52.827857Z",
            "url": "https://files.pythonhosted.org/packages/eb/90/ffcb76c4eef080a026687804e879e96b25a220371fe9e8115993e4684fc9/pyxirr-0.10.8-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5373eb4690ddc075dcc7c184b1819b8ce3c30d294a57aaf564cc8115b4ad07d3",
                "md5": "013b027e75a702dd29b7fa844e6aa177",
                "sha256": "cba4cbf4dceedec8e951afe5726100e15774079aaf48fc5eafea58cda4ae2c0b"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp39-cp39-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "013b027e75a702dd29b7fa844e6aa177",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 737763,
            "upload_time": "2025-11-03T22:15:36",
            "upload_time_iso_8601": "2025-11-03T22:15:36.575525Z",
            "url": "https://files.pythonhosted.org/packages/53/73/eb4690ddc075dcc7c184b1819b8ce3c30d294a57aaf564cc8115b4ad07d3/pyxirr-0.10.8-cp39-cp39-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "545a1f793a7503f568b9f665f9d9a2a6a2909ada359a69f71b63900f345010bd",
                "md5": "30c718892cf63232d6aae9ec9cf5555d",
                "sha256": "a5561e446322b06517a8f2c32b219e4aea4343960cafa23c4ba242142d426ea6"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "30c718892cf63232d6aae9ec9cf5555d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 730907,
            "upload_time": "2025-11-03T22:15:12",
            "upload_time_iso_8601": "2025-11-03T22:15:12.583268Z",
            "url": "https://files.pythonhosted.org/packages/54/5a/1f793a7503f568b9f665f9d9a2a6a2909ada359a69f71b63900f345010bd/pyxirr-0.10.8-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "26b4b4c70a6af43d932114ae220f2ca211cbf936328a511764dcaef1acc3f8df",
                "md5": "9656839b4f87796eba5f3505adb2c740",
                "sha256": "e17a7ea95aafc3cdf81c13d908f7d8046a4dc09335244e7f97c9f948e70b8f63"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9656839b4f87796eba5f3505adb2c740",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 712490,
            "upload_time": "2025-11-03T22:17:10",
            "upload_time_iso_8601": "2025-11-03T22:17:10.256042Z",
            "url": "https://files.pythonhosted.org/packages/26/b4/b4c70a6af43d932114ae220f2ca211cbf936328a511764dcaef1acc3f8df/pyxirr-0.10.8-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0493e57aba35bd493882792594e40807f17b368690b7acddd07ebcc9aa3d3db7",
                "md5": "a250f826e5d55fdda86ae1cbb929a313",
                "sha256": "5bd60d9b1cb744ac2e5124860b26aad810e00d22bd8643865bec8f26a8e8de15"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a250f826e5d55fdda86ae1cbb929a313",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 456849,
            "upload_time": "2025-11-03T22:17:14",
            "upload_time_iso_8601": "2025-11-03T22:17:14.927950Z",
            "url": "https://files.pythonhosted.org/packages/04/93/e57aba35bd493882792594e40807f17b368690b7acddd07ebcc9aa3d3db7/pyxirr-0.10.8-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "69799c329287b4fbcea245a74680e06f0b9139305ef71ba814b2f6c12562285e",
                "md5": "b1713b3e16211709b7863514d6650f20",
                "sha256": "a5620dd76015444f26f805c4983a41664898fbf2a74956a28589b171ed96d2f5"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.8.tar.gz",
            "has_sig": false,
            "md5_digest": "b1713b3e16211709b7863514d6650f20",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 40341,
            "upload_time": "2025-11-03T22:16:19",
            "upload_time_iso_8601": "2025-11-03T22:16:19.702347Z",
            "url": "https://files.pythonhosted.org/packages/69/79/9c329287b4fbcea245a74680e06f0b9139305ef71ba814b2f6c12562285e/pyxirr-0.10.8.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-11-03 22:16:19",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Anexen",
    "github_project": "pyxirr",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pyxirr"
}
        
Elapsed time: 2.80889s