units-llnl


Nameunits-llnl JSON
Version 0.12.1 PyPI version JSON
download
home_pageNone
SummaryPython bindings for the LLNL units library
upload_time2025-01-13 14:30:26
maintainerNone
docs_urlNone
authorNone
requires_python>=3.10
licenseBSD-3-Clause
keywords units measurement power systems co-simulation commodities science python
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Units

[![codecov](https://codecov.io/gh/LLNL/units/branch/main/graph/badge.svg)](https://codecov.io/gh/LLNL/units)
[![Build Status](https://dev.azure.com/phlptp/units/_apis/build/status/LLNL.units?branchName=main)](https://dev.azure.com/phlptp/units/_build/latest?definitionId=1&branchName=main)
[![CircleCI](https://circleci.com/gh/LLNL/units.svg?style=svg)](https://circleci.com/gh/LLNL/units)
[![](https://img.shields.io/badge/License-BSD-blue.svg)](https://github.com/GMLC-TDC/HELICS-src/blob/main/LICENSE)
[![](https://img.shields.io/pypi/pyversions/units-llnl)](https://pypi.org/project/units-llnl/)
[![](https://img.shields.io/pypi/v/units-llnl)](https://pypi.org/project/units-llnl/)
[![Documentation Status](https://readthedocs.org/projects/units/badge/?version=latest)](https://units.readthedocs.io/en/latest/?badge=latest)
[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/LLNL/units/main.svg)](https://results.pre-commit.ci/latest/github/LLNL/units/main)

[What's new](./CHANGELOG.md)

[Documentation](https://units.readthedocs.io/en/latest/)

The Units library provides a means of working with units of measurement at runtime, including conversion to and from strings. It provides a small number of types for working with units and measurements and operations necessary for user input and output with units. For additional description and discussion see [Readme](https://github.com/LLNL/units/blob/main/README.md). The Python library is a wrapper around the C++ library using [nanobind](https://github.com/wjakob/nanobind).

## Table of contents

- [Units](#units)
  - [Table of contents](#table-of-contents)
  - [Purpose](#purpose)
    - [Basic use case](#basic-use-case)
  - [Try it out](#try-it-out)
    - [Unit methods](#unit-methods)
      - [Constructors](#constructors)
      - [Methods](#methods)
      - [Properties](#properties)
      - [Operators](#operators)
    - [Measurements](#measurements)
      - [Constructors](#constructors-1)
      - [Methods](#methods-1)
      - [Properties](#properties-1)
      - [Operators](#operators-1)
    - [Other library methods](#other-library-methods)
    - [Future plans](#future-plans)
  - [Contributions](#contributions)
  - [Project Using the Units Library](#project-using-the-units-library)
  - [Release](#release)

## Purpose

A units library was needed to be able to represent units from a wide range of disciplines and be able to separate them from the numerical values for use in calculations when needed. The main drivers are

1. converting units, often represented by strings, to a standardized unit set when dealing with user input and output.
2. Being able to use the unit as a singular type that could contain any unit, and not introduce a huge number of types to represent all possible units.
3. Being able to associate a completely arbitrary unit given by users with a generic interface and support conversions between those user defined units and other units.
4. The library has its origins in power systems so support for per-unit operations was also lacking in the alternatives.

The python wrapper around the library is mainly intended to be able to handle various string representations and easily handle conversions, along with some support for commodities and packaging.

### Basic use case

The primary use case for the library is string operations and conversion. For example if you have a library that does some computations with physical units. In the library code itself the units are standardized and well defined. For example take a velocity, internally everything is in meters per second, but there is a configuration file that takes in the initial data and you would like to broadly support different units on the input

```python
from units_llnl import Unit

u1 = Unit("m")
u2 = Unit("cm")
v1 = u1.convert(10, u2)
assert v1 == 10 * 100

v2 = u1.convert(unit_out=u2, value=20)
assert v2 == 2000
```

```python
from units_llnl import Measurement

m1 = Measurement("10 m")
m2 = Measurement("2.5 s")
m3 = m1 / m2
m4 = Measurement("4.0 m/s")
assert m3 == m4
```

## Try it out

If you want to try out the string conversion components. There is server running that can do the string conversions

[Unit String Conversions](https://units.readthedocs.io/en/latest/_static/convert.html)

For more details see the [documentation](https://units.readthedocs.io/en/latest/web/index.html)

### Unit methods

These operations apply the `Units` object in Python. It maps to a `precise_unit` in C++. The Unit object is immutable like a python string so a new one is created for methods that modify the unit in some way.

#### Constructors

- `Unit(unit_str:str)` construct from a string
- `Unit(unit_str:str,commodity_str:str)` construct a unit from a unit string and commodity string
- `Unit(float multiplier, unit:Unit)` construct a unit using another unit as a base along with a multiplier

#### Methods

- `is_exactly_the_same(other:Unit)->bool` compare two units and check for exact equivalence in both the unit_data and the multiplier.
- `has_same_base(other:Unit)->bool` check if the units have the same base units.
- `equivalent_non_counting(other:Unit)->bool` check if the units are equivalent ignoring the counting bases.
- `is_convertible_to(other:Unit)->bool` check if the units are convertible to each other, currently checks `equivalent_non_counting()`, but some additional conditions might be allowed in the future to better match convert.
- `convert(value:float,unit_out:Unit|str)->float` convert a value from the existing unit to another, can also be a string.
- `is_per_unit()->bool` true if the unit has the per_unit flag active.
- `is_equation()->bool` true if the unit has the equation flag active.
- `is_valid()->bool` true if the unit is a valid unit.
- `is_normal()->bool` true if the unit is a normal unit (not error, nan, or subnormal).
- `is_error()->bool` true if the unit is an error unit (e.g invalid conversion).
- `isfinite()->bool` true if the unit does not have an infinite multiplier.
- `isinf()->bool` true if the unit does have an infinite multiplier.
- `root(power:int)->Unit` return a new unit taken to the root power.
- `sqrt()->Unit` returns a new unit which is the square root of the current unit.
- `set_multiplier(mult:float)->Unit` generate a new Unit with the set multiplier.
- `set_commodity(int commodity)` generate a new unit with the assigned commodity.

#### Properties

- `multiplier->float` return the unit multiplier as a floating point number
- `commodity->str` get the commodity of the unit
- `base_units`->Unit gets the base units (no multiplier) associated with a unit

#### Operators

- `*`,`/` with other units produces a new unit
- `~` produces the inverse of the unit
- `**` is an exponentiation operator and produces a new unit
- `*`, `/` with a floating point generates a `Measurement`
- `==` and `!=` produce the appropriate comparison operators
- f string formatting also works with units and returns the string representation of the unit. This string is guaranteed to produce the same unit as the current unit, but may not be the same string as was used to create it.
- `str`,`bool` are defined, `bool` indicates that the unit is valid, and non-zero
- `Units` may also be used as the indexing element in a dictionary

### Measurements

#### Constructors

- `Measurement(measurement_str:str)` construct from a string
- `Measurement(value:float, unit:Unit|str)` construct a `Measurement` from a value and a `Unit` or string representing a `Unit`

#### Methods

- `is_normal()->bool` true if the unit is a normal unit (not error, nan, or subnormal)
- `is_valid()->bool` true if the `Measurement` is a valid Measurement (not error)
- `root(power:int)->Measurement` return a new unit taken to the root power
- `sqrt()->Unit` returns a new unit which is the square root of the current unit
- `set_value(value:float)->Measurement` generate a new `Measurement` with the new Value
- `set_units(unit:Unit|str)` generate a new `Measurement` with the new units
- `value_as(unit:Unit|str)->float` convert the value of the `Measurement` to a new `Unit`
- `convert_to(unit:Unit|str)->Measurement` create a new `Measurement` with the new units and the value converted to those units
- `convert_to_base()->Measurement` create a new `Measurement` with the units as the base measurement units
- `is_close(other:Measurement)->bool` return true if the two measurements are close (both converted to non precise measurement and compared)

#### Properties

- `value->float` return the numerical portion of a `Measurement`
- `units->Unit` get the `Unit` associated with a `Measurement`

#### Operators

- `*`,`/` with other `Measurements` produces a new Measurement
- `~` inverts the measurement equivalent to `1/measurement`
- `+`,`-` with other `Measurements` ensures the units are in the same base unit and performs the appropriate action
- `**` is an exponentiation operator and produces a new `Measurement` (NOTE: beware of limits on power representations of some units, things will always wrap so it is defined but may not produce what you expect). Can be negative.
- `*`, `/`,`%` with a floating point generates a `Measurement`
- `//` produces the floor of the resulting unit of division
- `==`,`!=`,`>`,`<`,`>=`,`<=` produce the appropriate comparison operators
- `str`,`float`,`bool` are defined, `bool` indicates that the measurement is non zero and is valid
- `round`, `math.ceil`,`math.floor`, and `math.trunc` work as expected
- f string formatting also works with measurement. Some special formatters are available `f"{m1:-}"` will remove the unit and just display the value. `f"{m1:new_unit}"` will convert to a new unit before displaying. `f"{m1:-new_unit}"` will do the conversion but just display the numerical value after the conversion.

### Other library methods

- `convert(value:float,unit_in:Unit|str,unit_out:Unit|str)->float` generate a value represented by one unit in terms of another
- `convert_pu(value:float,unit_in:Unit|str,unit_out:Unit|str, base:float)->float` "generate a value represented by one unit in terms of another if one of the units is in per-unit, the base_value is used in part of the conversion"
- `default_unit(unit_type:str)->Unit` generate a unit used for a particular type of measurement
- `add_user_defined_unit(unit_name|str,unit_definition:str|Unit)` add a custom string representing a particular unit to use in future string translations
- `add_units_from_file(file|str)` inject a list of user defined units from a file

### Future plans

Uncertain measurements will likely be added, potentially some trig functions on measurements. Also some more commodity operations, and x12 and r20 unit types.

## Contributions

Contributions are welcome. See [Contributing](./CONTRIBUTING.md) for more details and [Contributors](./CONTRIBUTORS.md) for a list of the current and past Contributors to this project.

## Project Using the Units Library

Anyone else using the units library? Please let us know.

- [HELICS](www.helics.org)
- [GridDyn](https://github.com/LLNL/GridDyn)
- [scipp](https://scipp.github.io/)

## Release

This units library is distributed under the terms of the BSD-3 clause license. All new
contributions must be made under this license. [LICENSE](./LICENSE)

SPDX-License-Identifier: BSD-3-Clause

LLNL-CODE-773786

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "units-llnl",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": "units, measurement, power systems, co-simulation, commodities, science, python",
    "author": null,
    "author_email": "Philip Top <top1@llnl.gov>",
    "download_url": "https://files.pythonhosted.org/packages/ac/ce/ce1a5e94aa0eb531e24407c47442169f66d589dff2c18d99aff0c90af5d1/units_llnl-0.12.1.tar.gz",
    "platform": null,
    "description": "# Units\n\n[![codecov](https://codecov.io/gh/LLNL/units/branch/main/graph/badge.svg)](https://codecov.io/gh/LLNL/units)\n[![Build Status](https://dev.azure.com/phlptp/units/_apis/build/status/LLNL.units?branchName=main)](https://dev.azure.com/phlptp/units/_build/latest?definitionId=1&branchName=main)\n[![CircleCI](https://circleci.com/gh/LLNL/units.svg?style=svg)](https://circleci.com/gh/LLNL/units)\n[![](https://img.shields.io/badge/License-BSD-blue.svg)](https://github.com/GMLC-TDC/HELICS-src/blob/main/LICENSE)\n[![](https://img.shields.io/pypi/pyversions/units-llnl)](https://pypi.org/project/units-llnl/)\n[![](https://img.shields.io/pypi/v/units-llnl)](https://pypi.org/project/units-llnl/)\n[![Documentation Status](https://readthedocs.org/projects/units/badge/?version=latest)](https://units.readthedocs.io/en/latest/?badge=latest)\n[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/LLNL/units/main.svg)](https://results.pre-commit.ci/latest/github/LLNL/units/main)\n\n[What's new](./CHANGELOG.md)\n\n[Documentation](https://units.readthedocs.io/en/latest/)\n\nThe Units library provides a means of working with units of measurement at runtime, including conversion to and from strings. It provides a small number of types for working with units and measurements and operations necessary for user input and output with units. For additional description and discussion see [Readme](https://github.com/LLNL/units/blob/main/README.md). The Python library is a wrapper around the C++ library using [nanobind](https://github.com/wjakob/nanobind).\n\n## Table of contents\n\n- [Units](#units)\n  - [Table of contents](#table-of-contents)\n  - [Purpose](#purpose)\n    - [Basic use case](#basic-use-case)\n  - [Try it out](#try-it-out)\n    - [Unit methods](#unit-methods)\n      - [Constructors](#constructors)\n      - [Methods](#methods)\n      - [Properties](#properties)\n      - [Operators](#operators)\n    - [Measurements](#measurements)\n      - [Constructors](#constructors-1)\n      - [Methods](#methods-1)\n      - [Properties](#properties-1)\n      - [Operators](#operators-1)\n    - [Other library methods](#other-library-methods)\n    - [Future plans](#future-plans)\n  - [Contributions](#contributions)\n  - [Project Using the Units Library](#project-using-the-units-library)\n  - [Release](#release)\n\n## Purpose\n\nA units library was needed to be able to represent units from a wide range of disciplines and be able to separate them from the numerical values for use in calculations when needed. The main drivers are\n\n1. converting units, often represented by strings, to a standardized unit set when dealing with user input and output.\n2. Being able to use the unit as a singular type that could contain any unit, and not introduce a huge number of types to represent all possible units.\n3. Being able to associate a completely arbitrary unit given by users with a generic interface and support conversions between those user defined units and other units.\n4. The library has its origins in power systems so support for per-unit operations was also lacking in the alternatives.\n\nThe python wrapper around the library is mainly intended to be able to handle various string representations and easily handle conversions, along with some support for commodities and packaging.\n\n### Basic use case\n\nThe primary use case for the library is string operations and conversion. For example if you have a library that does some computations with physical units. In the library code itself the units are standardized and well defined. For example take a velocity, internally everything is in meters per second, but there is a configuration file that takes in the initial data and you would like to broadly support different units on the input\n\n```python\nfrom units_llnl import Unit\n\nu1 = Unit(\"m\")\nu2 = Unit(\"cm\")\nv1 = u1.convert(10, u2)\nassert v1 == 10 * 100\n\nv2 = u1.convert(unit_out=u2, value=20)\nassert v2 == 2000\n```\n\n```python\nfrom units_llnl import Measurement\n\nm1 = Measurement(\"10 m\")\nm2 = Measurement(\"2.5 s\")\nm3 = m1 / m2\nm4 = Measurement(\"4.0 m/s\")\nassert m3 == m4\n```\n\n## Try it out\n\nIf you want to try out the string conversion components. There is server running that can do the string conversions\n\n[Unit String Conversions](https://units.readthedocs.io/en/latest/_static/convert.html)\n\nFor more details see the [documentation](https://units.readthedocs.io/en/latest/web/index.html)\n\n### Unit methods\n\nThese operations apply the `Units` object in Python. It maps to a `precise_unit` in C++. The Unit object is immutable like a python string so a new one is created for methods that modify the unit in some way.\n\n#### Constructors\n\n- `Unit(unit_str:str)` construct from a string\n- `Unit(unit_str:str,commodity_str:str)` construct a unit from a unit string and commodity string\n- `Unit(float multiplier, unit:Unit)` construct a unit using another unit as a base along with a multiplier\n\n#### Methods\n\n- `is_exactly_the_same(other:Unit)->bool` compare two units and check for exact equivalence in both the unit_data and the multiplier.\n- `has_same_base(other:Unit)->bool` check if the units have the same base units.\n- `equivalent_non_counting(other:Unit)->bool` check if the units are equivalent ignoring the counting bases.\n- `is_convertible_to(other:Unit)->bool` check if the units are convertible to each other, currently checks `equivalent_non_counting()`, but some additional conditions might be allowed in the future to better match convert.\n- `convert(value:float,unit_out:Unit|str)->float` convert a value from the existing unit to another, can also be a string.\n- `is_per_unit()->bool` true if the unit has the per_unit flag active.\n- `is_equation()->bool` true if the unit has the equation flag active.\n- `is_valid()->bool` true if the unit is a valid unit.\n- `is_normal()->bool` true if the unit is a normal unit (not error, nan, or subnormal).\n- `is_error()->bool` true if the unit is an error unit (e.g invalid conversion).\n- `isfinite()->bool` true if the unit does not have an infinite multiplier.\n- `isinf()->bool` true if the unit does have an infinite multiplier.\n- `root(power:int)->Unit` return a new unit taken to the root power.\n- `sqrt()->Unit` returns a new unit which is the square root of the current unit.\n- `set_multiplier(mult:float)->Unit` generate a new Unit with the set multiplier.\n- `set_commodity(int commodity)` generate a new unit with the assigned commodity.\n\n#### Properties\n\n- `multiplier->float` return the unit multiplier as a floating point number\n- `commodity->str` get the commodity of the unit\n- `base_units`->Unit gets the base units (no multiplier) associated with a unit\n\n#### Operators\n\n- `*`,`/` with other units produces a new unit\n- `~` produces the inverse of the unit\n- `**` is an exponentiation operator and produces a new unit\n- `*`, `/` with a floating point generates a `Measurement`\n- `==` and `!=` produce the appropriate comparison operators\n- f string formatting also works with units and returns the string representation of the unit. This string is guaranteed to produce the same unit as the current unit, but may not be the same string as was used to create it.\n- `str`,`bool` are defined, `bool` indicates that the unit is valid, and non-zero\n- `Units` may also be used as the indexing element in a dictionary\n\n### Measurements\n\n#### Constructors\n\n- `Measurement(measurement_str:str)` construct from a string\n- `Measurement(value:float, unit:Unit|str)` construct a `Measurement` from a value and a `Unit` or string representing a `Unit`\n\n#### Methods\n\n- `is_normal()->bool` true if the unit is a normal unit (not error, nan, or subnormal)\n- `is_valid()->bool` true if the `Measurement` is a valid Measurement (not error)\n- `root(power:int)->Measurement` return a new unit taken to the root power\n- `sqrt()->Unit` returns a new unit which is the square root of the current unit\n- `set_value(value:float)->Measurement` generate a new `Measurement` with the new Value\n- `set_units(unit:Unit|str)` generate a new `Measurement` with the new units\n- `value_as(unit:Unit|str)->float` convert the value of the `Measurement` to a new `Unit`\n- `convert_to(unit:Unit|str)->Measurement` create a new `Measurement` with the new units and the value converted to those units\n- `convert_to_base()->Measurement` create a new `Measurement` with the units as the base measurement units\n- `is_close(other:Measurement)->bool` return true if the two measurements are close (both converted to non precise measurement and compared)\n\n#### Properties\n\n- `value->float` return the numerical portion of a `Measurement`\n- `units->Unit` get the `Unit` associated with a `Measurement`\n\n#### Operators\n\n- `*`,`/` with other `Measurements` produces a new Measurement\n- `~` inverts the measurement equivalent to `1/measurement`\n- `+`,`-` with other `Measurements` ensures the units are in the same base unit and performs the appropriate action\n- `**` is an exponentiation operator and produces a new `Measurement` (NOTE: beware of limits on power representations of some units, things will always wrap so it is defined but may not produce what you expect). Can be negative.\n- `*`, `/`,`%` with a floating point generates a `Measurement`\n- `//` produces the floor of the resulting unit of division\n- `==`,`!=`,`>`,`<`,`>=`,`<=` produce the appropriate comparison operators\n- `str`,`float`,`bool` are defined, `bool` indicates that the measurement is non zero and is valid\n- `round`, `math.ceil`,`math.floor`, and `math.trunc` work as expected\n- f string formatting also works with measurement. Some special formatters are available `f\"{m1:-}\"` will remove the unit and just display the value. `f\"{m1:new_unit}\"` will convert to a new unit before displaying. `f\"{m1:-new_unit}\"` will do the conversion but just display the numerical value after the conversion.\n\n### Other library methods\n\n- `convert(value:float,unit_in:Unit|str,unit_out:Unit|str)->float` generate a value represented by one unit in terms of another\n- `convert_pu(value:float,unit_in:Unit|str,unit_out:Unit|str, base:float)->float` \"generate a value represented by one unit in terms of another if one of the units is in per-unit, the base_value is used in part of the conversion\"\n- `default_unit(unit_type:str)->Unit` generate a unit used for a particular type of measurement\n- `add_user_defined_unit(unit_name|str,unit_definition:str|Unit)` add a custom string representing a particular unit to use in future string translations\n- `add_units_from_file(file|str)` inject a list of user defined units from a file\n\n### Future plans\n\nUncertain measurements will likely be added, potentially some trig functions on measurements. Also some more commodity operations, and x12 and r20 unit types.\n\n## Contributions\n\nContributions are welcome. See [Contributing](./CONTRIBUTING.md) for more details and [Contributors](./CONTRIBUTORS.md) for a list of the current and past Contributors to this project.\n\n## Project Using the Units Library\n\nAnyone else using the units library? Please let us know.\n\n- [HELICS](www.helics.org)\n- [GridDyn](https://github.com/LLNL/GridDyn)\n- [scipp](https://scipp.github.io/)\n\n## Release\n\nThis units library is distributed under the terms of the BSD-3 clause license. All new\ncontributions must be made under this license. [LICENSE](./LICENSE)\n\nSPDX-License-Identifier: BSD-3-Clause\n\nLLNL-CODE-773786\n",
    "bugtrack_url": null,
    "license": "BSD-3-Clause",
    "summary": "Python bindings for the LLNL units library",
    "version": "0.12.1",
    "project_urls": {
        "Changelog": "https://github.com/LLNL/units/blob/main/CHANGELOG.md",
        "Documentation": "https://units.readthedocs.io/en/latest/",
        "Homepage": "https://github.com/llnl/units",
        "Issues": "https://github.com/LLNL/units/issues",
        "Repository": "https://github.com/llnl/units"
    },
    "split_keywords": [
        "units",
        " measurement",
        " power systems",
        " co-simulation",
        " commodities",
        " science",
        " python"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4ead8b0f5bf67fb441c15ea6e7d63b92b6f2696cef8aad0be2a3c0011a877ba6",
                "md5": "4a2ccd9068fc263aa2e4e3536f123931",
                "sha256": "e33f62a0b0fdeab3163c0f43a2f01037badd6ac785955ebee134345c3e91b2fa"
            },
            "downloads": -1,
            "filename": "units_llnl-0.12.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4a2ccd9068fc263aa2e4e3536f123931",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 207255,
            "upload_time": "2025-01-13T14:29:31",
            "upload_time_iso_8601": "2025-01-13T14:29:31.470309Z",
            "url": "https://files.pythonhosted.org/packages/4e/ad/8b0f5bf67fb441c15ea6e7d63b92b6f2696cef8aad0be2a3c0011a877ba6/units_llnl-0.12.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1443d16acf949860d50390c16eaa50aa5677585785810f752898fed7c7db3680",
                "md5": "e334b1ea60e7f6d52a1902fb28dcafde",
                "sha256": "fee7706d56867d59a1ae89fa66145ea04421d0d15358fc98fc58dc0a292ef5a3"
            },
            "downloads": -1,
            "filename": "units_llnl-0.12.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e334b1ea60e7f6d52a1902fb28dcafde",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 259674,
            "upload_time": "2025-01-13T14:29:32",
            "upload_time_iso_8601": "2025-01-13T14:29:32.963713Z",
            "url": "https://files.pythonhosted.org/packages/14/43/d16acf949860d50390c16eaa50aa5677585785810f752898fed7c7db3680/units_llnl-0.12.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5b1290329362dd552b5a332fbd54e3c8cd56a9e2fb0cd9e73d5303a894c3ef9a",
                "md5": "3e036d4634c41894026a2d0581d2f2e8",
                "sha256": "2ec0ab3c3fb700cdb117069ba4158b428347b441bb9ade7e6607f8086dd7dc41"
            },
            "downloads": -1,
            "filename": "units_llnl-0.12.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3e036d4634c41894026a2d0581d2f2e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 254708,
            "upload_time": "2025-01-13T14:29:35",
            "upload_time_iso_8601": "2025-01-13T14:29:35.691183Z",
            "url": "https://files.pythonhosted.org/packages/5b/12/90329362dd552b5a332fbd54e3c8cd56a9e2fb0cd9e73d5303a894c3ef9a/units_llnl-0.12.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "322b547bafc83589970686d4a02cdc9a7b3a71a877a89906a77c8dcd6dc8b037",
                "md5": "684126cf7b039298c76f4560b8808244",
                "sha256": "8d73d0ad71597d40dc54b32200ddef444f0aef773c0c109320ec65dcac5dbf6c"
            },
            "downloads": -1,
            "filename": "units_llnl-0.12.1-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "684126cf7b039298c76f4560b8808244",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 752800,
            "upload_time": "2025-01-13T14:29:37",
            "upload_time_iso_8601": "2025-01-13T14:29:37.130116Z",
            "url": "https://files.pythonhosted.org/packages/32/2b/547bafc83589970686d4a02cdc9a7b3a71a877a89906a77c8dcd6dc8b037/units_llnl-0.12.1-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "31a91beebf50ac8e141a8b7d16203fb0d21483147823a663b6ba25df89b4308b",
                "md5": "9af6c0804a9aa13758bbdfbeaa08704a",
                "sha256": "6689da1bd11b4f74d75825b63192c9205b28dd3799719de8cd88fb5d43d1159f"
            },
            "downloads": -1,
            "filename": "units_llnl-0.12.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9af6c0804a9aa13758bbdfbeaa08704a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 705312,
            "upload_time": "2025-01-13T14:29:39",
            "upload_time_iso_8601": "2025-01-13T14:29:39.504087Z",
            "url": "https://files.pythonhosted.org/packages/31/a9/1beebf50ac8e141a8b7d16203fb0d21483147823a663b6ba25df89b4308b/units_llnl-0.12.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f407c68c3082260940f33b19ea52e9d30f1478f19d11170b2c048bcfd532dd1",
                "md5": "1e524e9f0374e4fb6ced3afa5ec08da5",
                "sha256": "12c78f56f0005349bfc2dad3ee7512cab3142b9ea883eb9a1e11023855cd61d1"
            },
            "downloads": -1,
            "filename": "units_llnl-0.12.1-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "1e524e9f0374e4fb6ced3afa5ec08da5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 200331,
            "upload_time": "2025-01-13T14:29:41",
            "upload_time_iso_8601": "2025-01-13T14:29:41.363603Z",
            "url": "https://files.pythonhosted.org/packages/8f/40/7c68c3082260940f33b19ea52e9d30f1478f19d11170b2c048bcfd532dd1/units_llnl-0.12.1-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f3532da25342ee8281647dfc99bdcd6cc45a2f6664d4fccd353f326b7604a4a7",
                "md5": "70f065b2fb873d65cc0046219de9fca7",
                "sha256": "aea9e72ddfe1dee4c36f2e0a36e352401948669c879829a8e891783b9c9c8386"
            },
            "downloads": -1,
            "filename": "units_llnl-0.12.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "70f065b2fb873d65cc0046219de9fca7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 223496,
            "upload_time": "2025-01-13T14:29:47",
            "upload_time_iso_8601": "2025-01-13T14:29:47.319994Z",
            "url": "https://files.pythonhosted.org/packages/f3/53/2da25342ee8281647dfc99bdcd6cc45a2f6664d4fccd353f326b7604a4a7/units_llnl-0.12.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "db5a59af44dbbf343d3aaab642ca43b4e65667740126d2fa8af7af5e9927b768",
                "md5": "49345fbdf826cbde8455d799c0a4f704",
                "sha256": "23ed77e14bed392c8b563e69a7b0bfe7ad0e8ba5598f9b0970cca905aa6b9b54"
            },
            "downloads": -1,
            "filename": "units_llnl-0.12.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "49345fbdf826cbde8455d799c0a4f704",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 207160,
            "upload_time": "2025-01-13T14:29:49",
            "upload_time_iso_8601": "2025-01-13T14:29:49.637662Z",
            "url": "https://files.pythonhosted.org/packages/db/5a/59af44dbbf343d3aaab642ca43b4e65667740126d2fa8af7af5e9927b768/units_llnl-0.12.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dc737739e2dd66a9c299fce1ed315e06fba8475b4ffb09f6a933bf506b8748d8",
                "md5": "1471e38f644a72dc84ff67941a5c6109",
                "sha256": "3b73420c6daf72651c122e0f3c11ebd32bdd41ad541e8f988fae8a661757d944"
            },
            "downloads": -1,
            "filename": "units_llnl-0.12.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1471e38f644a72dc84ff67941a5c6109",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 259292,
            "upload_time": "2025-01-13T14:29:52",
            "upload_time_iso_8601": "2025-01-13T14:29:52.352147Z",
            "url": "https://files.pythonhosted.org/packages/dc/73/7739e2dd66a9c299fce1ed315e06fba8475b4ffb09f6a933bf506b8748d8/units_llnl-0.12.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a372d038742474c93e9241d2a576597e593c4a29c95ee8e7c78216bde3757fc9",
                "md5": "f524933f04363c58ffe6074f6ed4f517",
                "sha256": "26da9d98702d4063307764fc8877ceda920ddd48a5558b704c8e7bba3a92dc28"
            },
            "downloads": -1,
            "filename": "units_llnl-0.12.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f524933f04363c58ffe6074f6ed4f517",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 254488,
            "upload_time": "2025-01-13T14:29:54",
            "upload_time_iso_8601": "2025-01-13T14:29:54.186049Z",
            "url": "https://files.pythonhosted.org/packages/a3/72/d038742474c93e9241d2a576597e593c4a29c95ee8e7c78216bde3757fc9/units_llnl-0.12.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "45407278bc0ba7f5639f760e44965ce49d3afa4201775abcc9d3103dd6b45981",
                "md5": "140d520e089be60fa006602f9b2545de",
                "sha256": "36c3100b9217fd1bc858498045a043597fda373df7019cd75e32e7842d4d375e"
            },
            "downloads": -1,
            "filename": "units_llnl-0.12.1-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "140d520e089be60fa006602f9b2545de",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 752561,
            "upload_time": "2025-01-13T14:29:55",
            "upload_time_iso_8601": "2025-01-13T14:29:55.813862Z",
            "url": "https://files.pythonhosted.org/packages/45/40/7278bc0ba7f5639f760e44965ce49d3afa4201775abcc9d3103dd6b45981/units_llnl-0.12.1-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a50dd5c65d68c22635ba5c1fe11aab78b14aeefd0bac3d5ba19feb0828a669f2",
                "md5": "4fdb30e36092f7207f9328635f7b9a76",
                "sha256": "121d3fce3c329157c10833bace89a0fe520f09b45fe59a151eb110003f9a8e5e"
            },
            "downloads": -1,
            "filename": "units_llnl-0.12.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4fdb30e36092f7207f9328635f7b9a76",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 705027,
            "upload_time": "2025-01-13T14:29:57",
            "upload_time_iso_8601": "2025-01-13T14:29:57.655279Z",
            "url": "https://files.pythonhosted.org/packages/a5/0d/d5c65d68c22635ba5c1fe11aab78b14aeefd0bac3d5ba19feb0828a669f2/units_llnl-0.12.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "60f57bbfde88190170872c088b15cd4c6591f1ae8cb1489717d6156a9e946194",
                "md5": "feb243516d64085fdf5761f4c9c27c33",
                "sha256": "5f161513ae4ddecfabb6b5034ec89da64ea3ea8046d1a9ecea24357105700f66"
            },
            "downloads": -1,
            "filename": "units_llnl-0.12.1-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "feb243516d64085fdf5761f4c9c27c33",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 200243,
            "upload_time": "2025-01-13T14:30:00",
            "upload_time_iso_8601": "2025-01-13T14:30:00.394675Z",
            "url": "https://files.pythonhosted.org/packages/60/f5/7bbfde88190170872c088b15cd4c6591f1ae8cb1489717d6156a9e946194/units_llnl-0.12.1-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a1d029643fc48d3dbbb648488b1f76bdb73442d8f334b24888bd80efda85c8d0",
                "md5": "00147c4f357a446cd2dd080596bb0b30",
                "sha256": "2e857c430e206694c12908a67678734413b229e4bb7a935f22805c51ffa9f6f1"
            },
            "downloads": -1,
            "filename": "units_llnl-0.12.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "00147c4f357a446cd2dd080596bb0b30",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 223318,
            "upload_time": "2025-01-13T14:30:01",
            "upload_time_iso_8601": "2025-01-13T14:30:01.777594Z",
            "url": "https://files.pythonhosted.org/packages/a1/d0/29643fc48d3dbbb648488b1f76bdb73442d8f334b24888bd80efda85c8d0/units_llnl-0.12.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a6fe60c5752d2e55943ba44d3c96819f7005fc642bb9cfb4463afa77e7ff958",
                "md5": "66b71aac11cb7e29ff55978d68b5f44b",
                "sha256": "4e5a742a1b414eb10556066aab425ffaf6bd3a438b685685a70de39865babd42"
            },
            "downloads": -1,
            "filename": "units_llnl-0.12.1-cp312-abi3-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "66b71aac11cb7e29ff55978d68b5f44b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 204604,
            "upload_time": "2025-01-13T14:30:03",
            "upload_time_iso_8601": "2025-01-13T14:30:03.770731Z",
            "url": "https://files.pythonhosted.org/packages/4a/6f/e60c5752d2e55943ba44d3c96819f7005fc642bb9cfb4463afa77e7ff958/units_llnl-0.12.1-cp312-abi3-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4f7967f3fa4c2cdb82a64ea0f7553795f80ea48762f6caa100bdbe0115e484ee",
                "md5": "2a3d3455bd0d509887c7fd25bb4883ac",
                "sha256": "910654c68bef89379ede270b419b995f795b6ea7083f9ca2d77d5d331fcb1300"
            },
            "downloads": -1,
            "filename": "units_llnl-0.12.1-cp312-abi3-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "2a3d3455bd0d509887c7fd25bb4883ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 255816,
            "upload_time": "2025-01-13T14:30:08",
            "upload_time_iso_8601": "2025-01-13T14:30:08.860453Z",
            "url": "https://files.pythonhosted.org/packages/4f/79/67f3fa4c2cdb82a64ea0f7553795f80ea48762f6caa100bdbe0115e484ee/units_llnl-0.12.1-cp312-abi3-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "35c1f3f2dc300ed38acd058ec24db501648333f64882fb8d4878b5230f224dca",
                "md5": "0a7d55e01ad230e663e377e404eafa11",
                "sha256": "018611a495928a5509122e6da830730c08f77e4b88cead38b9b58fe1eeb699cc"
            },
            "downloads": -1,
            "filename": "units_llnl-0.12.1-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0a7d55e01ad230e663e377e404eafa11",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 251536,
            "upload_time": "2025-01-13T14:30:10",
            "upload_time_iso_8601": "2025-01-13T14:30:10.242799Z",
            "url": "https://files.pythonhosted.org/packages/35/c1/f3f2dc300ed38acd058ec24db501648333f64882fb8d4878b5230f224dca/units_llnl-0.12.1-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "78e4107404246a89c2f9e9b8a4836acabd2be9bc300cf27b5e732ccc8323c0a4",
                "md5": "117bcc92210b63b029dc27bbef1faa1d",
                "sha256": "67cd60075b0f2e88dcbb999dda4afc1649a4a5c03e1b60437a9cfa501f3d1f21"
            },
            "downloads": -1,
            "filename": "units_llnl-0.12.1-cp312-abi3-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "117bcc92210b63b029dc27bbef1faa1d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 749608,
            "upload_time": "2025-01-13T14:30:11",
            "upload_time_iso_8601": "2025-01-13T14:30:11.698183Z",
            "url": "https://files.pythonhosted.org/packages/78/e4/107404246a89c2f9e9b8a4836acabd2be9bc300cf27b5e732ccc8323c0a4/units_llnl-0.12.1-cp312-abi3-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2fd21654b77f90b7853182430e8cbb64d12c349bf9fdb7ee7f8de6850caccaab",
                "md5": "1ec1635dee04f72d1064f5800d2cb9fa",
                "sha256": "f167e4311167651547beed9e9a4624b7c95d17edcb68c5abb62b0042a139fd7a"
            },
            "downloads": -1,
            "filename": "units_llnl-0.12.1-cp312-abi3-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1ec1635dee04f72d1064f5800d2cb9fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 702494,
            "upload_time": "2025-01-13T14:30:14",
            "upload_time_iso_8601": "2025-01-13T14:30:14.426179Z",
            "url": "https://files.pythonhosted.org/packages/2f/d2/1654b77f90b7853182430e8cbb64d12c349bf9fdb7ee7f8de6850caccaab/units_llnl-0.12.1-cp312-abi3-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a950f23b86e4f05f89a43e7ad8edeb703ac97c71e73ab66160bb62e6a12c5bac",
                "md5": "cc2e704421b5da6791cfbc5195762d8f",
                "sha256": "bc9d544bf7c0d8bc8baf4ffbcac91b3bdd83137f2aad2adfb91e66a926799062"
            },
            "downloads": -1,
            "filename": "units_llnl-0.12.1-cp312-abi3-win32.whl",
            "has_sig": false,
            "md5_digest": "cc2e704421b5da6791cfbc5195762d8f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 196282,
            "upload_time": "2025-01-13T14:30:16",
            "upload_time_iso_8601": "2025-01-13T14:30:16.029026Z",
            "url": "https://files.pythonhosted.org/packages/a9/50/f23b86e4f05f89a43e7ad8edeb703ac97c71e73ab66160bb62e6a12c5bac/units_llnl-0.12.1-cp312-abi3-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "10d59a14c5b03df1ec368c657043af9afd18a826a36608d55d0c6ee496446ec7",
                "md5": "c0562301c209a295827e7c805922acb3",
                "sha256": "aaac60d911ab4fc4b657e09a476dace43afb2b47ff1284f3fecfaaea202d5aa2"
            },
            "downloads": -1,
            "filename": "units_llnl-0.12.1-cp312-abi3-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c0562301c209a295827e7c805922acb3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 221859,
            "upload_time": "2025-01-13T14:30:18",
            "upload_time_iso_8601": "2025-01-13T14:30:18.816977Z",
            "url": "https://files.pythonhosted.org/packages/10/d5/9a14c5b03df1ec368c657043af9afd18a826a36608d55d0c6ee496446ec7/units_llnl-0.12.1-cp312-abi3-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c6588946fc5d7f263878d42f6d04b50f0908c9d811419c65066761907d93d46c",
                "md5": "cbafe2d082c5aaa61d3c7d2193d43ef4",
                "sha256": "5a5f8fa3a92f440816c942dc89b4b8f96e2dd11fdd62e261e92baf36a9dd0212"
            },
            "downloads": -1,
            "filename": "units_llnl-0.12.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cbafe2d082c5aaa61d3c7d2193d43ef4",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 204350,
            "upload_time": "2025-01-13T14:30:20",
            "upload_time_iso_8601": "2025-01-13T14:30:20.125722Z",
            "url": "https://files.pythonhosted.org/packages/c6/58/8946fc5d7f263878d42f6d04b50f0908c9d811419c65066761907d93d46c/units_llnl-0.12.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c05d0683d6be1efea6679e873811b41b3829e65e3c12067fd9f4122ba2db91dc",
                "md5": "7884a86f25b8c477a0e44111f87a0230",
                "sha256": "d7e3d700a477376d0e44e912a718ed44af59ddf006bd4605a5166dca7eeddb35"
            },
            "downloads": -1,
            "filename": "units_llnl-0.12.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "7884a86f25b8c477a0e44111f87a0230",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 256034,
            "upload_time": "2025-01-13T14:30:21",
            "upload_time_iso_8601": "2025-01-13T14:30:21.397145Z",
            "url": "https://files.pythonhosted.org/packages/c0/5d/0683d6be1efea6679e873811b41b3829e65e3c12067fd9f4122ba2db91dc/units_llnl-0.12.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8c6492307a9e733f09ed17d3b8084a73195638f25eabbf342d5aeffe871427bf",
                "md5": "645098f2235b48d8d13d6dc85deb0a2e",
                "sha256": "c13382939a145b75b7298215dafef4e2a9b3cf28355847cdeda34f36e02e3710"
            },
            "downloads": -1,
            "filename": "units_llnl-0.12.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "645098f2235b48d8d13d6dc85deb0a2e",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 251525,
            "upload_time": "2025-01-13T14:30:23",
            "upload_time_iso_8601": "2025-01-13T14:30:23.926448Z",
            "url": "https://files.pythonhosted.org/packages/8c/64/92307a9e733f09ed17d3b8084a73195638f25eabbf342d5aeffe871427bf/units_llnl-0.12.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ec24ed23c0da5d9f7f0451029dd1eba42216c4d91134f1a194a9b483378d7def",
                "md5": "4be549d71c537cdfe315920a8eb7a82f",
                "sha256": "87142e82b2edb177440acad6fef91ab0301757ab39ee03c7c9f47d642320fb3f"
            },
            "downloads": -1,
            "filename": "units_llnl-0.12.1-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4be549d71c537cdfe315920a8eb7a82f",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 221223,
            "upload_time": "2025-01-13T14:30:25",
            "upload_time_iso_8601": "2025-01-13T14:30:25.295553Z",
            "url": "https://files.pythonhosted.org/packages/ec/24/ed23c0da5d9f7f0451029dd1eba42216c4d91134f1a194a9b483378d7def/units_llnl-0.12.1-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "accece1a5e94aa0eb531e24407c47442169f66d589dff2c18d99aff0c90af5d1",
                "md5": "d0bf5a0cbf40d2716390f8933c5509ed",
                "sha256": "5271f1b2208a2423d366748139d03639e03cbb3eed3946f6662f3d066cb5460c"
            },
            "downloads": -1,
            "filename": "units_llnl-0.12.1.tar.gz",
            "has_sig": false,
            "md5_digest": "d0bf5a0cbf40d2716390f8933c5509ed",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 2841649,
            "upload_time": "2025-01-13T14:30:26",
            "upload_time_iso_8601": "2025-01-13T14:30:26.909922Z",
            "url": "https://files.pythonhosted.org/packages/ac/ce/ce1a5e94aa0eb531e24407c47442169f66d589dff2c18d99aff0c90af5d1/units_llnl-0.12.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-01-13 14:30:26",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "LLNL",
    "github_project": "units",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "circle": true,
    "lcname": "units-llnl"
}
        
Elapsed time: 0.43220s