units-llnl


Nameunits-llnl JSON
Version 0.10.2 PyPI version JSON
download
home_pageNone
SummaryPython bindings for the LLNL units library
upload_time2024-12-21 20:42:13
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)
[![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)

## 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)
      - [Unit Operators](#unit-operators)
    - [Measurement Operations](#measurement-operations)
      - [Measurement operators](#measurement-operators)
  - [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.
5. Capture uncertainty and uncertainty calculations directly with a measurement

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 to units and precise_units

- `<unit>(<unit_data>)` construct from a base unit_data
- `<unit>(<unit_data>, double multiplier)` construct a unit from a base data and a multiplier
- `<unit>(double multiplier, <unit>)` construct from a multiplier and another unit
- also available are copy constructor and copy assignments
- `<unit> inv()` generate a new unit containing the inverse unit `m.inv()= 1/m`
- `<unit> pow(int power)` take a unit to power(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). `power` can be negative.
- `bool is_exactly_the_same(<unit>)` compare two units and check for exact equivalence in both the unit_data and the multiplier, NOTE: this uses double equality
- `bool has_same_base(<unit>|<unit_data>)` check if the <unit_data> is the same
- `equivalent_non_counting(<unit>|<unit_data>)` check if the units are equivalent ignoring the counting bases
- `bool is_convertible(<unit>)` 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.
- `int unit_type_count()` count the number of unit bases used, (does not take into consideration powers, just if the dimension is used or not.
- `bool is_per_unit()` true if the unit has the per_unit flag active
- `bool is_equation()` true if the unit has the equation flag active
- `bool has_i_flag()` true if the i_flag is marked active
- `bool has_e_flag()` true if the e_flag is marked active
- `double multiplier()` return the unit multiplier as a double

- `commodity()` get the commodity of the unit
- `commodity(int commodity)` assign a commodity to the precise_unit.

#### Unit Operators

There are also several operator overloads that apply to units and precise_units.

- `<unit>=<unit>*<unit>` generate a new unit with the units multiplied ie `m*m` does what you might expect and produces a new unit with `m^2`
- `<unit>=<unit>/<unit>` generate a new unit with the units divided ie `m/s` does what you might expect and produces a new unit with meters per second. NOTE: `m/m` will produce `1` it will not automatically produce a `pu` though we are looking at how to make a 'pu_m\*m=m' so units like strain might work smoothly.

- `bool <unit>==<unit>` compare two units. this does a rounding compare so there is some tolerance to roughly 7 significant digits for \<unit> and 13 significant digits for <precise_unit>.
- `bool <unit>!=<unit>` the opposite of `==`

precise_units can usually operate with a `precise_unit` or `unit`, `unit` usually can't operate on `precise_unit`.

### Measurement Operations

- `<measurement>(val, <unit>)` construct a unit from a value and unit object.
- `double value() const` get the measurement value as a double.
- `<measurement> convert_to(<unit>) const` convert the value in the measurement to another unit base
- `<measurement> convert_to_base() const` convert to a base unit, i.e. a unit whose multiplier is 1.0
- `<unit> units() const` get the units used as a basis for the measurement
- `<unit> as_unit() const` take the measurement as is and convert it into a single unit. For Examples say a was 10 m. calling as_unit() on that measurement would produce a unit with a multiplier of 10 and a base of meters.
- `double value_as(<unit>)` get the value of a measurement as if it were measured in \<unit\>

#### Measurement operators

There are several operator overloads which work on measurements or units to produce measurements.

- `'*', '/', '+','-'` are all defined for mathematical operations on a measurement and produce another measurement.
- `%` `*`, and `/` are defined for \<measurement>\<op>\<double>
- `*`, and `/` are defined for \<double>\<op>\<measurement>

Notes: for regular measurements, `+` and `-` are not defined for doubles due to ambiguity of what that operation means. For `fixed_measurement` types this is defined as the units are known at construction and cannot change. For `fixed_measurement` types if the operator would produce a new measurement with the same units it will be a fixed measurement, if not it reverts to a regular measurement.

- `==`, `!=`, `>`, `<`, `>=`, `<=` are defined for all measurement comparisons
- `<measurement>=<double>*<unit>`
- `<measurement>=<unit>*<double>`
- `<measurement>=<unit>/<double>`
- `<measurement>=<double>/<unit>` basically calling a number multiplied or divided by a `<unit>` produces a measurement, specifically `unit` produces a measurement and `precise_unit` produces a precise_measurement.

## 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": "phlptp22 <top1@llnl.gov>",
    "download_url": "https://files.pythonhosted.org/packages/e8/1a/5b22fc0b7052472194ea646255bc0c662e255455636e77d753c16204fbae/units_llnl-0.10.2.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[![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)\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      - [Unit Operators](#unit-operators)\n    - [Measurement Operations](#measurement-operations)\n      - [Measurement operators](#measurement-operators)\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.\n5. Capture uncertainty and uncertainty calculations directly with a measurement\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 to units and precise_units\n\n- `<unit>(<unit_data>)` construct from a base unit_data\n- `<unit>(<unit_data>, double multiplier)` construct a unit from a base data and a multiplier\n- `<unit>(double multiplier, <unit>)` construct from a multiplier and another unit\n- also available are copy constructor and copy assignments\n- `<unit> inv()` generate a new unit containing the inverse unit `m.inv()= 1/m`\n- `<unit> pow(int power)` take a unit to power(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). `power` can be negative.\n- `bool is_exactly_the_same(<unit>)` compare two units and check for exact equivalence in both the unit_data and the multiplier, NOTE: this uses double equality\n- `bool has_same_base(<unit>|<unit_data>)` check if the <unit_data> is the same\n- `equivalent_non_counting(<unit>|<unit_data>)` check if the units are equivalent ignoring the counting bases\n- `bool is_convertible(<unit>)` 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- `int unit_type_count()` count the number of unit bases used, (does not take into consideration powers, just if the dimension is used or not.\n- `bool is_per_unit()` true if the unit has the per_unit flag active\n- `bool is_equation()` true if the unit has the equation flag active\n- `bool has_i_flag()` true if the i_flag is marked active\n- `bool has_e_flag()` true if the e_flag is marked active\n- `double multiplier()` return the unit multiplier as a double\n\n- `commodity()` get the commodity of the unit\n- `commodity(int commodity)` assign a commodity to the precise_unit.\n\n#### Unit Operators\n\nThere are also several operator overloads that apply to units and precise_units.\n\n- `<unit>=<unit>*<unit>` generate a new unit with the units multiplied ie `m*m` does what you might expect and produces a new unit with `m^2`\n- `<unit>=<unit>/<unit>` generate a new unit with the units divided ie `m/s` does what you might expect and produces a new unit with meters per second. NOTE: `m/m` will produce `1` it will not automatically produce a `pu` though we are looking at how to make a 'pu_m\\*m=m' so units like strain might work smoothly.\n\n- `bool <unit>==<unit>` compare two units. this does a rounding compare so there is some tolerance to roughly 7 significant digits for \\<unit> and 13 significant digits for <precise_unit>.\n- `bool <unit>!=<unit>` the opposite of `==`\n\nprecise_units can usually operate with a `precise_unit` or `unit`, `unit` usually can't operate on `precise_unit`.\n\n### Measurement Operations\n\n- `<measurement>(val, <unit>)` construct a unit from a value and unit object.\n- `double value() const` get the measurement value as a double.\n- `<measurement> convert_to(<unit>) const` convert the value in the measurement to another unit base\n- `<measurement> convert_to_base() const` convert to a base unit, i.e. a unit whose multiplier is 1.0\n- `<unit> units() const` get the units used as a basis for the measurement\n- `<unit> as_unit() const` take the measurement as is and convert it into a single unit. For Examples say a was 10 m. calling as_unit() on that measurement would produce a unit with a multiplier of 10 and a base of meters.\n- `double value_as(<unit>)` get the value of a measurement as if it were measured in \\<unit\\>\n\n#### Measurement operators\n\nThere are several operator overloads which work on measurements or units to produce measurements.\n\n- `'*', '/', '+','-'` are all defined for mathematical operations on a measurement and produce another measurement.\n- `%` `*`, and `/` are defined for \\<measurement>\\<op>\\<double>\n- `*`, and `/` are defined for \\<double>\\<op>\\<measurement>\n\nNotes: for regular measurements, `+` and `-` are not defined for doubles due to ambiguity of what that operation means. For `fixed_measurement` types this is defined as the units are known at construction and cannot change. For `fixed_measurement` types if the operator would produce a new measurement with the same units it will be a fixed measurement, if not it reverts to a regular measurement.\n\n- `==`, `!=`, `>`, `<`, `>=`, `<=` are defined for all measurement comparisons\n- `<measurement>=<double>*<unit>`\n- `<measurement>=<unit>*<double>`\n- `<measurement>=<unit>/<double>`\n- `<measurement>=<double>/<unit>` basically calling a number multiplied or divided by a `<unit>` produces a measurement, specifically `unit` produces a measurement and `precise_unit` produces a precise_measurement.\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.10.2",
    "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": "7eb272f671dcaef32354357e0d1e0175a11bedaa49c0d5660452e0b24eaf6ecc",
                "md5": "828883a195fe455bfc4bd88276a2cd15",
                "sha256": "1e56398d27b26b3dd61d41271b4147ccf0ed3577e8afa0c9dd23abb000a8a0c7"
            },
            "downloads": -1,
            "filename": "units_llnl-0.10.2-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "828883a195fe455bfc4bd88276a2cd15",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 197469,
            "upload_time": "2024-12-21T20:41:17",
            "upload_time_iso_8601": "2024-12-21T20:41:17.936946Z",
            "url": "https://files.pythonhosted.org/packages/7e/b2/72f671dcaef32354357e0d1e0175a11bedaa49c0d5660452e0b24eaf6ecc/units_llnl-0.10.2-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4b645fe88888b585c0835f0c1ba91863ba4967dc2e9b50b6e03a0469246e9f7e",
                "md5": "5747b7c1b397419a415ac2eae1aec6ef",
                "sha256": "46f016f5dc0a179ec873b31bae2e5a2ffecf4593e14b397ef75fb40092d73c33"
            },
            "downloads": -1,
            "filename": "units_llnl-0.10.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "5747b7c1b397419a415ac2eae1aec6ef",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 249700,
            "upload_time": "2024-12-21T20:41:20",
            "upload_time_iso_8601": "2024-12-21T20:41:20.601443Z",
            "url": "https://files.pythonhosted.org/packages/4b/64/5fe88888b585c0835f0c1ba91863ba4967dc2e9b50b6e03a0469246e9f7e/units_llnl-0.10.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e5c5bec91a3344423f4b1a94a87d1a1e8ad29a62af635732139965f8472477a8",
                "md5": "408bc78c9e9cc7c6ce7378488ef6d172",
                "sha256": "376e11a15d8002c3d2f752b34600d9fc1c7f8c064278e78ada400dae1df7aaea"
            },
            "downloads": -1,
            "filename": "units_llnl-0.10.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "408bc78c9e9cc7c6ce7378488ef6d172",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 246334,
            "upload_time": "2024-12-21T20:41:24",
            "upload_time_iso_8601": "2024-12-21T20:41:24.486478Z",
            "url": "https://files.pythonhosted.org/packages/e5/c5/bec91a3344423f4b1a94a87d1a1e8ad29a62af635732139965f8472477a8/units_llnl-0.10.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "534973834e682eb3d05a4c2c5378708f5a9985d6195240010d0dee0f7c8864a8",
                "md5": "a8291ca25884fd0d6caa689ba5aedb7a",
                "sha256": "f9ed859f0596c56e94d5db2a7eadf26fdfd8376efb0a002cad219c1c129d9873"
            },
            "downloads": -1,
            "filename": "units_llnl-0.10.2-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "a8291ca25884fd0d6caa689ba5aedb7a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 743297,
            "upload_time": "2024-12-21T20:41:26",
            "upload_time_iso_8601": "2024-12-21T20:41:26.043977Z",
            "url": "https://files.pythonhosted.org/packages/53/49/73834e682eb3d05a4c2c5378708f5a9985d6195240010d0dee0f7c8864a8/units_llnl-0.10.2-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "26a054ae3909937d7c420037c6eb60f411c3114e495ee415f61ad30d72df97a5",
                "md5": "7365a7293ac2094dc370f0a554a340e6",
                "sha256": "5d7a3a0b1ca52ba0465efdcbaaf80815c61d29d0c8734dcaad664083113c0986"
            },
            "downloads": -1,
            "filename": "units_llnl-0.10.2-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7365a7293ac2094dc370f0a554a340e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 697175,
            "upload_time": "2024-12-21T20:41:28",
            "upload_time_iso_8601": "2024-12-21T20:41:28.657658Z",
            "url": "https://files.pythonhosted.org/packages/26/a0/54ae3909937d7c420037c6eb60f411c3114e495ee415f61ad30d72df97a5/units_llnl-0.10.2-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "db01de27993812515089c829032d3c68e46a5fea2c8bf9409dc9201c31251e81",
                "md5": "ed088311bf714a00cab19ccdd1a60165",
                "sha256": "207bff7bb8ec8f6515ab2e0fd56c9431156442325366c4b2878ad1b823bfeed8"
            },
            "downloads": -1,
            "filename": "units_llnl-0.10.2-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "ed088311bf714a00cab19ccdd1a60165",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 177807,
            "upload_time": "2024-12-21T20:41:30",
            "upload_time_iso_8601": "2024-12-21T20:41:30.223163Z",
            "url": "https://files.pythonhosted.org/packages/db/01/de27993812515089c829032d3c68e46a5fea2c8bf9409dc9201c31251e81/units_llnl-0.10.2-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d172db620436b3b8fe427315cc6b7da670a6f6fb63277a30e94fdc0f9778141e",
                "md5": "3963cdae3df79bde8bbaf830af501494",
                "sha256": "6175bc267a1bb052b53e834b1251914ebc1b4af7913dfa95d486e8144102350c"
            },
            "downloads": -1,
            "filename": "units_llnl-0.10.2-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3963cdae3df79bde8bbaf830af501494",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 199365,
            "upload_time": "2024-12-21T20:41:31",
            "upload_time_iso_8601": "2024-12-21T20:41:31.760714Z",
            "url": "https://files.pythonhosted.org/packages/d1/72/db620436b3b8fe427315cc6b7da670a6f6fb63277a30e94fdc0f9778141e/units_llnl-0.10.2-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "71f4ad5c382bc76650075f8a3ba875e8bad5f2ca3650de202a012b2db8c4700a",
                "md5": "48f356a5153f412187795816fa20f57f",
                "sha256": "515a34a106aedcf4dc10fc51844932b428172845f33ba1d46214e110e18da694"
            },
            "downloads": -1,
            "filename": "units_llnl-0.10.2-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "48f356a5153f412187795816fa20f57f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 197322,
            "upload_time": "2024-12-21T20:41:33",
            "upload_time_iso_8601": "2024-12-21T20:41:33.104536Z",
            "url": "https://files.pythonhosted.org/packages/71/f4/ad5c382bc76650075f8a3ba875e8bad5f2ca3650de202a012b2db8c4700a/units_llnl-0.10.2-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "37e34dcd0c8f63889b2c001888d5d2395b8efd1094351fec4c12012d242265bd",
                "md5": "e1923498f07c320dff0f1044f0e3c06b",
                "sha256": "627b5574bc2986f648bfbe0f3015f4bf899bd4cc62cc561a1f00c08ac0af2dc3"
            },
            "downloads": -1,
            "filename": "units_llnl-0.10.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e1923498f07c320dff0f1044f0e3c06b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 249549,
            "upload_time": "2024-12-21T20:41:35",
            "upload_time_iso_8601": "2024-12-21T20:41:35.770290Z",
            "url": "https://files.pythonhosted.org/packages/37/e3/4dcd0c8f63889b2c001888d5d2395b8efd1094351fec4c12012d242265bd/units_llnl-0.10.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3279146db1f954470c1730cb5cb46a9bbcc5ad7def216d53ab580c8ed52e3b63",
                "md5": "11425aad39d8a97984062a36c4dd801f",
                "sha256": "dc980ab58ee4945895027468f6d33e7755afffedb39e7da413a177e4b7ced14e"
            },
            "downloads": -1,
            "filename": "units_llnl-0.10.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "11425aad39d8a97984062a36c4dd801f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 246212,
            "upload_time": "2024-12-21T20:41:37",
            "upload_time_iso_8601": "2024-12-21T20:41:37.389866Z",
            "url": "https://files.pythonhosted.org/packages/32/79/146db1f954470c1730cb5cb46a9bbcc5ad7def216d53ab580c8ed52e3b63/units_llnl-0.10.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4323ef0ad1740ff2d6ec09059619023d87a524d8d59c0d4644ee17cd7654e31e",
                "md5": "48644d21a9c0a64f6e722da0a2ce0504",
                "sha256": "5ba1fe84345dff89c33b1d46d47963da18db9be9ff5eb4412c4eac9c47bc9e5b"
            },
            "downloads": -1,
            "filename": "units_llnl-0.10.2-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "48644d21a9c0a64f6e722da0a2ce0504",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 743149,
            "upload_time": "2024-12-21T20:41:39",
            "upload_time_iso_8601": "2024-12-21T20:41:39.188338Z",
            "url": "https://files.pythonhosted.org/packages/43/23/ef0ad1740ff2d6ec09059619023d87a524d8d59c0d4644ee17cd7654e31e/units_llnl-0.10.2-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2bdd1b56d1c6f3e6ce02cffa1af8f4653474a678a59236281bb11598d8f9766e",
                "md5": "9890c78b205e6cb182778815194b270e",
                "sha256": "d7b271622f5f1ec8b869622ea6f4ac9b78dfed351c90a65530e80ca31a95ed2e"
            },
            "downloads": -1,
            "filename": "units_llnl-0.10.2-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9890c78b205e6cb182778815194b270e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 697137,
            "upload_time": "2024-12-21T20:41:40",
            "upload_time_iso_8601": "2024-12-21T20:41:40.699880Z",
            "url": "https://files.pythonhosted.org/packages/2b/dd/1b56d1c6f3e6ce02cffa1af8f4653474a678a59236281bb11598d8f9766e/units_llnl-0.10.2-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ce0b7062537fb41b09e095c210ada469da545da213f94f7bfb08f42b08c24b48",
                "md5": "5e6db445d2a2a69372bfd8b2e44f25c0",
                "sha256": "ca9f3284f76be8d8f6f653c729fb2219da7d2b83fa085cc733f82bc71eaec5f5"
            },
            "downloads": -1,
            "filename": "units_llnl-0.10.2-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "5e6db445d2a2a69372bfd8b2e44f25c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 177668,
            "upload_time": "2024-12-21T20:41:43",
            "upload_time_iso_8601": "2024-12-21T20:41:43.467288Z",
            "url": "https://files.pythonhosted.org/packages/ce/0b/7062537fb41b09e095c210ada469da545da213f94f7bfb08f42b08c24b48/units_llnl-0.10.2-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f8cd639d49b102f700421aa5046ce5c82f8f7099269e63e53b72431459efbe11",
                "md5": "497122e80ceecb0da910a507109886b3",
                "sha256": "957f263bd9da5cd94907d6cfee0eda0c9d482b016857442176b512a5e245601b"
            },
            "downloads": -1,
            "filename": "units_llnl-0.10.2-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "497122e80ceecb0da910a507109886b3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 199205,
            "upload_time": "2024-12-21T20:41:46",
            "upload_time_iso_8601": "2024-12-21T20:41:46.911709Z",
            "url": "https://files.pythonhosted.org/packages/f8/cd/639d49b102f700421aa5046ce5c82f8f7099269e63e53b72431459efbe11/units_llnl-0.10.2-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "96d7ab69bbb120a3c31806ec1742a2b16950581fe1cc1d18b7f62883b7f95378",
                "md5": "522c1d412d46a544ddb8975d203f4c50",
                "sha256": "fb5795ade5490e3cd1e626024d65d818bfb6697a9df56d3b1d283cde88596fcc"
            },
            "downloads": -1,
            "filename": "units_llnl-0.10.2-cp312-abi3-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "522c1d412d46a544ddb8975d203f4c50",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 195052,
            "upload_time": "2024-12-21T20:41:48",
            "upload_time_iso_8601": "2024-12-21T20:41:48.266303Z",
            "url": "https://files.pythonhosted.org/packages/96/d7/ab69bbb120a3c31806ec1742a2b16950581fe1cc1d18b7f62883b7f95378/units_llnl-0.10.2-cp312-abi3-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "12e2c25050ae9914398c511af9128a8eb380854bb9d9447fee32eea2442ca734",
                "md5": "0ef0d928a646b00ec4b980f0ebfa3c0b",
                "sha256": "cc642ec41572e6a2300331836ed101625db099f07ca065c726fc989a63dc11c7"
            },
            "downloads": -1,
            "filename": "units_llnl-0.10.2-cp312-abi3-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "0ef0d928a646b00ec4b980f0ebfa3c0b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 246465,
            "upload_time": "2024-12-21T20:41:53",
            "upload_time_iso_8601": "2024-12-21T20:41:53.865707Z",
            "url": "https://files.pythonhosted.org/packages/12/e2/c25050ae9914398c511af9128a8eb380854bb9d9447fee32eea2442ca734/units_llnl-0.10.2-cp312-abi3-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4adc3320482271740fbaf1fffb5cf4a972be13c60af2a55a4da24d2e3baca3f6",
                "md5": "8f26404529e17c18e33556c164fc7d25",
                "sha256": "3a76bab5a4be645e9f479efcc14f1a96d16ebf1c6c73c05c5110c1e5f2e7a63a"
            },
            "downloads": -1,
            "filename": "units_llnl-0.10.2-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8f26404529e17c18e33556c164fc7d25",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 243277,
            "upload_time": "2024-12-21T20:41:56",
            "upload_time_iso_8601": "2024-12-21T20:41:56.407585Z",
            "url": "https://files.pythonhosted.org/packages/4a/dc/3320482271740fbaf1fffb5cf4a972be13c60af2a55a4da24d2e3baca3f6/units_llnl-0.10.2-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2822e9fc787c00b3d20f5e6a7b7c582c0b8f83db45af6c4820c499330ae98016",
                "md5": "53e07e6329576b14abecb66e8a8fb948",
                "sha256": "ccf6172e397b86b63e04ab6dc2e24a722dd222fe427a84e6c927ae3d02d5e067"
            },
            "downloads": -1,
            "filename": "units_llnl-0.10.2-cp312-abi3-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "53e07e6329576b14abecb66e8a8fb948",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 740312,
            "upload_time": "2024-12-21T20:41:59",
            "upload_time_iso_8601": "2024-12-21T20:41:59.298431Z",
            "url": "https://files.pythonhosted.org/packages/28/22/e9fc787c00b3d20f5e6a7b7c582c0b8f83db45af6c4820c499330ae98016/units_llnl-0.10.2-cp312-abi3-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1a09573787c04dae73802c74b285f68e2bfb6a8fbd0013fe9f91c2a7fcebb01c",
                "md5": "7cf79ddf882b21890104797dac044bbb",
                "sha256": "5dc4cfd1c7a82913d18e482e9d8fac5bc3c07c4afed466c7ca5da9faa3766735"
            },
            "downloads": -1,
            "filename": "units_llnl-0.10.2-cp312-abi3-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7cf79ddf882b21890104797dac044bbb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 693817,
            "upload_time": "2024-12-21T20:42:02",
            "upload_time_iso_8601": "2024-12-21T20:42:02.084640Z",
            "url": "https://files.pythonhosted.org/packages/1a/09/573787c04dae73802c74b285f68e2bfb6a8fbd0013fe9f91c2a7fcebb01c/units_llnl-0.10.2-cp312-abi3-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "332929161539662445576405c6924f0b189260ba33b16e19944fa3d371583f30",
                "md5": "1ca2d02eac6107a0b263af0aa9d3fa60",
                "sha256": "632a9fbd81b2d4153e2c8459e200079a02260c1b999e6338b5762291e2130aae"
            },
            "downloads": -1,
            "filename": "units_llnl-0.10.2-cp312-abi3-win32.whl",
            "has_sig": false,
            "md5_digest": "1ca2d02eac6107a0b263af0aa9d3fa60",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 176504,
            "upload_time": "2024-12-21T20:42:03",
            "upload_time_iso_8601": "2024-12-21T20:42:03.588088Z",
            "url": "https://files.pythonhosted.org/packages/33/29/29161539662445576405c6924f0b189260ba33b16e19944fa3d371583f30/units_llnl-0.10.2-cp312-abi3-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "12e431d671d127854005ae2bd2ebef5174d88b450508603c069b2aff35638092",
                "md5": "9c4c829cc9f5c5ba921dfde69bd688fe",
                "sha256": "039f42e3592106d492b4b68993dfceb486d98d25134373d62edaaa6f0c6a5fab"
            },
            "downloads": -1,
            "filename": "units_llnl-0.10.2-cp312-abi3-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9c4c829cc9f5c5ba921dfde69bd688fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 197641,
            "upload_time": "2024-12-21T20:42:05",
            "upload_time_iso_8601": "2024-12-21T20:42:05.165425Z",
            "url": "https://files.pythonhosted.org/packages/12/e4/31d671d127854005ae2bd2ebef5174d88b450508603c069b2aff35638092/units_llnl-0.10.2-cp312-abi3-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3bb089705ee6225b5639c161b31f25032506a84521510e333841a5306c1cb384",
                "md5": "2a22ffa27cf84df617c902df2ac50b4a",
                "sha256": "6ae58b839cec55ca77ca78eb649604ee26f902be02229a999c3ac81bce8fe523"
            },
            "downloads": -1,
            "filename": "units_llnl-0.10.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2a22ffa27cf84df617c902df2ac50b4a",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 194512,
            "upload_time": "2024-12-21T20:42:07",
            "upload_time_iso_8601": "2024-12-21T20:42:07.136456Z",
            "url": "https://files.pythonhosted.org/packages/3b/b0/89705ee6225b5639c161b31f25032506a84521510e333841a5306c1cb384/units_llnl-0.10.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "36c9e54723fcbc349cdbcd5c51c3e6206f880358f6643471120c8e1e727f6718",
                "md5": "68463244b4f8e54782615376da0885db",
                "sha256": "9ff3252b8eaedc30aa107194a52264a83050d8b7fa35148113578db5c0ae4c9f"
            },
            "downloads": -1,
            "filename": "units_llnl-0.10.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "68463244b4f8e54782615376da0885db",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 246568,
            "upload_time": "2024-12-21T20:42:08",
            "upload_time_iso_8601": "2024-12-21T20:42:08.757947Z",
            "url": "https://files.pythonhosted.org/packages/36/c9/e54723fcbc349cdbcd5c51c3e6206f880358f6643471120c8e1e727f6718/units_llnl-0.10.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7cc9d60068be7115dcbb1a9653602c0ef49cb0b1fc602de6d2b77d12eb451c23",
                "md5": "11e4738d29beb73f22bad340d20d7eaf",
                "sha256": "3ad09283a1ee7f92d90c6a2d498bb9986869ddbd38a5581ada535b6214c63f0a"
            },
            "downloads": -1,
            "filename": "units_llnl-0.10.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "11e4738d29beb73f22bad340d20d7eaf",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 243235,
            "upload_time": "2024-12-21T20:42:11",
            "upload_time_iso_8601": "2024-12-21T20:42:11.078050Z",
            "url": "https://files.pythonhosted.org/packages/7c/c9/d60068be7115dcbb1a9653602c0ef49cb0b1fc602de6d2b77d12eb451c23/units_llnl-0.10.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "39946f561051e7482535aa2758b1e71db9280707ae6f4840403810ef62f7a021",
                "md5": "4997d10e3bc83a1b2644bf298018ee62",
                "sha256": "3ed8aab55f2d87ed9e4a7216109aeac1179132769a07c5bf14b00672095c5134"
            },
            "downloads": -1,
            "filename": "units_llnl-0.10.2-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4997d10e3bc83a1b2644bf298018ee62",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 197342,
            "upload_time": "2024-12-21T20:42:12",
            "upload_time_iso_8601": "2024-12-21T20:42:12.358059Z",
            "url": "https://files.pythonhosted.org/packages/39/94/6f561051e7482535aa2758b1e71db9280707ae6f4840403810ef62f7a021/units_llnl-0.10.2-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e81a5b22fc0b7052472194ea646255bc0c662e255455636e77d753c16204fbae",
                "md5": "4f8196c8bfdd9def08d461cbecb1f082",
                "sha256": "e1c95f713702b88d1197ba2b12c7a8ffa35386c42026cd1f9d28bdbd681d4c5f"
            },
            "downloads": -1,
            "filename": "units_llnl-0.10.2.tar.gz",
            "has_sig": false,
            "md5_digest": "4f8196c8bfdd9def08d461cbecb1f082",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 2818137,
            "upload_time": "2024-12-21T20:42:13",
            "upload_time_iso_8601": "2024-12-21T20:42:13.668588Z",
            "url": "https://files.pythonhosted.org/packages/e8/1a/5b22fc0b7052472194ea646255bc0c662e255455636e77d753c16204fbae/units_llnl-0.10.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-12-21 20:42:13",
    "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.42182s