pyxirr


Namepyxirr JSON
Version 0.10.7 PyPI version JSON
download
home_pagehttps://github.com/Anexen/pyxirr
SummaryRust-powered collection of financial functions for Python.
upload_time2025-07-13 08:43:32
maintainerNone
docs_urlNone
authorAnexen
requires_python<3.14,>=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.14,>=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/f4/95/6401007e95eb01333c919abe19c37402332dfc905449b7ab32db08fb3c93/pyxirr-0.10.7.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.7",
    "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": "b17bc5758fc70cbcd482b6041742e9ab3237205aadb425cb1799859a1af36c9e",
                "md5": "47aa4485ecf4a70ac5dc4471981fcf86",
                "sha256": "53fb39c7fa3941bbce7fbb899c21a5ce16de2c0a5c0f33cacbcbe5f5585edaf4"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "47aa4485ecf4a70ac5dc4471981fcf86",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.14,>=3.7",
            "size": 487743,
            "upload_time": "2025-07-13T08:44:55",
            "upload_time_iso_8601": "2025-07-13T08:44:55.188728Z",
            "url": "https://files.pythonhosted.org/packages/b1/7b/c5758fc70cbcd482b6041742e9ab3237205aadb425cb1799859a1af36c9e/pyxirr-0.10.7-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "39f6400fe6aa6394a7d15cf7194f763c79f6dbfe17157729f0eabdfc4743c657",
                "md5": "5e1970984a62d80424af873a6ef122cd",
                "sha256": "057678177d45b1a7d44252c4a9d8362949ea432897feeebb0395731c9dca79fe"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5e1970984a62d80424af873a6ef122cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.14,>=3.7",
            "size": 441543,
            "upload_time": "2025-07-13T08:45:23",
            "upload_time_iso_8601": "2025-07-13T08:45:23.602650Z",
            "url": "https://files.pythonhosted.org/packages/39/f6/400fe6aa6394a7d15cf7194f763c79f6dbfe17157729f0eabdfc4743c657/pyxirr-0.10.7-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0aa6bfc0610ea6737690245e8d4cce4f089be7610f643f02f1b68ce4642b2603",
                "md5": "da0ba9714b88c3c7d4779a2cbca64bd9",
                "sha256": "a97d12b49e834f73717117209cb76b09565721ea6e4baf8dee88cab3a6b140ff"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "da0ba9714b88c3c7d4779a2cbca64bd9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.14,>=3.7",
            "size": 449410,
            "upload_time": "2025-07-13T08:44:25",
            "upload_time_iso_8601": "2025-07-13T08:44:25.137806Z",
            "url": "https://files.pythonhosted.org/packages/0a/a6/bfc0610ea6737690245e8d4cce4f089be7610f643f02f1b68ce4642b2603/pyxirr-0.10.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c544960faf68ab9593af32b95e3efb2b966002f089625320a7cdd0bde6ff49c8",
                "md5": "8920f4a84ff9ebee53171041f392a56e",
                "sha256": "75793ffc661bfbf52d2e13d9266a7d1a483cf75ce0a6d76362ccbb4171cbeeac"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "8920f4a84ff9ebee53171041f392a56e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.14,>=3.7",
            "size": 449318,
            "upload_time": "2025-07-13T08:44:23",
            "upload_time_iso_8601": "2025-07-13T08:44:23.728871Z",
            "url": "https://files.pythonhosted.org/packages/c5/44/960faf68ab9593af32b95e3efb2b966002f089625320a7cdd0bde6ff49c8/pyxirr-0.10.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8e2ace6db501d65ab40767cce11772389d9cb163f39b8fdd71e77b30d98b4d9d",
                "md5": "4ebca9ded3fa843fb9b8d01d1325a4d9",
                "sha256": "e09a58f489d821295f68dbc43fc98c0a4aa08c8a23a9b42d254d9b4222161703"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "4ebca9ded3fa843fb9b8d01d1325a4d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.14,>=3.7",
            "size": 611537,
            "upload_time": "2025-07-13T08:44:56",
            "upload_time_iso_8601": "2025-07-13T08:44:56.322168Z",
            "url": "https://files.pythonhosted.org/packages/8e/2a/ce6db501d65ab40767cce11772389d9cb163f39b8fdd71e77b30d98b4d9d/pyxirr-0.10.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "06f9e50ae3741fe18e84860da771a48d5638ccc4207d6465c57b7626135d27b2",
                "md5": "975b89a7d9899d2e44de9acb831f18f7",
                "sha256": "efa2b9ec0e4ecda2a20072d182db67e317ff98b10e1f1086733ae97aa81e8d3f"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp310-cp310-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "975b89a7d9899d2e44de9acb831f18f7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.14,>=3.7",
            "size": 508450,
            "upload_time": "2025-07-13T08:44:27",
            "upload_time_iso_8601": "2025-07-13T08:44:27.804695Z",
            "url": "https://files.pythonhosted.org/packages/06/f9/e50ae3741fe18e84860da771a48d5638ccc4207d6465c57b7626135d27b2/pyxirr-0.10.7-cp310-cp310-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6c38ee2f14de205ac31bc760d80b05220d6a5bd43939aef0bac526ef93ec1cc8",
                "md5": "2ddcf05c1ed455cabef279cc6d1ce74c",
                "sha256": "33f62c0a85079ccc4825973eedfbf4c2bd5246a59e9ae22d8c1ae03892fc8c21"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "2ddcf05c1ed455cabef279cc6d1ce74c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.14,>=3.7",
            "size": 626226,
            "upload_time": "2025-07-13T08:45:24",
            "upload_time_iso_8601": "2025-07-13T08:45:24.809752Z",
            "url": "https://files.pythonhosted.org/packages/6c/38/ee2f14de205ac31bc760d80b05220d6a5bd43939aef0bac526ef93ec1cc8/pyxirr-0.10.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "59aa7e02b82720ffd503f8fa3c515f13d4e67c528aea36f3b2b5ce2f38bb7f94",
                "md5": "083ad4c598c65b3ad2859a40ed65c635",
                "sha256": "30e8946e1cc887b67689bb1353c1348c6c8a80f81b725a3db9d9291ff2146354"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "083ad4c598c65b3ad2859a40ed65c635",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.14,>=3.7",
            "size": 507751,
            "upload_time": "2025-07-13T08:44:41",
            "upload_time_iso_8601": "2025-07-13T08:44:41.613087Z",
            "url": "https://files.pythonhosted.org/packages/59/aa/7e02b82720ffd503f8fa3c515f13d4e67c528aea36f3b2b5ce2f38bb7f94/pyxirr-0.10.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9f658aefb3c89b150d0f1972c04e1f9f3bc9bafe54f2b568198fc62182c2feee",
                "md5": "c0452735761e7bb4c7d28a463b7f2743",
                "sha256": "b33bddabb52c74de95bbac5a70ad7713463742f4ec6343674d901cc9a864a37d"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c0452735761e7bb4c7d28a463b7f2743",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.14,>=3.7",
            "size": 629569,
            "upload_time": "2025-07-13T08:44:36",
            "upload_time_iso_8601": "2025-07-13T08:44:36.590119Z",
            "url": "https://files.pythonhosted.org/packages/9f/65/8aefb3c89b150d0f1972c04e1f9f3bc9bafe54f2b568198fc62182c2feee/pyxirr-0.10.7-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "387478c90ce0d5bdaf6719f99c4c805ea1d4226b2cbfac9e92c4374148777e5d",
                "md5": "434c59f70417a35ddaf4aebdf8c827f5",
                "sha256": "73e21c5f07d0a8f622a82990ae7bc9f8a6bf22c6fa2de7e0229e937a6d5f3c08"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp310-cp310-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "434c59f70417a35ddaf4aebdf8c827f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.14,>=3.7",
            "size": 712840,
            "upload_time": "2025-07-13T08:44:19",
            "upload_time_iso_8601": "2025-07-13T08:44:19.800716Z",
            "url": "https://files.pythonhosted.org/packages/38/74/78c90ce0d5bdaf6719f99c4c805ea1d4226b2cbfac9e92c4374148777e5d/pyxirr-0.10.7-cp310-cp310-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1d4fbc0df4c86ba21030bee9470858c294767b673c925b55d3779625ebd807a3",
                "md5": "c8171bea0b2cd6af7ac61dd2b1231d77",
                "sha256": "969d5d94275c146c12a38a65482d978b3c998a59195055a22cd41686ce12b4b0"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "c8171bea0b2cd6af7ac61dd2b1231d77",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.14,>=3.7",
            "size": 691538,
            "upload_time": "2025-07-13T08:43:54",
            "upload_time_iso_8601": "2025-07-13T08:43:54.800293Z",
            "url": "https://files.pythonhosted.org/packages/1d/4f/bc0df4c86ba21030bee9470858c294767b673c925b55d3779625ebd807a3/pyxirr-0.10.7-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "33bf03c602db03fa55a864f5595a3799a91dc6344015714a5256065310441940",
                "md5": "31f322b3974f5f053f344339f9e8a42b",
                "sha256": "5c59a4d55fc1745095efc8782da299269050fb608017fa36f90dda05a16dfc35"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "31f322b3974f5f053f344339f9e8a42b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.14,>=3.7",
            "size": 679671,
            "upload_time": "2025-07-13T08:43:57",
            "upload_time_iso_8601": "2025-07-13T08:43:57.751839Z",
            "url": "https://files.pythonhosted.org/packages/33/bf/03c602db03fa55a864f5595a3799a91dc6344015714a5256065310441940/pyxirr-0.10.7-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e4dd15a784e5bda718f8d29d3be52b53d495d1e6f3df855140afceb458556186",
                "md5": "75a383071127acbe085aa2741f80dbc1",
                "sha256": "8cdaa676b20265636d475b4c4e145335d926806bbd3257a49b2dfd0f9cc8758b"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "75a383071127acbe085aa2741f80dbc1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": "<3.14,>=3.7",
            "size": 443883,
            "upload_time": "2025-07-13T08:44:22",
            "upload_time_iso_8601": "2025-07-13T08:44:22.614486Z",
            "url": "https://files.pythonhosted.org/packages/e4/dd/15a784e5bda718f8d29d3be52b53d495d1e6f3df855140afceb458556186/pyxirr-0.10.7-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d217f0ad158b4485ea620c362a931ba86d9d24e34376e83ec87ea6333605bf05",
                "md5": "f92cecf6809186be2f7fefa8159ca8f9",
                "sha256": "b8d283bcd25e787c00d2961509d7646f3366fe305e789d4be595c968088955cc"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f92cecf6809186be2f7fefa8159ca8f9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.14,>=3.7",
            "size": 487762,
            "upload_time": "2025-07-13T08:44:18",
            "upload_time_iso_8601": "2025-07-13T08:44:18.676034Z",
            "url": "https://files.pythonhosted.org/packages/d2/17/f0ad158b4485ea620c362a931ba86d9d24e34376e83ec87ea6333605bf05/pyxirr-0.10.7-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d5632ebd2ca1d68a981fa787ddf2c4c2567a4643ce9348a56f7ab09ab7e236e6",
                "md5": "276c1ea2e0f03d5abfc765e253f713d5",
                "sha256": "4b4159f589ef92eba064f7bc36f88851d10707e22d4ddae7662aab04c30dc70f"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "276c1ea2e0f03d5abfc765e253f713d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.14,>=3.7",
            "size": 441569,
            "upload_time": "2025-07-13T08:45:27",
            "upload_time_iso_8601": "2025-07-13T08:45:27.140089Z",
            "url": "https://files.pythonhosted.org/packages/d5/63/2ebd2ca1d68a981fa787ddf2c4c2567a4643ce9348a56f7ab09ab7e236e6/pyxirr-0.10.7-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f6f00a16cf8c9096162fe5766a317c9a2b57ee40cda3f19a7849a1ab4e838e06",
                "md5": "7f7663130b82af117e0e98a9b6238562",
                "sha256": "b5eca197ad21cd8bc8092b714911dbdd67d3ee22b8b9371269af12c26904108e"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7f7663130b82af117e0e98a9b6238562",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.14,>=3.7",
            "size": 449430,
            "upload_time": "2025-07-13T08:43:52",
            "upload_time_iso_8601": "2025-07-13T08:43:52.534299Z",
            "url": "https://files.pythonhosted.org/packages/f6/f0/0a16cf8c9096162fe5766a317c9a2b57ee40cda3f19a7849a1ab4e838e06/pyxirr-0.10.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1d6722692f44addd2402e33cb5d0bfbe64c6ee69fa2e0dd1140384e31e99e408",
                "md5": "79569b3e2f7aea8e237751c0115b0ad0",
                "sha256": "f37a77a86d0933c034dc34fe2b4f8bb2661eacaf07b7b0013259f912e89d292b"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "79569b3e2f7aea8e237751c0115b0ad0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.14,>=3.7",
            "size": 449306,
            "upload_time": "2025-07-13T08:44:09",
            "upload_time_iso_8601": "2025-07-13T08:44:09.714804Z",
            "url": "https://files.pythonhosted.org/packages/1d/67/22692f44addd2402e33cb5d0bfbe64c6ee69fa2e0dd1140384e31e99e408/pyxirr-0.10.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e27d9468261f982897d1a2219f7025c03e6f023479e119fca91b66df3f1d2acd",
                "md5": "2f5a8e7f2f9e2e049264b3cefb0c733f",
                "sha256": "4fa728c4f372a379350241530c1b719c094863c7762ee9b73143d191efc5442c"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "2f5a8e7f2f9e2e049264b3cefb0c733f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.14,>=3.7",
            "size": 611480,
            "upload_time": "2025-07-13T08:45:05",
            "upload_time_iso_8601": "2025-07-13T08:45:05.607614Z",
            "url": "https://files.pythonhosted.org/packages/e2/7d/9468261f982897d1a2219f7025c03e6f023479e119fca91b66df3f1d2acd/pyxirr-0.10.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1568d0ce704c766ad1f7919dd2e3fbfd0d63e12b04d1303b8967c35be33fe191",
                "md5": "c3858b75de7b7818e42bf6e076ffdef5",
                "sha256": "dd3262df1df2d7d72b3edb5252b55b09478b6ae9608394416281ec094a9a734f"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp311-cp311-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "c3858b75de7b7818e42bf6e076ffdef5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.14,>=3.7",
            "size": 508473,
            "upload_time": "2025-07-13T08:44:16",
            "upload_time_iso_8601": "2025-07-13T08:44:16.386661Z",
            "url": "https://files.pythonhosted.org/packages/15/68/d0ce704c766ad1f7919dd2e3fbfd0d63e12b04d1303b8967c35be33fe191/pyxirr-0.10.7-cp311-cp311-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cf78f6a0eb804de0eb597e0b77390ae0c5dc73ac5ba16fda53a73632adf92e31",
                "md5": "c02e0df228ba50916b8d02c0ff16a460",
                "sha256": "8419777db2446185cbe51f558289838f20500a940c953734105c9e1c4214f333"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "c02e0df228ba50916b8d02c0ff16a460",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.14,>=3.7",
            "size": 626307,
            "upload_time": "2025-07-13T08:45:28",
            "upload_time_iso_8601": "2025-07-13T08:45:28.333753Z",
            "url": "https://files.pythonhosted.org/packages/cf/78/f6a0eb804de0eb597e0b77390ae0c5dc73ac5ba16fda53a73632adf92e31/pyxirr-0.10.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1bc7ce85510ffe3ed5d9470b9e63ffa814041e7c171a64ae24069d25ac31877a",
                "md5": "122171d7042fc2fcd762503966acb3bc",
                "sha256": "41fa55e4138a6814b79225c4e9a4293c4541266f56a8d9a2ffcfacc48934ee88"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "122171d7042fc2fcd762503966acb3bc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.14,>=3.7",
            "size": 507720,
            "upload_time": "2025-07-13T08:44:35",
            "upload_time_iso_8601": "2025-07-13T08:44:35.270994Z",
            "url": "https://files.pythonhosted.org/packages/1b/c7/ce85510ffe3ed5d9470b9e63ffa814041e7c171a64ae24069d25ac31877a/pyxirr-0.10.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f7d0ce1b3f39e56432ece57bb4b45c89a670dca4cd77bcb98ebd31297aa50961",
                "md5": "628ff18397572dca65ab9cb2e4226f03",
                "sha256": "f01de7bcb017a17158b90f3a966481ef47748cb1761505327edc43387aec997c"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "628ff18397572dca65ab9cb2e4226f03",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.14,>=3.7",
            "size": 629585,
            "upload_time": "2025-07-13T08:44:44",
            "upload_time_iso_8601": "2025-07-13T08:44:44.305490Z",
            "url": "https://files.pythonhosted.org/packages/f7/d0/ce1b3f39e56432ece57bb4b45c89a670dca4cd77bcb98ebd31297aa50961/pyxirr-0.10.7-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "874458e41ba51ca1e90abf1c23ed0d9fa66a304ec02cefb3ebda88b1d3b01df3",
                "md5": "e1ab72fbafc9935e8955f0804e5dc992",
                "sha256": "d038efbfc4118e58c8f4865aad459eb9c096e34ded055f3ca46e44fc53a2b7e0"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp311-cp311-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "e1ab72fbafc9935e8955f0804e5dc992",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.14,>=3.7",
            "size": 712804,
            "upload_time": "2025-07-13T08:45:32",
            "upload_time_iso_8601": "2025-07-13T08:45:32.015036Z",
            "url": "https://files.pythonhosted.org/packages/87/44/58e41ba51ca1e90abf1c23ed0d9fa66a304ec02cefb3ebda88b1d3b01df3/pyxirr-0.10.7-cp311-cp311-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "73b162da2fe8e571e680b18cda53b00b760f27eb5dcf1a0f7138fbb0fdb7f84d",
                "md5": "7782e92add83425bfa74f88d0cfe6016",
                "sha256": "29e346ffe02b6bd9f364270127d1ae57cfedaa0edf776b8b5b76eb75f776cd56"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "7782e92add83425bfa74f88d0cfe6016",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.14,>=3.7",
            "size": 691601,
            "upload_time": "2025-07-13T08:44:08",
            "upload_time_iso_8601": "2025-07-13T08:44:08.507128Z",
            "url": "https://files.pythonhosted.org/packages/73/b1/62da2fe8e571e680b18cda53b00b760f27eb5dcf1a0f7138fbb0fdb7f84d/pyxirr-0.10.7-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "043479ee35106a62e63bfd1a093f0e3f9ef6448a11be0599c1af338dc8e683a8",
                "md5": "10021be895d2676a5a6436739a9d672a",
                "sha256": "68364d59417560aa687f61a17724d57576f3248b816f28ebafb4ecb9ed8fa70c"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "10021be895d2676a5a6436739a9d672a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.14,>=3.7",
            "size": 679685,
            "upload_time": "2025-07-13T08:44:31",
            "upload_time_iso_8601": "2025-07-13T08:44:31.590945Z",
            "url": "https://files.pythonhosted.org/packages/04/34/79ee35106a62e63bfd1a093f0e3f9ef6448a11be0599c1af338dc8e683a8/pyxirr-0.10.7-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fb923aa44aa8804a55f64af815b6f7b59ca3a11513a0e19d8c43aa43fc6503a2",
                "md5": "671e590a0a74f6afab996ac750eec994",
                "sha256": "e5a2c9d53ff59cbef80e14462118b616c05e1da2fc7222acc9b4644232b85cd1"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "671e590a0a74f6afab996ac750eec994",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": "<3.14,>=3.7",
            "size": 443901,
            "upload_time": "2025-07-13T08:44:00",
            "upload_time_iso_8601": "2025-07-13T08:44:00.457370Z",
            "url": "https://files.pythonhosted.org/packages/fb/92/3aa44aa8804a55f64af815b6f7b59ca3a11513a0e19d8c43aa43fc6503a2/pyxirr-0.10.7-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "01425919ba48e46f04bd943d204453ea8d805f763fee90af33345325aca49a44",
                "md5": "a89ba1669e1b169056f13ba1ab0f227c",
                "sha256": "edbedbf8ff56cb036dc7c9d529e561a83dc8c0befea138cc98b9369668f8a5e6"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a89ba1669e1b169056f13ba1ab0f227c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.14,>=3.7",
            "size": 485042,
            "upload_time": "2025-07-13T08:44:30",
            "upload_time_iso_8601": "2025-07-13T08:44:30.443822Z",
            "url": "https://files.pythonhosted.org/packages/01/42/5919ba48e46f04bd943d204453ea8d805f763fee90af33345325aca49a44/pyxirr-0.10.7-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "22ab042b556d35567e56afea22ce662dea1c27031ca817c645b722691260db85",
                "md5": "55790ea7f0136979fe0496a26a6ab908",
                "sha256": "a6eb1fdc4e44958d4f8b29d9309a29fe295563350c00fc1964130ff6071e0722"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "55790ea7f0136979fe0496a26a6ab908",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.14,>=3.7",
            "size": 439933,
            "upload_time": "2025-07-13T08:45:11",
            "upload_time_iso_8601": "2025-07-13T08:45:11.877312Z",
            "url": "https://files.pythonhosted.org/packages/22/ab/042b556d35567e56afea22ce662dea1c27031ca817c645b722691260db85/pyxirr-0.10.7-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ef57ab54351209331925170567c5658b1ef29c14ef02b739169f3b0236e27ac4",
                "md5": "693a7e4a84d29580401807462f762180",
                "sha256": "9aec9066c69b3e0b6ddf9500960700ffb207da766ac7dded5c1a9a08c7b91e39"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "693a7e4a84d29580401807462f762180",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.14,>=3.7",
            "size": 447752,
            "upload_time": "2025-07-13T08:43:55",
            "upload_time_iso_8601": "2025-07-13T08:43:55.951337Z",
            "url": "https://files.pythonhosted.org/packages/ef/57/ab54351209331925170567c5658b1ef29c14ef02b739169f3b0236e27ac4/pyxirr-0.10.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3452fe699c59ad4b17a925f165a4b91879121d1073c386121414f21395fc883d",
                "md5": "ff3a777cfb710fb8c8a846f1c8529671",
                "sha256": "7a940abbcf5b09eca3e4a140b954f9f048e3195d1b5144b7072113f11d01db2c"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ff3a777cfb710fb8c8a846f1c8529671",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.14,>=3.7",
            "size": 445932,
            "upload_time": "2025-07-13T08:44:26",
            "upload_time_iso_8601": "2025-07-13T08:44:26.632059Z",
            "url": "https://files.pythonhosted.org/packages/34/52/fe699c59ad4b17a925f165a4b91879121d1073c386121414f21395fc883d/pyxirr-0.10.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "45f7dbbadab32d988b8974b061fc489f4ec9121355a99f21b5d67cb3887a9d64",
                "md5": "a366a63cc059b82abd0de1958426ae6c",
                "sha256": "9c5c500f16bee6bb89f1cbc6683882fe36e9a3ed6f9ab76ce313a4dbefac1472"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "a366a63cc059b82abd0de1958426ae6c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.14,>=3.7",
            "size": 609736,
            "upload_time": "2025-07-13T08:45:02",
            "upload_time_iso_8601": "2025-07-13T08:45:02.029993Z",
            "url": "https://files.pythonhosted.org/packages/45/f7/dbbadab32d988b8974b061fc489f4ec9121355a99f21b5d67cb3887a9d64/pyxirr-0.10.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4cddfc2c4d69433a69e481fb3c775bbc4f63b8c3ee9af31d17b40aba20555525",
                "md5": "8906f479d5ba27166c0d8cbe72c30dd8",
                "sha256": "5bc369c5240b2bc2f0e080299f61144f77d0531989d55cf6a443bf0712daa4d7"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp312-cp312-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "8906f479d5ba27166c0d8cbe72c30dd8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.14,>=3.7",
            "size": 505758,
            "upload_time": "2025-07-13T08:45:09",
            "upload_time_iso_8601": "2025-07-13T08:45:09.426738Z",
            "url": "https://files.pythonhosted.org/packages/4c/dd/fc2c4d69433a69e481fb3c775bbc4f63b8c3ee9af31d17b40aba20555525/pyxirr-0.10.7-cp312-cp312-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "96f05d200a4fa111db0625f6ce905d5cdaa96c28b099df565e77f588bbadee47",
                "md5": "920a6c2e6d8cb95df4abe23ad306b9a8",
                "sha256": "943f4034ba5df957111b53b2d24c1a7170e470b9b36eeeced61d891bffc8ec72"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "920a6c2e6d8cb95df4abe23ad306b9a8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.14,>=3.7",
            "size": 620599,
            "upload_time": "2025-07-13T08:45:08",
            "upload_time_iso_8601": "2025-07-13T08:45:08.218042Z",
            "url": "https://files.pythonhosted.org/packages/96/f0/5d200a4fa111db0625f6ce905d5cdaa96c28b099df565e77f588bbadee47/pyxirr-0.10.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b884410f7cbdee841e528b3367080bb667c3b37ae82010cf254ec06ca4873e00",
                "md5": "5711c32533a1220b3c376f094222fece",
                "sha256": "23c25bb1996139b2b449f4a69c87513bf84b69c85acbca89914d7516a7ce7832"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5711c32533a1220b3c376f094222fece",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.14,>=3.7",
            "size": 506401,
            "upload_time": "2025-07-13T08:44:32",
            "upload_time_iso_8601": "2025-07-13T08:44:32.824442Z",
            "url": "https://files.pythonhosted.org/packages/b8/84/410f7cbdee841e528b3367080bb667c3b37ae82010cf254ec06ca4873e00/pyxirr-0.10.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "05a511d188a1fc3323b2ae385f7146dceb796a4b9e2afbdf36325eab51b91aba",
                "md5": "ad282afe33213b26d0a880b74717afb0",
                "sha256": "5ded0b12689c297bba74de4241f6e0d31ddec0b991ef4b1f69b9d5b8b2356822"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ad282afe33213b26d0a880b74717afb0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.14,>=3.7",
            "size": 627970,
            "upload_time": "2025-07-13T08:43:40",
            "upload_time_iso_8601": "2025-07-13T08:43:40.560750Z",
            "url": "https://files.pythonhosted.org/packages/05/a5/11d188a1fc3323b2ae385f7146dceb796a4b9e2afbdf36325eab51b91aba/pyxirr-0.10.7-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3c22292eed310d0cfd7fd0712810664494f9365bd11391d038c963a17082fcae",
                "md5": "0d1268e5e34295bd7281fa20f44c10ee",
                "sha256": "516ee71747f97fad8817e3fc3f2ee1c15c7746d604000021cef34b03fe5ea10e"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp312-cp312-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "0d1268e5e34295bd7281fa20f44c10ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.14,>=3.7",
            "size": 709306,
            "upload_time": "2025-07-13T08:43:50",
            "upload_time_iso_8601": "2025-07-13T08:43:50.081276Z",
            "url": "https://files.pythonhosted.org/packages/3c/22/292eed310d0cfd7fd0712810664494f9365bd11391d038c963a17082fcae/pyxirr-0.10.7-cp312-cp312-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a380ebcf83a3df3ee11b46a57e06713af5463359631d5ddf635f952fd415254c",
                "md5": "6d9148f2b282b8476e4d176b8338fb65",
                "sha256": "1243ae6b3f22d2b740bf9887f8fb9d1bfe14d9b2969f7a0414bb5d1f937cf84d"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "6d9148f2b282b8476e4d176b8338fb65",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.14,>=3.7",
            "size": 691956,
            "upload_time": "2025-07-13T08:44:07",
            "upload_time_iso_8601": "2025-07-13T08:44:07.297784Z",
            "url": "https://files.pythonhosted.org/packages/a3/80/ebcf83a3df3ee11b46a57e06713af5463359631d5ddf635f952fd415254c/pyxirr-0.10.7-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6caeb610a7718bf64951c643e584e0ee53aab474e7bb1d2469212b9a422db659",
                "md5": "722e9132eaf32b0320791210b9462f34",
                "sha256": "5116c65e9ffa4c01233ecdedcaaedac67ba3d760b9b1d2c385198d8d1f53854d"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "722e9132eaf32b0320791210b9462f34",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.14,>=3.7",
            "size": 678299,
            "upload_time": "2025-07-13T08:45:25",
            "upload_time_iso_8601": "2025-07-13T08:45:25.989766Z",
            "url": "https://files.pythonhosted.org/packages/6c/ae/b610a7718bf64951c643e584e0ee53aab474e7bb1d2469212b9a422db659/pyxirr-0.10.7-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "729fac214be61fb8c8deffbcc343bfbb9391dca99fc93a231deafa7c178c9080",
                "md5": "594d2e61fc04adfb5202544f657dbd14",
                "sha256": "915db77db77b9a56942c6aa99adb09ef030b25dc4f808f669aebdbc6bfc52549"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "594d2e61fc04adfb5202544f657dbd14",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": "<3.14,>=3.7",
            "size": 445108,
            "upload_time": "2025-07-13T08:44:13",
            "upload_time_iso_8601": "2025-07-13T08:44:13.862860Z",
            "url": "https://files.pythonhosted.org/packages/72/9f/ac214be61fb8c8deffbcc343bfbb9391dca99fc93a231deafa7c178c9080/pyxirr-0.10.7-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0d2b173a2e6e482a6a713e548bbe463e73c2791179e3312c16ffeea7482170a8",
                "md5": "cb7fef8f34de7d7317d80aafa786ac75",
                "sha256": "45c1136e50d604f8c74a7cb753b6433214d059c17c0d754ea0131c1e1a3d404a"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp313-cp313-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cb7fef8f34de7d7317d80aafa786ac75",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.7",
            "size": 485041,
            "upload_time": "2025-07-13T08:44:12",
            "upload_time_iso_8601": "2025-07-13T08:44:12.466985Z",
            "url": "https://files.pythonhosted.org/packages/0d/2b/173a2e6e482a6a713e548bbe463e73c2791179e3312c16ffeea7482170a8/pyxirr-0.10.7-cp313-cp313-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e49cbdf15e77f2d6baeef84d653142ce1e0ac7ab9f41db6140f129dc2399ff8e",
                "md5": "e531b6a253e095a8243fbaf231f6cf48",
                "sha256": "df7a850be31e9634db2248a6c5f53b03ffabe54c6d2154c45b14c3c2286562c3"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e531b6a253e095a8243fbaf231f6cf48",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.7",
            "size": 439934,
            "upload_time": "2025-07-13T08:44:15",
            "upload_time_iso_8601": "2025-07-13T08:44:15.284343Z",
            "url": "https://files.pythonhosted.org/packages/e4/9c/bdf15e77f2d6baeef84d653142ce1e0ac7ab9f41db6140f129dc2399ff8e/pyxirr-0.10.7-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f4a9cb17561691a6592c022ffc35a5b425dba8ad8e56af16654f413de6c9dbb3",
                "md5": "d53c0c854c9b57959ff33d8937850979",
                "sha256": "fa75ce5ed6e6f2d533f4e85b1bee2b46eff62787fc52e6cb3ff624c7ffe0c73a"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d53c0c854c9b57959ff33d8937850979",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.7",
            "size": 447752,
            "upload_time": "2025-07-13T08:45:10",
            "upload_time_iso_8601": "2025-07-13T08:45:10.652264Z",
            "url": "https://files.pythonhosted.org/packages/f4/a9/cb17561691a6592c022ffc35a5b425dba8ad8e56af16654f413de6c9dbb3/pyxirr-0.10.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "19dba63efd6ad815134527dd41a82182e19042ec75120ca31101913e2bbd65c7",
                "md5": "cbc20a6a1322e359bea806ceee09ccd2",
                "sha256": "7c6bd2aeb6ac312b25a6d676fef2cd4be6d88a739c5744a3a34fb72f99246c4e"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "cbc20a6a1322e359bea806ceee09ccd2",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.7",
            "size": 445933,
            "upload_time": "2025-07-13T08:43:51",
            "upload_time_iso_8601": "2025-07-13T08:43:51.189717Z",
            "url": "https://files.pythonhosted.org/packages/19/db/a63efd6ad815134527dd41a82182e19042ec75120ca31101913e2bbd65c7/pyxirr-0.10.7-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "16ad217562333e971436b872b164da0a711eec04ba15e145e204e56f77bd3cea",
                "md5": "a19d53c008caeca6fff7f996d248dcac",
                "sha256": "ada6b5942636bf7f2b86e7208028d1f912691f04268a79f71de3e96808080835"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "a19d53c008caeca6fff7f996d248dcac",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.7",
            "size": 609738,
            "upload_time": "2025-07-13T08:43:44",
            "upload_time_iso_8601": "2025-07-13T08:43:44.010753Z",
            "url": "https://files.pythonhosted.org/packages/16/ad/217562333e971436b872b164da0a711eec04ba15e145e204e56f77bd3cea/pyxirr-0.10.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f77cee4b1536b20b9fc347d8b249e38febbee24df19b205e600c4deaffcdd72a",
                "md5": "0657f15837c9c7ff74d920961846d8ca",
                "sha256": "debcde241edd74a5b700159af7b0c94f864ca169c94ec220a5e7cf5da0a61197"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp313-cp313-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "0657f15837c9c7ff74d920961846d8ca",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.7",
            "size": 505759,
            "upload_time": "2025-07-13T08:45:22",
            "upload_time_iso_8601": "2025-07-13T08:45:22.165931Z",
            "url": "https://files.pythonhosted.org/packages/f7/7c/ee4b1536b20b9fc347d8b249e38febbee24df19b205e600c4deaffcdd72a/pyxirr-0.10.7-cp313-cp313-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "345cf246846ccb4787b8d65ec678c2e23690684e989bf14f20a6e299bb2c4f97",
                "md5": "161f85e57ced92f244f504a04ffe89b6",
                "sha256": "34bfd380ec1b7e2a5f61834e02cf04c8e1d26b56dbea3fed366fd76bc0551dcb"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "161f85e57ced92f244f504a04ffe89b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.7",
            "size": 620598,
            "upload_time": "2025-07-13T08:45:16",
            "upload_time_iso_8601": "2025-07-13T08:45:16.556575Z",
            "url": "https://files.pythonhosted.org/packages/34/5c/f246846ccb4787b8d65ec678c2e23690684e989bf14f20a6e299bb2c4f97/pyxirr-0.10.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1794734e90c3da79570e5e6bf11e4d093ee46f76c774f5c719786b20eb40711b",
                "md5": "cf436176be0455368f6004af45b8c0ad",
                "sha256": "1617cc9a5b00b36e527d125f5376e87084fd87ab51028b79e9516108f5af0348"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cf436176be0455368f6004af45b8c0ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.7",
            "size": 506401,
            "upload_time": "2025-07-13T08:44:57",
            "upload_time_iso_8601": "2025-07-13T08:44:57.549207Z",
            "url": "https://files.pythonhosted.org/packages/17/94/734e90c3da79570e5e6bf11e4d093ee46f76c774f5c719786b20eb40711b/pyxirr-0.10.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "484b242b7029fc35bf530af12c924f801eb4a67072121665a248b51edb42d06a",
                "md5": "a8830ec56ae60bcf2237bb4c51cc7348",
                "sha256": "34db605ebd3ee1e943ce41591b723839bac70636ee719b66fcabf8d5ddc063ad"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a8830ec56ae60bcf2237bb4c51cc7348",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.7",
            "size": 627972,
            "upload_time": "2025-07-13T08:44:48",
            "upload_time_iso_8601": "2025-07-13T08:44:48.914926Z",
            "url": "https://files.pythonhosted.org/packages/48/4b/242b7029fc35bf530af12c924f801eb4a67072121665a248b51edb42d06a/pyxirr-0.10.7-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6176012e2dbedd883ca69fb4b4d717f74612169da97022d54f6cb43db2b5893c",
                "md5": "0c6976a57992935bb05528d3c570b2e2",
                "sha256": "b5958ceeed4ce75acf81038f5d6b32a9033ee65a207be24a92a8a711af21708a"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp313-cp313-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "0c6976a57992935bb05528d3c570b2e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.7",
            "size": 709307,
            "upload_time": "2025-07-13T08:44:38",
            "upload_time_iso_8601": "2025-07-13T08:44:38.109039Z",
            "url": "https://files.pythonhosted.org/packages/61/76/012e2dbedd883ca69fb4b4d717f74612169da97022d54f6cb43db2b5893c/pyxirr-0.10.7-cp313-cp313-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fd7c90a0bf970d77953f0930f6e25cb74082e23eb17ab933b15416f65eb56d63",
                "md5": "b43404395b4b1ae13806b52391461977",
                "sha256": "2c9e926d16ec89bc7b6dc10fc05d68218bb03050dc1c913337f09405a34e5d6d"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "b43404395b4b1ae13806b52391461977",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.7",
            "size": 691957,
            "upload_time": "2025-07-13T08:43:37",
            "upload_time_iso_8601": "2025-07-13T08:43:37.666494Z",
            "url": "https://files.pythonhosted.org/packages/fd/7c/90a0bf970d77953f0930f6e25cb74082e23eb17ab933b15416f65eb56d63/pyxirr-0.10.7-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "22b0327b891f6ff983741d899ffbbc3acac4e4333f11c4a8e474dd2fcc8242af",
                "md5": "a56f1f683f5d590c6e4aeba404845158",
                "sha256": "488b7390f806e0b16ee0f1f7de35a5a16742d76736b12661ba022d7d6788e3c8"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a56f1f683f5d590c6e4aeba404845158",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.7",
            "size": 678298,
            "upload_time": "2025-07-13T08:43:42",
            "upload_time_iso_8601": "2025-07-13T08:43:42.859453Z",
            "url": "https://files.pythonhosted.org/packages/22/b0/327b891f6ff983741d899ffbbc3acac4e4333f11c4a8e474dd2fcc8242af/pyxirr-0.10.7-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "387d9156802516048a5f4a10fac3e6ce2396f63a2de7e57bad7f57c947b198fc",
                "md5": "f06a650d61453e52e1e84394b8f5160e",
                "sha256": "e09ead4eecba49cc9ed23fa004a85cdfab0af80b16a64f0694cbae9c19b9a6ad"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp313-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f06a650d61453e52e1e84394b8f5160e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": "<3.14,>=3.7",
            "size": 445107,
            "upload_time": "2025-07-13T08:43:48",
            "upload_time_iso_8601": "2025-07-13T08:43:48.642199Z",
            "url": "https://files.pythonhosted.org/packages/38/7d/9156802516048a5f4a10fac3e6ce2396f63a2de7e57bad7f57c947b198fc/pyxirr-0.10.7-cp313-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0219cd166f8656f1e9e6867eece805d8532480fce979525a4b1de0d87f6806cd",
                "md5": "ac0ae6cec737da88116a9a648179a627",
                "sha256": "26d8c533b6c7b2f5b6e87f712e83b31d576cf918fc4631bbd347d870bc1fc234"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp37-cp37m-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ac0ae6cec737da88116a9a648179a627",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": "<3.14,>=3.7",
            "size": 488201,
            "upload_time": "2025-07-13T08:45:30",
            "upload_time_iso_8601": "2025-07-13T08:45:30.763564Z",
            "url": "https://files.pythonhosted.org/packages/02/19/cd166f8656f1e9e6867eece805d8532480fce979525a4b1de0d87f6806cd/pyxirr-0.10.7-cp37-cp37m-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cfc6e26ae219f5f39f89a42f03618f2400716b301834007bb34ad8cd58705560",
                "md5": "76378a4c70a438af73889a379f1ee046",
                "sha256": "0e70e29028af03288f3e2d00a26072894f65ea43806bd3f0eb7b2f53af64e94b"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp37-cp37m-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "76378a4c70a438af73889a379f1ee046",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": "<3.14,>=3.7",
            "size": 442146,
            "upload_time": "2025-07-13T08:43:31",
            "upload_time_iso_8601": "2025-07-13T08:43:31.360161Z",
            "url": "https://files.pythonhosted.org/packages/cf/c6/e26ae219f5f39f89a42f03618f2400716b301834007bb34ad8cd58705560/pyxirr-0.10.7-cp37-cp37m-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "576bd59d931bea97bc4a98839508a82f23ef533e5ff84387dc0023db8f238cba",
                "md5": "f48382d0895c287cebb0706d33e543b2",
                "sha256": "bdd14ca2a5de7f0a845ba3c30efff62e34f9359d8a64ea06c015089377c9ed7a"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f48382d0895c287cebb0706d33e543b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": "<3.14,>=3.7",
            "size": 450084,
            "upload_time": "2025-07-13T08:45:18",
            "upload_time_iso_8601": "2025-07-13T08:45:18.382269Z",
            "url": "https://files.pythonhosted.org/packages/57/6b/d59d931bea97bc4a98839508a82f23ef533e5ff84387dc0023db8f238cba/pyxirr-0.10.7-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3b63fd946ddd4c1c9af42cad5e499f1a84dd766729e3992fcf51baf22484cbdf",
                "md5": "f7eb899abfbba028a420248ccf8e73aa",
                "sha256": "e74e81d28f74e2083a05f54243422957c907be1c6af5536f441b4e98cc035423"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "f7eb899abfbba028a420248ccf8e73aa",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": "<3.14,>=3.7",
            "size": 449982,
            "upload_time": "2025-07-13T08:43:36",
            "upload_time_iso_8601": "2025-07-13T08:43:36.504955Z",
            "url": "https://files.pythonhosted.org/packages/3b/63/fd946ddd4c1c9af42cad5e499f1a84dd766729e3992fcf51baf22484cbdf/pyxirr-0.10.7-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ae9b5e0e28dc9458dd4c2eb27461c8cc79b12d9ea378e3ca7352a1b55b6a8891",
                "md5": "99783b516b87d46745742bcd8f12b581",
                "sha256": "3fd4e7d9999fdc07d717de338db1e48b8f5a811e49f48c9508a9794074d09edd"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "99783b516b87d46745742bcd8f12b581",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": "<3.14,>=3.7",
            "size": 612188,
            "upload_time": "2025-07-13T08:45:00",
            "upload_time_iso_8601": "2025-07-13T08:45:00.580117Z",
            "url": "https://files.pythonhosted.org/packages/ae/9b/5e0e28dc9458dd4c2eb27461c8cc79b12d9ea378e3ca7352a1b55b6a8891/pyxirr-0.10.7-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "39321a2457d00162625cf6ce586e9c49964e878df4f8bb8ad4f57bf7930aa3ad",
                "md5": "682906ffe66093c24764b76edffd7523",
                "sha256": "aeb522e070194def92eda031dd1dd057f6fe518b6145cabce2d86fcd0d92d7af"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp37-cp37m-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "682906ffe66093c24764b76edffd7523",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": "<3.14,>=3.7",
            "size": 509249,
            "upload_time": "2025-07-13T08:44:39",
            "upload_time_iso_8601": "2025-07-13T08:44:39.233394Z",
            "url": "https://files.pythonhosted.org/packages/39/32/1a2457d00162625cf6ce586e9c49964e878df4f8bb8ad4f57bf7930aa3ad/pyxirr-0.10.7-cp37-cp37m-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ae159ce6c6913b474ee3d759e5d4b05f47ff16ee5153cd11afb7dd598e663013",
                "md5": "4586b26bfbf4c1561a42ef1d66b8a258",
                "sha256": "8e63f221c60810fbb7f64d42754cc5aae93a5ad39b2c35ec388160e8ee4572d4"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "4586b26bfbf4c1561a42ef1d66b8a258",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": "<3.14,>=3.7",
            "size": 626568,
            "upload_time": "2025-07-13T08:44:10",
            "upload_time_iso_8601": "2025-07-13T08:44:10.840650Z",
            "url": "https://files.pythonhosted.org/packages/ae/15/9ce6c6913b474ee3d759e5d4b05f47ff16ee5153cd11afb7dd598e663013/pyxirr-0.10.7-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "77b2ddee118e60d6904f1bf33e726ed754bd7a2e5d6f3e07fe215c456ccafe1b",
                "md5": "605436bdd7758d12d25f7dd593afea9d",
                "sha256": "ffcbaad2db12c0e7e200b0b8c5717acfd28fa75465dd308aca54e59eadf57fe3"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "605436bdd7758d12d25f7dd593afea9d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": "<3.14,>=3.7",
            "size": 508161,
            "upload_time": "2025-07-13T08:45:03",
            "upload_time_iso_8601": "2025-07-13T08:45:03.216533Z",
            "url": "https://files.pythonhosted.org/packages/77/b2/ddee118e60d6904f1bf33e726ed754bd7a2e5d6f3e07fe215c456ccafe1b/pyxirr-0.10.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "be915ba3fac3d333d6d3e4158a911d2f04ef1f91383fc2cc1440a8d73e59b9b3",
                "md5": "9a15a702c39d6852658382020147e64d",
                "sha256": "568a3fa1676e1d2253f0ef8afc0b2c9893a48d528cb876efe585e467f8ae70c5"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp37-cp37m-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9a15a702c39d6852658382020147e64d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": "<3.14,>=3.7",
            "size": 630040,
            "upload_time": "2025-07-13T08:43:58",
            "upload_time_iso_8601": "2025-07-13T08:43:58.938030Z",
            "url": "https://files.pythonhosted.org/packages/be/91/5ba3fac3d333d6d3e4158a911d2f04ef1f91383fc2cc1440a8d73e59b9b3/pyxirr-0.10.7-cp37-cp37m-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "18e7cd709f28324cc913ad40d21206052794f8ff2c2a8c362f598f56cb0f349e",
                "md5": "940535d42dc9975a67f39b9765b5cafb",
                "sha256": "588a85230ee0b572fd82337743c47c99b5c3c8e23177880bdea860d5a3d520f9"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp37-cp37m-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "940535d42dc9975a67f39b9765b5cafb",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": "<3.14,>=3.7",
            "size": 713611,
            "upload_time": "2025-07-13T08:43:47",
            "upload_time_iso_8601": "2025-07-13T08:43:47.167475Z",
            "url": "https://files.pythonhosted.org/packages/18/e7/cd709f28324cc913ad40d21206052794f8ff2c2a8c362f598f56cb0f349e/pyxirr-0.10.7-cp37-cp37m-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "84bb0626a7f68636cbc3c9e40d33a106ff98b5d3f5c23de95bebe72734f8c21a",
                "md5": "84ce5c3013ff3ea04ce113ce4edb969d",
                "sha256": "040eed063d22b36d6650c47d6ae0dbeaefd6b238007d86cd0b4dcdb25f51715e"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp37-cp37m-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "84ce5c3013ff3ea04ce113ce4edb969d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": "<3.14,>=3.7",
            "size": 692140,
            "upload_time": "2025-07-13T08:44:50",
            "upload_time_iso_8601": "2025-07-13T08:44:50.048863Z",
            "url": "https://files.pythonhosted.org/packages/84/bb/0626a7f68636cbc3c9e40d33a106ff98b5d3f5c23de95bebe72734f8c21a/pyxirr-0.10.7-cp37-cp37m-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "be7b9660dbb832f3af25ec0a4c2ec263d3613fd225f76f4574134cf72542fccf",
                "md5": "9dbe8f3f8dac38101ce923e58f9babd4",
                "sha256": "1ac02fe12c441b5ad369db8c0c4235f823d704856d2d8b6ac17c8365cc0f4006"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9dbe8f3f8dac38101ce923e58f9babd4",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": "<3.14,>=3.7",
            "size": 679938,
            "upload_time": "2025-07-13T08:45:06",
            "upload_time_iso_8601": "2025-07-13T08:45:06.796390Z",
            "url": "https://files.pythonhosted.org/packages/be/7b/9660dbb832f3af25ec0a4c2ec263d3613fd225f76f4574134cf72542fccf/pyxirr-0.10.7-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2a5850d7d887d9626826057ee23e833e68e183e5205a431045647cfa38727c17",
                "md5": "ef9e9da7b7637a4a342a0707805a4d26",
                "sha256": "8d06c808054f4093323fef2b1b213663ae93b1ec3732140a4b5ec6d68dec2ea9"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp37-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ef9e9da7b7637a4a342a0707805a4d26",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": "<3.14,>=3.7",
            "size": 444199,
            "upload_time": "2025-07-13T08:44:59",
            "upload_time_iso_8601": "2025-07-13T08:44:59.084321Z",
            "url": "https://files.pythonhosted.org/packages/2a/58/50d7d887d9626826057ee23e833e68e183e5205a431045647cfa38727c17/pyxirr-0.10.7-cp37-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d49ddcdeb46fb813a10e6ea6c0f5396a105259988af98ff7133663a3a6866e22",
                "md5": "fa5f94a1f86031d0867eb29c8363e0ce",
                "sha256": "ea1c0fbd731fad1e987ba63339b00ffc966758e3ce30ba185bf11dd5828a000c"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp38-cp38-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fa5f94a1f86031d0867eb29c8363e0ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<3.14,>=3.7",
            "size": 488179,
            "upload_time": "2025-07-13T08:45:29",
            "upload_time_iso_8601": "2025-07-13T08:45:29.550256Z",
            "url": "https://files.pythonhosted.org/packages/d4/9d/dcdeb46fb813a10e6ea6c0f5396a105259988af98ff7133663a3a6866e22/pyxirr-0.10.7-cp38-cp38-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "183e6dfbecab8521e058ce209be7be1c39bf24fa24a5d49fa181137ab2198402",
                "md5": "9b619ccb1570001562671cb7f8d8cba6",
                "sha256": "fca4e4ade61ef7c3feb1a777802e5c9cb8750da6d218d390801ab9355fb68704"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9b619ccb1570001562671cb7f8d8cba6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<3.14,>=3.7",
            "size": 442164,
            "upload_time": "2025-07-13T08:44:47",
            "upload_time_iso_8601": "2025-07-13T08:44:47.790976Z",
            "url": "https://files.pythonhosted.org/packages/18/3e/6dfbecab8521e058ce209be7be1c39bf24fa24a5d49fa181137ab2198402/pyxirr-0.10.7-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d5e140ec39f550e27ea31b9f8d7631317c0662121c2346768f28de6e277314b3",
                "md5": "46d7881be2b79e2e8ac80da85139d9db",
                "sha256": "11162cffec8a5243322049e841795541db82b46be97cd5d65bd8d009f0b81f0a"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "46d7881be2b79e2e8ac80da85139d9db",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<3.14,>=3.7",
            "size": 450063,
            "upload_time": "2025-07-13T08:44:21",
            "upload_time_iso_8601": "2025-07-13T08:44:21.246808Z",
            "url": "https://files.pythonhosted.org/packages/d5/e1/40ec39f550e27ea31b9f8d7631317c0662121c2346768f28de6e277314b3/pyxirr-0.10.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ee007df8b2eaf46949b3adafdb0434c58c1a07053801ecead8e4b3267e4102da",
                "md5": "d471dc2e9b1bf224c666b2f4af18b15e",
                "sha256": "dc7774b2ec2bbff1e38f602bf4c588e25ff046d438b8a44f37d7520cf33e3791"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "d471dc2e9b1bf224c666b2f4af18b15e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<3.14,>=3.7",
            "size": 450005,
            "upload_time": "2025-07-13T08:43:45",
            "upload_time_iso_8601": "2025-07-13T08:43:45.426021Z",
            "url": "https://files.pythonhosted.org/packages/ee/00/7df8b2eaf46949b3adafdb0434c58c1a07053801ecead8e4b3267e4102da/pyxirr-0.10.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4e1e100b0263509f3b3bc6a366167a35fd70ee234c8017dcddd6d24b62215036",
                "md5": "38c10f7f7664f1d3b1f7b4cf9e9400cd",
                "sha256": "206071556b904c2771206804452f919a8dc0cb21c799554e19c7c609c25c1512"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "38c10f7f7664f1d3b1f7b4cf9e9400cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<3.14,>=3.7",
            "size": 612130,
            "upload_time": "2025-07-13T08:44:42",
            "upload_time_iso_8601": "2025-07-13T08:44:42.904951Z",
            "url": "https://files.pythonhosted.org/packages/4e/1e/100b0263509f3b3bc6a366167a35fd70ee234c8017dcddd6d24b62215036/pyxirr-0.10.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8043d5500defc4b6c8b44c7dccacab942dae3debcdabdc955a097377fba67690",
                "md5": "7f620c6e7101affbf1b18c7dbf58e7b9",
                "sha256": "5c04b664b7965e1738fca208d8ca6be6b660374434752674103b3649e942d69b"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp38-cp38-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "7f620c6e7101affbf1b18c7dbf58e7b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<3.14,>=3.7",
            "size": 509210,
            "upload_time": "2025-07-13T08:43:35",
            "upload_time_iso_8601": "2025-07-13T08:43:35.366699Z",
            "url": "https://files.pythonhosted.org/packages/80/43/d5500defc4b6c8b44c7dccacab942dae3debcdabdc955a097377fba67690/pyxirr-0.10.7-cp38-cp38-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "42948d6aa1c0e1ee16777c53cbc6eca479577167c3385285a19a259526baf4c7",
                "md5": "28541e8eb630e7a04e268c37d65639f8",
                "sha256": "15c800f51a428f26d3f88a7848465daed5064604496bb75fde5ad0b4ecc67e78"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "28541e8eb630e7a04e268c37d65639f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<3.14,>=3.7",
            "size": 626637,
            "upload_time": "2025-07-13T08:45:19",
            "upload_time_iso_8601": "2025-07-13T08:45:19.696621Z",
            "url": "https://files.pythonhosted.org/packages/42/94/8d6aa1c0e1ee16777c53cbc6eca479577167c3385285a19a259526baf4c7/pyxirr-0.10.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ea471227442fa30b53840f6c16a66a7d1da4b0dafa3aa2bdc74b7b1bc0a63b3a",
                "md5": "15302882da5a96ada78a5e1a4b538a49",
                "sha256": "53f5586baeab9b9b00e7ff92d7862523c525c88ea9b3df82a0053759ffff35e0"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "15302882da5a96ada78a5e1a4b538a49",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<3.14,>=3.7",
            "size": 508184,
            "upload_time": "2025-07-13T08:44:52",
            "upload_time_iso_8601": "2025-07-13T08:44:52.928834Z",
            "url": "https://files.pythonhosted.org/packages/ea/47/1227442fa30b53840f6c16a66a7d1da4b0dafa3aa2bdc74b7b1bc0a63b3a/pyxirr-0.10.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fdbd5d569bc3116636c930c4c08b746ec78be12a6e3d312fea509c135725b37a",
                "md5": "de689327df04064ce1d8d95faf7f174f",
                "sha256": "4075b9b7e7235e0681ccb8303de37a166cd5651e0b4c2f3178848f3e8b1eac58"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "de689327df04064ce1d8d95faf7f174f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<3.14,>=3.7",
            "size": 630083,
            "upload_time": "2025-07-13T08:44:02",
            "upload_time_iso_8601": "2025-07-13T08:44:02.223796Z",
            "url": "https://files.pythonhosted.org/packages/fd/bd/5d569bc3116636c930c4c08b746ec78be12a6e3d312fea509c135725b37a/pyxirr-0.10.7-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "63115d13ad8666a87bda20d807510fcb399421958bc87fe4d1a895df71b932bf",
                "md5": "43f0e08c0a1a3f162d4b230c8a455eb8",
                "sha256": "ac3a00343aa763d6ef61dd7760c87c62abd7430c54a4766cb324338e0a1bd820"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp38-cp38-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "43f0e08c0a1a3f162d4b230c8a455eb8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<3.14,>=3.7",
            "size": 713582,
            "upload_time": "2025-07-13T08:43:34",
            "upload_time_iso_8601": "2025-07-13T08:43:34.200350Z",
            "url": "https://files.pythonhosted.org/packages/63/11/5d13ad8666a87bda20d807510fcb399421958bc87fe4d1a895df71b932bf/pyxirr-0.10.7-cp38-cp38-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "325f52ef481e9f2b20b9dac6f2aabff4e1b28477da93a032a74de995f9c21de0",
                "md5": "391bdf005e25fdbdd4cea1a64708d141",
                "sha256": "28d27512460079484ccbbe69fd90c0e927f0307534840ab740d7bc1efb408265"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "391bdf005e25fdbdd4cea1a64708d141",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<3.14,>=3.7",
            "size": 692108,
            "upload_time": "2025-07-13T08:44:34",
            "upload_time_iso_8601": "2025-07-13T08:44:34.046888Z",
            "url": "https://files.pythonhosted.org/packages/32/5f/52ef481e9f2b20b9dac6f2aabff4e1b28477da93a032a74de995f9c21de0/pyxirr-0.10.7-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "95dedaacfe9065037ce2f82aef77a2e7015b00380a683afddb027d780d98a9a1",
                "md5": "d702eca152a2341dad518992f5db1d2c",
                "sha256": "bad3da547b915b97a0d6af83d6641b270964701399e943b358106a1d4e423e11"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d702eca152a2341dad518992f5db1d2c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<3.14,>=3.7",
            "size": 679878,
            "upload_time": "2025-07-13T08:43:41",
            "upload_time_iso_8601": "2025-07-13T08:43:41.671485Z",
            "url": "https://files.pythonhosted.org/packages/95/de/daacfe9065037ce2f82aef77a2e7015b00380a683afddb027d780d98a9a1/pyxirr-0.10.7-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "af85c4844333f9b775c7370d500c897bb9949ecd3c79a3aa0eeb7eab8b3eba97",
                "md5": "9ce675a26f2ae28af8175acbc3cba936",
                "sha256": "0cd95a8a8f830aba40c4cc9851fa98379b37c392124cbfc16d0949010999d3a0"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9ce675a26f2ae28af8175acbc3cba936",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": "<3.14,>=3.7",
            "size": 444253,
            "upload_time": "2025-07-13T08:45:14",
            "upload_time_iso_8601": "2025-07-13T08:45:14.268409Z",
            "url": "https://files.pythonhosted.org/packages/af/85/c4844333f9b775c7370d500c897bb9949ecd3c79a3aa0eeb7eab8b3eba97/pyxirr-0.10.7-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a3846f267de54e86263ed3816e4e0d4711d625a5582980805e32bbd62b249e6b",
                "md5": "86d98d8613026bbc5bf7e0900be62e2a",
                "sha256": "6f5f559115d77afa052eb25ce9ebba88e289d6b2e3e933cce9bc082990502b18"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "86d98d8613026bbc5bf7e0900be62e2a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.14,>=3.7",
            "size": 488090,
            "upload_time": "2025-07-13T08:43:53",
            "upload_time_iso_8601": "2025-07-13T08:43:53.636960Z",
            "url": "https://files.pythonhosted.org/packages/a3/84/6f267de54e86263ed3816e4e0d4711d625a5582980805e32bbd62b249e6b/pyxirr-0.10.7-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f4793eb41dc58e1c61271249aa26c349cc12fd93122ef52f4bc6cc7524834c02",
                "md5": "6284f1976a0a88cc8bbd122c7086c179",
                "sha256": "65a3e835f4a52e071031ccb927ffb144c009cd02a0712aa95643f26926bc3e98"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6284f1976a0a88cc8bbd122c7086c179",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.14,>=3.7",
            "size": 441916,
            "upload_time": "2025-07-13T08:45:04",
            "upload_time_iso_8601": "2025-07-13T08:45:04.493612Z",
            "url": "https://files.pythonhosted.org/packages/f4/79/3eb41dc58e1c61271249aa26c349cc12fd93122ef52f4bc6cc7524834c02/pyxirr-0.10.7-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d4c704b536b9936044f647b5d709d91857b6445c2081eef696f71a7cf86e75ec",
                "md5": "aefb808363b65e73c483d427f925be02",
                "sha256": "6148673e895437e09e75d0ff3286eccc66f15c1cc253afdbbd190b83ceffb17d"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "aefb808363b65e73c483d427f925be02",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.14,>=3.7",
            "size": 449691,
            "upload_time": "2025-07-13T08:45:20",
            "upload_time_iso_8601": "2025-07-13T08:45:20.954319Z",
            "url": "https://files.pythonhosted.org/packages/d4/c7/04b536b9936044f647b5d709d91857b6445c2081eef696f71a7cf86e75ec/pyxirr-0.10.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8189ef416b79af4d99362b8e468f54f69cff5fc0c17c1f24f377c93298c9654b",
                "md5": "69ef75a9a66e9fe59a900e185551e999",
                "sha256": "1f4e0d5f8351c3bca32e7c15940f328792425a2255cf2f0f7e72a72c689e7e24"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "69ef75a9a66e9fe59a900e185551e999",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.14,>=3.7",
            "size": 449577,
            "upload_time": "2025-07-13T08:44:17",
            "upload_time_iso_8601": "2025-07-13T08:44:17.481851Z",
            "url": "https://files.pythonhosted.org/packages/81/89/ef416b79af4d99362b8e468f54f69cff5fc0c17c1f24f377c93298c9654b/pyxirr-0.10.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "08f8999cff525a403b6b26df1aaba264c2f283aad4c56bcfd461af88ba651091",
                "md5": "095a75ad858ea41a0f45e84745b5c538",
                "sha256": "0d2eb62164f92253c33036959c5cd258e01d1e070b5b07cedd658c1b17614fcd"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "095a75ad858ea41a0f45e84745b5c538",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.14,>=3.7",
            "size": 611970,
            "upload_time": "2025-07-13T08:43:39",
            "upload_time_iso_8601": "2025-07-13T08:43:39.170563Z",
            "url": "https://files.pythonhosted.org/packages/08/f8/999cff525a403b6b26df1aaba264c2f283aad4c56bcfd461af88ba651091/pyxirr-0.10.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ffa356a99d46f77e97a66e7b2b80486aa8f71b2f92807398a41f1955c3968792",
                "md5": "715add338a407f2360321486f8e96d57",
                "sha256": "5b7d6fec5c0146eaf498158cd4fc0082dd285313bd87ac1db06845adc96b0de9"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp39-cp39-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "has_sig": false,
            "md5_digest": "715add338a407f2360321486f8e96d57",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.14,>=3.7",
            "size": 508909,
            "upload_time": "2025-07-13T08:44:45",
            "upload_time_iso_8601": "2025-07-13T08:44:45.448106Z",
            "url": "https://files.pythonhosted.org/packages/ff/a3/56a99d46f77e97a66e7b2b80486aa8f71b2f92807398a41f1955c3968792/pyxirr-0.10.7-cp39-cp39-manylinux_2_17_ppc64.manylinux2014_ppc64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7d9e3c2470f4dd71d8fe758340f0a567e23e14d8a7df5b944fe661a9924ea511",
                "md5": "a23fc2ec1cc80acada341d7249a0a7ce",
                "sha256": "3600f8e7afda830ba30840028c1764e8c32cb6120060e602a5093c6fa56c03cf"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "a23fc2ec1cc80acada341d7249a0a7ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.14,>=3.7",
            "size": 626719,
            "upload_time": "2025-07-13T08:44:29",
            "upload_time_iso_8601": "2025-07-13T08:44:29.248461Z",
            "url": "https://files.pythonhosted.org/packages/7d/9e/3c2470f4dd71d8fe758340f0a567e23e14d8a7df5b944fe661a9924ea511/pyxirr-0.10.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "171f0c4678a3926a3ddb6eff698b9195471c8ace2e7a2f78879414ce9edacb21",
                "md5": "dc8b9cfd226c5dbe397833195a88ab32",
                "sha256": "3d269a357c2b6f3a3ac56d480da2e6b36d696c13b25b604de6f2ed59d7b048b4"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dc8b9cfd226c5dbe397833195a88ab32",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.14,>=3.7",
            "size": 507958,
            "upload_time": "2025-07-13T08:45:15",
            "upload_time_iso_8601": "2025-07-13T08:45:15.382940Z",
            "url": "https://files.pythonhosted.org/packages/17/1f/0c4678a3926a3ddb6eff698b9195471c8ace2e7a2f78879414ce9edacb21/pyxirr-0.10.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0ae19b31a528fcfe52a1301bcad978259ce4508e46aaf8017b6c11e3d94f56ed",
                "md5": "ef6d44e0813b0c78c5a60d5c74487b9e",
                "sha256": "9925467c4f5576883545cdaa173b11e6e0c0195ffb7aa10c084a99933bd250dd"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ef6d44e0813b0c78c5a60d5c74487b9e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.14,>=3.7",
            "size": 629796,
            "upload_time": "2025-07-13T08:44:40",
            "upload_time_iso_8601": "2025-07-13T08:44:40.358006Z",
            "url": "https://files.pythonhosted.org/packages/0a/e1/9b31a528fcfe52a1301bcad978259ce4508e46aaf8017b6c11e3d94f56ed/pyxirr-0.10.7-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a92e2054c4fac615e6c0c0b4abfbd4bb0797367b8881edcb31a27d6d2bc53fff",
                "md5": "d9f2644d12b3307565eac0d3288c5563",
                "sha256": "76d53e6bf10eee9199ea0c91dd8595c29cf955ee780ca80fceaa2a461556e344"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp39-cp39-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "d9f2644d12b3307565eac0d3288c5563",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.14,>=3.7",
            "size": 713146,
            "upload_time": "2025-07-13T08:44:51",
            "upload_time_iso_8601": "2025-07-13T08:44:51.175564Z",
            "url": "https://files.pythonhosted.org/packages/a9/2e/2054c4fac615e6c0c0b4abfbd4bb0797367b8881edcb31a27d6d2bc53fff/pyxirr-0.10.7-cp39-cp39-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9590ff92743123359b66c8e49824766d4ffaa0d3ac5fbc098729fb3a890524e1",
                "md5": "446290b797923e92f14b3eed4ab81564",
                "sha256": "ef7c6447097c916fac18ed7a2b341eb066418d48565d9b7ef08c0b5246ab3d62"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "446290b797923e92f14b3eed4ab81564",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.14,>=3.7",
            "size": 691962,
            "upload_time": "2025-07-13T08:44:46",
            "upload_time_iso_8601": "2025-07-13T08:44:46.603476Z",
            "url": "https://files.pythonhosted.org/packages/95/90/ff92743123359b66c8e49824766d4ffaa0d3ac5fbc098729fb3a890524e1/pyxirr-0.10.7-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1cf6445185d59821e1062931609114b61ea577e4dea395a19e8e2996d9d0c572",
                "md5": "4cfc59b3e1d226cbe81567dcc917f3a8",
                "sha256": "9b882bb1056389b540ea5df41550ea0df90230559b960d5d74000346c72aef87"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4cfc59b3e1d226cbe81567dcc917f3a8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.14,>=3.7",
            "size": 679737,
            "upload_time": "2025-07-13T08:45:13",
            "upload_time_iso_8601": "2025-07-13T08:45:13.023890Z",
            "url": "https://files.pythonhosted.org/packages/1c/f6/445185d59821e1062931609114b61ea577e4dea395a19e8e2996d9d0c572/pyxirr-0.10.7-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f5a3655703712f96a7de64dd760472a2bd1c4981679bbc6670900ccabd9f8f39",
                "md5": "ecd7c812c7ae02a1eca6d2e0e9deb867",
                "sha256": "33d42077686f9ee359c674dc9ea30dcf1abe37c4fb28b9ea8e5fa2714bebefe7"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ecd7c812c7ae02a1eca6d2e0e9deb867",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": "<3.14,>=3.7",
            "size": 444161,
            "upload_time": "2025-07-13T08:44:54",
            "upload_time_iso_8601": "2025-07-13T08:44:54.056492Z",
            "url": "https://files.pythonhosted.org/packages/f5/a3/655703712f96a7de64dd760472a2bd1c4981679bbc6670900ccabd9f8f39/pyxirr-0.10.7-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f4956401007e95eb01333c919abe19c37402332dfc905449b7ab32db08fb3c93",
                "md5": "8565e9bc33618fad5ff6f55e61013975",
                "sha256": "ae802f8ab29d948a029bad7243eb912f63eb4499de8ae8c6a75305b4442f7dd3"
            },
            "downloads": -1,
            "filename": "pyxirr-0.10.7.tar.gz",
            "has_sig": false,
            "md5_digest": "8565e9bc33618fad5ff6f55e61013975",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<3.14,>=3.7",
            "size": 40385,
            "upload_time": "2025-07-13T08:43:32",
            "upload_time_iso_8601": "2025-07-13T08:43:32.911711Z",
            "url": "https://files.pythonhosted.org/packages/f4/95/6401007e95eb01333c919abe19c37402332dfc905449b7ab32db08fb3c93/pyxirr-0.10.7.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-13 08:43:32",
    "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: 0.90980s