rustitude


Namerustitude JSON
Version 0.7.4 PyPI version JSON
download
home_pageNone
SummaryPython bindings for the Rustitude library
upload_time2024-06-21 20:03:50
maintainerNone
docs_urlNone
authorNathaniel Dene Hoffman
requires_python>=3.7
licenseNone
keywords physics math rust
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <p align="center">
  <img
    width="800"
    src="https://raw.githubusercontent.com/denehoffman/rustitude/main/media/logo.png"
  />
</p>
<p align="center">
    <h1 align="center">Demystifying Amplitude Analysis</h1>
</p>

<p align="center">
  <a href="https://github.com/denehoffman/rustitude/commits/main/" alt="Lastest Commits">
    <img src="https://img.shields.io/github/last-commit/denehoffman/rustitude/main" /></a>
  <a href="https://github.com/denehoffman/rustitude/actions" alt="Build Status">
    <img src="https://img.shields.io/github/actions/workflow/status/denehoffman/rustitude/rust.yml" /></a>
  <a href="LICENSE" alt="License">
    <img src="https://img.shields.io/github/license/denehoffman/rustitude" /></a>
  <a href="https://crates.io/crates/rustitude" alt="Rustitude on crates.io">
    <img src="https://img.shields.io/crates/v/rustitude" /></a>
  <a href="https://docs.rs/rustitude" alt="Rustitude documentation on docs.rs">
    <img src="https://img.shields.io/docsrs/rustitude" /></a>
</p>

### Table of Contents:

- [Introduction](#Introduction)
- [Installation](#Installation)
- [Usage](#Usage)
- [TODOs](#TODOs)

# Introduction

This project began with a desire to make a fast but easy to use interface for fitting amplitudes to particle physics data. That being said, there are performant methods such as [`AmpTools`](https://github.com/mashephe/AmpTools), which is written in C++, but in my personal experience, it can be a bit tricky to use and extend, and it generally requires a lot of boilerplate code to generate new amplitudes or plotting scripts. On the other hand, there are also libraries like [`PyPWA`](https://github.com/JeffersonLab/PyPWA/) (written in Python) which seem like they could be easy to use, but often fail in this aspect due to Python's limiting syntax, speed issues, and a general lack of documentation and ongoing development. There have been attempts to bridge the gap between AmpTools and Python, most recently (and successfully) [`PyAmpTools`](https://github.com/lan13005/PyAmpTools). The difficulty with this method is that it relies on PyROOT, which also means you need ROOT installed (and built with your version of Python). For now, I'll spare you the anti-ROOT rant and just say that ROOT should be an opt-in, not a requirement. So where does that leave `rustitude`?

As the name suggests, `rustitude` was written in Rust, so let's get the obvious downside out of the way: not many particle physicists know how to write Rust code. Hopefully, this will change over the next decade (and there has already been some [support](https://www.whitehouse.gov/oncd/briefing-room/2024/02/26/memory-safety-statements-of-support/) from the US government, of all places). While Rust carries the disadvantage of relative obscurity compared to C++, it also has many benefits. No `null` means no null references (Tony Hoare's ["billion dollar mistake"](https://web.archive.org/web/20090628071208/http://qconlondon.com/london-2009/speaker/Tony+Hoare)). Pointers (called references in Rust) are always valid, a guarantee made by a very helpful and only occasionally frustrating borrow checker. Rust "crates" are set up in a way which encourages documentation (see [`rustitude-core`'s documentation](https://docs.rs/rustitude-core/)), and the basic syntax is fairly easy to learn for people who have been using optional type checking in Python. Perhaps one of the biggest benefits of Rust is how easy it is to employ [parallelization](https://crates.io/crates/rayon), but the two reasons I like it most are that it's incredibly easy to write Python bindings (that's what this library is after all) and it has a package manager. This second point is important -- unlike C/C++, where a developer is swamped with some menagerie `Makefile`, `CMakeLists.txt`, or some `scons` monstrosity which may only work on "X" system and only if you install and use `make`, `cmake`, `g++`, or whatever (oh yeah, and you made sure all your external dependencies are linked correctly, right? Right?), Rust supports adding a package by simply adding a line to `Cargo.toml` (or using the `cargo add` command). In many ways, package management in Rust is actually simpler than Python, since there's only one prefered method of creating and managing projects, formatting, linting, and compiling.

Now I've covered why I don't like some of the existing solutions, and why I chose to use Rust, but what does this project have that makes it stand out? Here are some reasons to entice you:

- `rustitude` will automatically parallelize amplitudes over the events in a dataset. There's no reason for a developer to ever write parallelized code themselves.
- Implementing [`Node`](https://docs.rs/rustitude-core/latest/rustitude_core/amplitude/trait.Node.html) on a struct is all that is needed to use it as an amplitude. This means developers need only write two to three total methods to describe the entire functionality of their amplitude, and one of these just gives the names and order of the amplitude's input parameters.
- A major goal of `rustitude` was to increase processing speed by sacrificing memory. This is done by precalculating parts of amplitudes which don't change when the free parameter inputs change. `AmpTools` supports a version of this, but only on the level of each general amplitude rather than on an individual basis. The simplest example of this is the `Ylm` amplitude (spherical harmonic), which can be entirely precalculated given the value of `l` and `m`. In `AmpTools`, different instances of `Ylm` with different `l`s and `m`s share precalculated data, whereas in `rustitude`, they don't. The `AmpTools` implementation of `Ylm` needs to calculate a spherical harmonic for every event on every function call, while `rustitude` just needs to look up a value in an array!
- The majority of the library (the public interface) has Python bindings, so if there is no need for custom amplitudes, a developer never actually has to write any Rust code, and the resulting calculations will be as performant as if they were written in Rust.

# Installation

Adding `rustitude` to an existing Rust project is as simple as

```shell
cargo add rustitude
```

The Python installation is equally straightforward:

```shell
pip install rustitude
```

# Usage

See the [`rustitude-core`](https://github.com/denehoffman/rustitude/tree/main/crates/rustitude-core) crate for a more in-depth tutorial on writing custom amplitudes in Rust. This package is mostly focused on the Python side of things. Here is the setup for an example analysis:

```python
import rustitude as rt
from rustitude import gluex
import numpy as np

# Start by creating some amplitudes:
f0p = gluex.resonances.KMatrixF0('f0+', channel=2)
f0n = gluex.resonances.KMatrixF0('f0-', channel=2)
f2 = gluex.resonances.KMatrixF2('f2', channel=2)
a0p = gluex.resonances.KMatrixA0('a0+', channel=1)
a0n = gluex.resonances.KMatrixA0('a0-', channel=1)
a2 = gluex.resonances.KMatrixA2('a2', channel=1)
s0p = gluex.harmonics.Zlm('Z00+', 0, 0, reflectivity='+')
s0n = gluex.harmonics.Zlm('Z00-', 0, 0, reflectivity='-')
d2p = gluex.harmonics.Zlm('Z22+', 2, 2, reflectivity='+')

# Next, let's put them together into a model
# The API supports addition, and multiplication and has additional methods for the absolute-square (`norm_sqr`), real part (`real`) and imaginary part (`imag`).
pos_re_sum = (f0p + a0p) * s0p.real() + (f2 + a2) * d2p.real()
pos_im_sum = (f0p + a0p) * s0p.imag() + (f2 + a2) * d2p.imag()
neg_re_sum = (f0n + a0n) * s0n.real()
neg_im_sum = (f0n + a0n) * s0n.imag()

mod = rt.Model([pos_re_sum, pos_im_sum, neg_re_sum, neg_im_sum])

# There is no need to constrain amplitudes, since each named amplitude is only ever evaluated once and a cached value gets pulled if we run across an amplitude by the same name!
# We should, however, fix some of the values to make the fit less ambiguous. For instance, suppose we are above the threshold for the f_0(500) which is included in the F0 K-Matrix:
mod.fix("f0+", "f0_500 re", 0.0)
mod.fix("f0+", "f0_500 im", 0.0)
mod.fix("f0-", "f0_500 re", 0.0)
mod.fix("f0-", "f0_500 im", 0.0)

# As mentioned, we should also fix at least one complex phase per coherent sum:
mod.fix("f0+", "f0_980 im", 0.0)
mod.fix("f0-", "f0_980 im", 0.0)

# All done! Now let's load our model into a Manager, which helps coordinate the model with datasets.
# First, load up some datasets. rustitude provides an open operation that uses uproot under the hood:
ds = rt.open('data.root')
ds_mc = rt.open('mc.root')

m_data = rt.Manager(mod, ds)
m_mc = rt.Manager(mod, ds_mc)

# We could stop here and evaluate just one dataset at a time:

# res = m_data([1.0, 3.4, 2.8, -3.6, ... ])
# -> [5.3, 0.2, ...], a list of intensities from the amplitude calculation

# Or, what we probably want to do is find the negative log-likelihood for some choice of parameters:

nll = rt.ExtendedLogLikelihood(m_data, m_mc)

res = nll([10.0] * mod.get_n_free())
print(res) # prints some value for the NLL
```

See the [`rustitude-gluex`](https://github.com/denehoffman/rustitude/tree/main/crates/rustitude-gluex) package for some of the currently implemented amplitudes (derived from GlueX's [halld_sim](https://github.com/JeffersonLab/halld_sim) repo). There are also some helper methods `Scalar`, `CScalar`, and `PCScalar` to create amplitudes which represent a single free parameter, a single complex free parameter, and a single complex free parameter in polar coordinates respectively.

# TODOs

In no particular order, here is a list of what (probably) needs to be done before I will stop making any breaking changes:

- Pure Rust parsing of ROOT files without the `uproot` backend (I have some moderate success with `oxyroot`, but there are still a few issues reading larger files)
- Add plotting methods
- A way to check if the number of parameters matches the input at compile time would be nice, not sure if it's possible though
- Give managers a way to apply amplitudes to new datasets, like using the result from a fit to weight some generated Monte-Carlo for plotting the result. This is possible to do through Python, but a convenience method is probably needed
- Lots of documentation
- Lots of tests


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "rustitude",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "Nathaniel Dene Hoffman <dene@cmu.edu>",
    "keywords": "physics, math, rust",
    "author": "Nathaniel Dene Hoffman",
    "author_email": "dene@cmu.edu",
    "download_url": "https://files.pythonhosted.org/packages/cd/2a/e623c94664d69671db94a0c54526de9656c18f5a51702462167818f72280/rustitude-0.7.4.tar.gz",
    "platform": null,
    "description": "<p align=\"center\">\n  <img\n    width=\"800\"\n    src=\"https://raw.githubusercontent.com/denehoffman/rustitude/main/media/logo.png\"\n  />\n</p>\n<p align=\"center\">\n    <h1 align=\"center\">Demystifying Amplitude Analysis</h1>\n</p>\n\n<p align=\"center\">\n  <a href=\"https://github.com/denehoffman/rustitude/commits/main/\" alt=\"Lastest Commits\">\n    <img src=\"https://img.shields.io/github/last-commit/denehoffman/rustitude/main\" /></a>\n  <a href=\"https://github.com/denehoffman/rustitude/actions\" alt=\"Build Status\">\n    <img src=\"https://img.shields.io/github/actions/workflow/status/denehoffman/rustitude/rust.yml\" /></a>\n  <a href=\"LICENSE\" alt=\"License\">\n    <img src=\"https://img.shields.io/github/license/denehoffman/rustitude\" /></a>\n  <a href=\"https://crates.io/crates/rustitude\" alt=\"Rustitude on crates.io\">\n    <img src=\"https://img.shields.io/crates/v/rustitude\" /></a>\n  <a href=\"https://docs.rs/rustitude\" alt=\"Rustitude documentation on docs.rs\">\n    <img src=\"https://img.shields.io/docsrs/rustitude\" /></a>\n</p>\n\n### Table of Contents:\n\n- [Introduction](#Introduction)\n- [Installation](#Installation)\n- [Usage](#Usage)\n- [TODOs](#TODOs)\n\n# Introduction\n\nThis project began with a desire to make a fast but easy to use interface for fitting amplitudes to particle physics data. That being said, there are performant methods such as [`AmpTools`](https://github.com/mashephe/AmpTools), which is written in C++, but in my personal experience, it can be a bit tricky to use and extend, and it generally requires a lot of boilerplate code to generate new amplitudes or plotting scripts. On the other hand, there are also libraries like [`PyPWA`](https://github.com/JeffersonLab/PyPWA/) (written in Python) which seem like they could be easy to use, but often fail in this aspect due to Python's limiting syntax, speed issues, and a general lack of documentation and ongoing development. There have been attempts to bridge the gap between AmpTools and Python, most recently (and successfully) [`PyAmpTools`](https://github.com/lan13005/PyAmpTools). The difficulty with this method is that it relies on PyROOT, which also means you need ROOT installed (and built with your version of Python). For now, I'll spare you the anti-ROOT rant and just say that ROOT should be an opt-in, not a requirement. So where does that leave `rustitude`?\n\nAs the name suggests, `rustitude` was written in Rust, so let's get the obvious downside out of the way: not many particle physicists know how to write Rust code. Hopefully, this will change over the next decade (and there has already been some [support](https://www.whitehouse.gov/oncd/briefing-room/2024/02/26/memory-safety-statements-of-support/) from the US government, of all places). While Rust carries the disadvantage of relative obscurity compared to C++, it also has many benefits. No `null` means no null references (Tony Hoare's [\"billion dollar mistake\"](https://web.archive.org/web/20090628071208/http://qconlondon.com/london-2009/speaker/Tony+Hoare)). Pointers (called references in Rust) are always valid, a guarantee made by a very helpful and only occasionally frustrating borrow checker. Rust \"crates\" are set up in a way which encourages documentation (see [`rustitude-core`'s documentation](https://docs.rs/rustitude-core/)), and the basic syntax is fairly easy to learn for people who have been using optional type checking in Python. Perhaps one of the biggest benefits of Rust is how easy it is to employ [parallelization](https://crates.io/crates/rayon), but the two reasons I like it most are that it's incredibly easy to write Python bindings (that's what this library is after all) and it has a package manager. This second point is important -- unlike C/C++, where a developer is swamped with some menagerie `Makefile`, `CMakeLists.txt`, or some `scons` monstrosity which may only work on \"X\" system and only if you install and use `make`, `cmake`, `g++`, or whatever (oh yeah, and you made sure all your external dependencies are linked correctly, right? Right?), Rust supports adding a package by simply adding a line to `Cargo.toml` (or using the `cargo add` command). In many ways, package management in Rust is actually simpler than Python, since there's only one prefered method of creating and managing projects, formatting, linting, and compiling.\n\nNow I've covered why I don't like some of the existing solutions, and why I chose to use Rust, but what does this project have that makes it stand out? Here are some reasons to entice you:\n\n- `rustitude` will automatically parallelize amplitudes over the events in a dataset. There's no reason for a developer to ever write parallelized code themselves.\n- Implementing [`Node`](https://docs.rs/rustitude-core/latest/rustitude_core/amplitude/trait.Node.html) on a struct is all that is needed to use it as an amplitude. This means developers need only write two to three total methods to describe the entire functionality of their amplitude, and one of these just gives the names and order of the amplitude's input parameters.\n- A major goal of `rustitude` was to increase processing speed by sacrificing memory. This is done by precalculating parts of amplitudes which don't change when the free parameter inputs change. `AmpTools` supports a version of this, but only on the level of each general amplitude rather than on an individual basis. The simplest example of this is the `Ylm` amplitude (spherical harmonic), which can be entirely precalculated given the value of `l` and `m`. In `AmpTools`, different instances of `Ylm` with different `l`s and `m`s share precalculated data, whereas in `rustitude`, they don't. The `AmpTools` implementation of `Ylm` needs to calculate a spherical harmonic for every event on every function call, while `rustitude` just needs to look up a value in an array!\n- The majority of the library (the public interface) has Python bindings, so if there is no need for custom amplitudes, a developer never actually has to write any Rust code, and the resulting calculations will be as performant as if they were written in Rust.\n\n# Installation\n\nAdding `rustitude` to an existing Rust project is as simple as\n\n```shell\ncargo add rustitude\n```\n\nThe Python installation is equally straightforward:\n\n```shell\npip install rustitude\n```\n\n# Usage\n\nSee the [`rustitude-core`](https://github.com/denehoffman/rustitude/tree/main/crates/rustitude-core) crate for a more in-depth tutorial on writing custom amplitudes in Rust. This package is mostly focused on the Python side of things. Here is the setup for an example analysis:\n\n```python\nimport rustitude as rt\nfrom rustitude import gluex\nimport numpy as np\n\n# Start by creating some amplitudes:\nf0p = gluex.resonances.KMatrixF0('f0+', channel=2)\nf0n = gluex.resonances.KMatrixF0('f0-', channel=2)\nf2 = gluex.resonances.KMatrixF2('f2', channel=2)\na0p = gluex.resonances.KMatrixA0('a0+', channel=1)\na0n = gluex.resonances.KMatrixA0('a0-', channel=1)\na2 = gluex.resonances.KMatrixA2('a2', channel=1)\ns0p = gluex.harmonics.Zlm('Z00+', 0, 0, reflectivity='+')\ns0n = gluex.harmonics.Zlm('Z00-', 0, 0, reflectivity='-')\nd2p = gluex.harmonics.Zlm('Z22+', 2, 2, reflectivity='+')\n\n# Next, let's put them together into a model\n# The API supports addition, and multiplication and has additional methods for the absolute-square (`norm_sqr`), real part (`real`) and imaginary part (`imag`).\npos_re_sum = (f0p + a0p) * s0p.real() + (f2 + a2) * d2p.real()\npos_im_sum = (f0p + a0p) * s0p.imag() + (f2 + a2) * d2p.imag()\nneg_re_sum = (f0n + a0n) * s0n.real()\nneg_im_sum = (f0n + a0n) * s0n.imag()\n\nmod = rt.Model([pos_re_sum, pos_im_sum, neg_re_sum, neg_im_sum])\n\n# There is no need to constrain amplitudes, since each named amplitude is only ever evaluated once and a cached value gets pulled if we run across an amplitude by the same name!\n# We should, however, fix some of the values to make the fit less ambiguous. For instance, suppose we are above the threshold for the f_0(500) which is included in the F0 K-Matrix:\nmod.fix(\"f0+\", \"f0_500 re\", 0.0)\nmod.fix(\"f0+\", \"f0_500 im\", 0.0)\nmod.fix(\"f0-\", \"f0_500 re\", 0.0)\nmod.fix(\"f0-\", \"f0_500 im\", 0.0)\n\n# As mentioned, we should also fix at least one complex phase per coherent sum:\nmod.fix(\"f0+\", \"f0_980 im\", 0.0)\nmod.fix(\"f0-\", \"f0_980 im\", 0.0)\n\n# All done! Now let's load our model into a Manager, which helps coordinate the model with datasets.\n# First, load up some datasets. rustitude provides an open operation that uses uproot under the hood:\nds = rt.open('data.root')\nds_mc = rt.open('mc.root')\n\nm_data = rt.Manager(mod, ds)\nm_mc = rt.Manager(mod, ds_mc)\n\n# We could stop here and evaluate just one dataset at a time:\n\n# res = m_data([1.0, 3.4, 2.8, -3.6, ... ])\n# -> [5.3, 0.2, ...], a list of intensities from the amplitude calculation\n\n# Or, what we probably want to do is find the negative log-likelihood for some choice of parameters:\n\nnll = rt.ExtendedLogLikelihood(m_data, m_mc)\n\nres = nll([10.0] * mod.get_n_free())\nprint(res) # prints some value for the NLL\n```\n\nSee the [`rustitude-gluex`](https://github.com/denehoffman/rustitude/tree/main/crates/rustitude-gluex) package for some of the currently implemented amplitudes (derived from GlueX's [halld_sim](https://github.com/JeffersonLab/halld_sim) repo). There are also some helper methods `Scalar`, `CScalar`, and `PCScalar` to create amplitudes which represent a single free parameter, a single complex free parameter, and a single complex free parameter in polar coordinates respectively.\n\n# TODOs\n\nIn no particular order, here is a list of what (probably) needs to be done before I will stop making any breaking changes:\n\n- Pure Rust parsing of ROOT files without the `uproot` backend (I have some moderate success with `oxyroot`, but there are still a few issues reading larger files)\n- Add plotting methods\n- A way to check if the number of parameters matches the input at compile time would be nice, not sure if it's possible though\n- Give managers a way to apply amplitudes to new datasets, like using the result from a fit to weight some generated Monte-Carlo for plotting the result. This is possible to do through Python, but a convenience method is probably needed\n- Lots of documentation\n- Lots of tests\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Python bindings for the Rustitude library",
    "version": "0.7.4",
    "project_urls": {
        "changelog": "https://github.com/denehoffman/rustitude/blob/main/CHANGELOG.md",
        "documentation": "https://rustitude.readthedocs.io/en/latest/",
        "homepage": "https://github.com/denehoffman/rustitude",
        "repository": "https://github.com/denehoffman/rustitude"
    },
    "split_keywords": [
        "physics",
        " math",
        " rust"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "541023e669a2bfaa1f6909634a1d1034e375378dbb89cbf63d1a920b57cef7bf",
                "md5": "d9cdfae84f80a66217d6e790e3ea98c7",
                "sha256": "a7b845d98ff807086a9f65b2698239ed725c75508bf2d4e353b546a192749b72"
            },
            "downloads": -1,
            "filename": "rustitude-0.7.4-cp37-abi3-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d9cdfae84f80a66217d6e790e3ea98c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 2384759,
            "upload_time": "2024-06-21T20:03:47",
            "upload_time_iso_8601": "2024-06-21T20:03:47.675331Z",
            "url": "https://files.pythonhosted.org/packages/54/10/23e669a2bfaa1f6909634a1d1034e375378dbb89cbf63d1a920b57cef7bf/rustitude-0.7.4-cp37-abi3-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7631de8418a3b3dd1c18a8d918cee136e3d868f5abb07b178f38646519b8f7f8",
                "md5": "594fbb6b922ab82171617c6589e5c82a",
                "sha256": "069eedb789861564595137cc60e72f95ab1bce327e271e25ed7501dd47d7f563"
            },
            "downloads": -1,
            "filename": "rustitude-0.7.4-cp37-abi3-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "594fbb6b922ab82171617c6589e5c82a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 2109923,
            "upload_time": "2024-06-21T20:03:45",
            "upload_time_iso_8601": "2024-06-21T20:03:45.503209Z",
            "url": "https://files.pythonhosted.org/packages/76/31/de8418a3b3dd1c18a8d918cee136e3d868f5abb07b178f38646519b8f7f8/rustitude-0.7.4-cp37-abi3-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1dff673cefa3da2ff501f2ab79c66d75535b9ad31ae2b6a949d8aa18412e023c",
                "md5": "43e08c7e149926b06067901c70e1c32b",
                "sha256": "03e75588e0fd554327554bca1e6cedf6ffbd3c930733764d684f62b646359345"
            },
            "downloads": -1,
            "filename": "rustitude-0.7.4-cp37-abi3-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "43e08c7e149926b06067901c70e1c32b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 12507814,
            "upload_time": "2024-06-21T20:03:35",
            "upload_time_iso_8601": "2024-06-21T20:03:35.300349Z",
            "url": "https://files.pythonhosted.org/packages/1d/ff/673cefa3da2ff501f2ab79c66d75535b9ad31ae2b6a949d8aa18412e023c/rustitude-0.7.4-cp37-abi3-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b4545c47772ebcde8b0d7e2fa151615cfe363a6bd7416f73194227e6da2dc249",
                "md5": "2007b16c4e5f11e8bd21f67205940807",
                "sha256": "38b0420f0f103fd07679c9fc4dc072db5d3ef120bf80e9e6ac289f99cf3e29a8"
            },
            "downloads": -1,
            "filename": "rustitude-0.7.4-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2007b16c4e5f11e8bd21f67205940807",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 12057320,
            "upload_time": "2024-06-21T20:03:21",
            "upload_time_iso_8601": "2024-06-21T20:03:21.714560Z",
            "url": "https://files.pythonhosted.org/packages/b4/54/5c47772ebcde8b0d7e2fa151615cfe363a6bd7416f73194227e6da2dc249/rustitude-0.7.4-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "054a98da13e6be8c95d10cb9377110f6518903b2e1f3d218ee93b737f004495b",
                "md5": "433f3860dd75db1f4f2aefdb32532310",
                "sha256": "341d8d14cfe391739c9367206a30020cb1907674aaac25628347e4755ffdf960"
            },
            "downloads": -1,
            "filename": "rustitude-0.7.4-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "433f3860dd75db1f4f2aefdb32532310",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 12165082,
            "upload_time": "2024-06-21T20:03:25",
            "upload_time_iso_8601": "2024-06-21T20:03:25.175540Z",
            "url": "https://files.pythonhosted.org/packages/05/4a/98da13e6be8c95d10cb9377110f6518903b2e1f3d218ee93b737f004495b/rustitude-0.7.4-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "248e3cc7384e5333e59fa9b17408e2f06e4fdc09184d127df448fe29a88ce499",
                "md5": "0ec1c060f462317d3e691e98d209717e",
                "sha256": "176645ae2c7a350ed7eecea0594434ee66f9156425642002912171e0a54627e9"
            },
            "downloads": -1,
            "filename": "rustitude-0.7.4-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "0ec1c060f462317d3e691e98d209717e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 12091357,
            "upload_time": "2024-06-21T20:03:28",
            "upload_time_iso_8601": "2024-06-21T20:03:28.482531Z",
            "url": "https://files.pythonhosted.org/packages/24/8e/3cc7384e5333e59fa9b17408e2f06e4fdc09184d127df448fe29a88ce499/rustitude-0.7.4-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "82f4a0b91ce9ce9a34e29d5e7940b79119c907b8af005d9cb36fc53c34a7deba",
                "md5": "22f05f702cf6cc1c1b1500c6ad4bc4dd",
                "sha256": "8d6db9db3aa6f3029940daa0bbbbe38a36a1291114c1880f665d343475390b68"
            },
            "downloads": -1,
            "filename": "rustitude-0.7.4-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "22f05f702cf6cc1c1b1500c6ad4bc4dd",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 15492890,
            "upload_time": "2024-06-21T20:03:31",
            "upload_time_iso_8601": "2024-06-21T20:03:31.711762Z",
            "url": "https://files.pythonhosted.org/packages/82/f4/a0b91ce9ce9a34e29d5e7940b79119c907b8af005d9cb36fc53c34a7deba/rustitude-0.7.4-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7f90d62ca4f9a5d1094b9c8bab88df9017dab2a05cb873c35fda8459773d9943",
                "md5": "88772da7c211ddaf8274b84fa1ed7d01",
                "sha256": "d113904a7125e930ae6a5144d854158f4e5d4bcecd3f416d9538e9b64deeac3f"
            },
            "downloads": -1,
            "filename": "rustitude-0.7.4-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "88772da7c211ddaf8274b84fa1ed7d01",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 13264735,
            "upload_time": "2024-06-21T20:03:42",
            "upload_time_iso_8601": "2024-06-21T20:03:42.174657Z",
            "url": "https://files.pythonhosted.org/packages/7f/90/d62ca4f9a5d1094b9c8bab88df9017dab2a05cb873c35fda8459773d9943/rustitude-0.7.4-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d0e149cfca4484607634bff870227f846d58de7debcff42412eb9fbbd1699f93",
                "md5": "21a0493826ce2e5695c316c836a5b58d",
                "sha256": "257765fc6ef9eacb1e02278627c73f2d7d6ecaeb521ad8760fff5132efa1558f"
            },
            "downloads": -1,
            "filename": "rustitude-0.7.4-cp37-abi3-win32.whl",
            "has_sig": false,
            "md5_digest": "21a0493826ce2e5695c316c836a5b58d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1890218,
            "upload_time": "2024-06-21T20:03:55",
            "upload_time_iso_8601": "2024-06-21T20:03:55.094365Z",
            "url": "https://files.pythonhosted.org/packages/d0/e1/49cfca4484607634bff870227f846d58de7debcff42412eb9fbbd1699f93/rustitude-0.7.4-cp37-abi3-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8509070478c9cf8cdd6a54270aa8b0b02ef73846c174dbe1455b61a1dce92e6b",
                "md5": "9b1c847569c185c851a3e1824908f7a2",
                "sha256": "891441060a501ced25447fc6e867c9a78a395d85320f46ba3322c11919db1293"
            },
            "downloads": -1,
            "filename": "rustitude-0.7.4-cp37-abi3-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9b1c847569c185c851a3e1824908f7a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1946078,
            "upload_time": "2024-06-21T20:03:52",
            "upload_time_iso_8601": "2024-06-21T20:03:52.968914Z",
            "url": "https://files.pythonhosted.org/packages/85/09/070478c9cf8cdd6a54270aa8b0b02ef73846c174dbe1455b61a1dce92e6b/rustitude-0.7.4-cp37-abi3-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cd2ae623c94664d69671db94a0c54526de9656c18f5a51702462167818f72280",
                "md5": "413dfe593e8ac62e5838a4645e822698",
                "sha256": "5c7b752b5735d866bc48863cb1376bc045f575a070ff38de708049c00b803a29"
            },
            "downloads": -1,
            "filename": "rustitude-0.7.4.tar.gz",
            "has_sig": false,
            "md5_digest": "413dfe593e8ac62e5838a4645e822698",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 8112570,
            "upload_time": "2024-06-21T20:03:50",
            "upload_time_iso_8601": "2024-06-21T20:03:50.381186Z",
            "url": "https://files.pythonhosted.org/packages/cd/2a/e623c94664d69671db94a0c54526de9656c18f5a51702462167818f72280/rustitude-0.7.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-06-21 20:03:50",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "denehoffman",
    "github_project": "rustitude",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "rustitude"
}
        
Elapsed time: 0.45393s