sleipnirgroup-jormungandr


Namesleipnirgroup-jormungandr JSON
Version 0.0.1.dev239 PyPI version JSON
download
home_pageNone
SummaryA linearity-exploiting sparse nonlinear constrained optimization problem solver that uses the interior-point method.
upload_time2024-09-07 19:20:27
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseNone
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Sleipnir

![C++ Build](https://github.com/SleipnirGroup/Sleipnir/actions/workflows/build-cpp.yml/badge.svg)
![Python Build](https://github.com/SleipnirGroup/Sleipnir/actions/workflows/build-python.yml/badge.svg)
[![PyPI Downloads](https://img.shields.io/pypi/dm/sleipnirgroup-jormungandr.svg?label=PyPI%20Downloads)](https://pypi.org/project/sleipnirgroup-jormungandr/)
[![Website](https://img.shields.io/website?url=https%3A%2F%2Fsleipnirgroup.github.io%2FSleipnir%2F&label=Website)](https://sleipnirgroup.github.io/Sleipnir/)
[![C++ API](https://img.shields.io/badge/documentation-C%2B%2B-blue?label=API%20Docs)](https://sleipnirgroup.github.io/Sleipnir/docs/cpp)
[![Python API](https://img.shields.io/badge/documentation-Python-blue?label=API%20Docs)](https://sleipnirgroup.github.io/Sleipnir/docs/py)
[![Discord](https://img.shields.io/discord/975739302933856277?color=%23738ADB&label=Join%20our%20Discord&logo=discord&logoColor=white)](https://discord.gg/ad2EEZZwsS)

> Sparsity and Linearity-Exploiting Interior-Point solver - Now Internally Readable

Named after Odin's eight-legged horse from Norse mythology, Sleipnir is a linearity-exploiting sparse nonlinear constrained optimization problem solver that uses the interior-point method.

```cpp
#include <print>

#include <sleipnir/optimization/OptimizationProblem.hpp>

int main() {
  // Find the x, y pair with the largest product for which x + 3y = 36
  sleipnir::OptimizationProblem problem;

  auto x = problem.DecisionVariable();
  auto y = problem.DecisionVariable();

  problem.Maximize(x * y);
  problem.SubjectTo(x + 3 * y == 36);
  problem.Solve();

  // x = 18.0, y = 6.0
  std::println("x = {}, y = {}", x.Value(), y.Value());
}
```

```python
#!/usr/bin/env python3

from jormungandr.optimization import OptimizationProblem


def main():
    # Find the x, y pair with the largest product for which x + 3y = 36
    problem = OptimizationProblem()

    x = problem.decision_variable()
    y = problem.decision_variable()

    problem.maximize(x * y)
    problem.subject_to(x + 3 * y == 36)
    problem.solve()

    # x = 18.0, y = 6.0
    print(f"x = {x.value()}, y = {y.value()}")


if __name__ == "__main__":
    main()
```

Sleipnir's internals are intended to be readable by those who aren't domain experts with links to explanatory material for its algorithms.

## Benchmarks

<table><tr>
  <td><img src="flywheel-scalability-results.png" alt="flywheel-scalability-results"/></td>
  <td><img src="cart-pole-scalability-results.png" alt="cart-pole-scalability-results"/></td>
</tr><tr>
  <td>
    <a href="flywheel-scalability-results-casadi.csv">
      flywheel-scalability-results-casadi.csv
    </a><br>
    <a href="flywheel-scalability-results-sleipnir.csv">
      flywheel-scalability-results-sleipnir.csv
    </a>
  </td>
  <td>
    <a href="cart-pole-scalability-results-casadi.csv">
      cart-pole-scalability-results-casadi.csv
    </a><br>
    <a href="cart-pole-scalability-results-sleipnir.csv">
      cart-pole-scalability-results-sleipnir.csv
    </a>
  </td>
</tr></table>

Generated by [tools/generate-scalability-results.sh](https://github.com/SleipnirGroup/Sleipnir/tree/main/tools/generate-scalability-results.sh) from [benchmarks/scalability](https://github.com/SleipnirGroup/Sleipnir/tree/main/benchmarks/scalability) source.

* CPU: AMD Ryzen 7 7840U
* RAM: 64 GB, 5600 MHz DDR5
* Compiler version: g++ (GCC) 14.2.1 20240805

The following thirdparty software was used in the benchmarks:

* CasADi 3.6.6 (autodiff and NLP solver frontend)
* Ipopt 3.14.16 (NLP solver backend)
* MUMPS 5.7.0 (linear solver)

Ipopt uses MUMPS by default because it has free licensing. Commercial linear solvers may be much faster.

See [benchmark details](https://github.com/SleipnirGroup/Sleipnir/?tab=readme-ov-file#benchmark-details) for more.

## Install

### Minimum system requirements

Sleipnir requires somewhat newer operating systems and C++ runtimes for std::print().

* Windows
  * OS: Windows 10
  * Runtime: [Microsoft Visual C++ 2022 redistributable](https://learn.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist?view=msvc-170)
* Linux
  * OS: Ubuntu 24.04
  * Runtime: GCC 14 libstdc++ (run `sudo apt install g++-14`)
* macOS
  * OS: macOS 14
  * Runtime: Apple Clang 15.0.0 libc++ from Xcode 15.3 (run `xcode-select --install`)

### C++ library

See the [build instructions](https://github.com/SleipnirGroup/Sleipnir/?tab=readme-ov-file#c-library-1).

### Python library

```bash
pip install sleipnirgroup-jormungandr
```

## API docs

See the [C++ API docs](https://sleipnirgroup.github.io/Sleipnir/docs/cpp) and [Python API docs](https://sleipnirgroup.github.io/Sleipnir/docs/py).

## Examples

See the [examples](https://github.com/SleipnirGroup/Sleipnir/tree/main/examples), [C++ optimization unit tests](https://github.com/SleipnirGroup/Sleipnir/tree/main/test/optimization), and [Python optimization unit tests](https://github.com/SleipnirGroup/Sleipnir/tree/main/jormungandr/test/optimization).

## Build

### Dependencies

* C++23 compiler
  * On Windows 10 or greater, install [Visual Studio Community 2022](https://visualstudio.microsoft.com/vs/community/) and select the C++ programming language during installation
  * On Ubuntu 24.04 or greater, install GCC 14 via `sudo apt install g++-14`
  * On macOS 14 or greater, install the Xcode 15.3 command-line build tools via `xcode-select --install`
* [CMake](https://cmake.org/download/) 3.21 or greater
  * On Windows, install from the link above
  * On Linux, install via `sudo apt install cmake`
  * On macOS, install via `brew install cmake`
* [Python](https://www.python.org/downloads/) 3.9 or greater
  * On Windows, install from the link above
  * On Linux, install via `sudo apt install python`
  * On macOS, install via `brew install python`
* [Eigen](https://gitlab.com/libeigen/eigen)
* [nanobind](https://github.com/wjakob/nanobind) (build only)
* [Catch2](https://github.com/catchorg/Catch2) (tests only)

Library dependencies which aren't installed locally will be automatically downloaded and built by CMake.

The benchmark executables require [CasADi](https://github.com/casadi/casadi) to be installed locally.

### C++ library

On Windows, open a [Developer PowerShell](https://learn.microsoft.com/en-us/visualstudio/ide/reference/command-prompt-powershell?view=vs-2022). On Linux or macOS, open a Bash shell.

```bash
# Clone the repository
git clone git@github.com:SleipnirGroup/Sleipnir
cd Sleipnir

# Configure; automatically downloads library dependencies
cmake -B build -S .

# Build
cmake --build build

# Test
ctest --test-dir build --output-on-failure

# Install
cmake --install build --prefix pkgdir
```

The following build types can be specified via `-DCMAKE_BUILD_TYPE` during CMake configure:

* Debug
  * Optimizations off
  * Debug symbols on
* Release
  * Optimizations on
  * Debug symbols off
* RelWithDebInfo (default)
  * Release build type, but with debug info
* MinSizeRel
  * Minimum size release build
* Asan
  * Enables address sanitizer
* Tsan
  * Enables thread sanitizer
* Ubsan
  * Enables undefined behavior sanitizer
* Perf
  * RelWithDebInfo build type, but with frame pointer so perf utility can use it

### Python library

On Windows, open a [Developer PowerShell](https://learn.microsoft.com/en-us/visualstudio/ide/reference/command-prompt-powershell?view=vs-2022). On Linux or macOS, open a Bash shell.

```bash
# Clone the repository
git clone git@github.com:SleipnirGroup/Sleipnir
cd Sleipnir

# Setup
pip install --user build

# Build
python -m build --wheel

# Install
pip install --user dist/sleipnirgroup_jormungandr-*.whl

# Test
pytest
```

## Test diagnostics

Passing the `--enable-diagnostics` flag to the test executable enables solver diagnostic prints.

Some test problems generate CSV files containing their solutions. These can be plotted with [tools/plot_test_problem_solutions.py](https://github.com/SleipnirGroup/Sleipnir/blob/main/tools/plot_test_problem_solutions.py).

## Benchmark details

### Running the benchmarks

Benchmark projects are in the [benchmarks folder](https://github.com/SleipnirGroup/Sleipnir/tree/main/benchmarks). To compile and run them, run the following in the repository root:
```bash
# Install CasADi and [matplotlib, numpy, scipy] pip packages first
cmake -B build -S .
cmake --build build
./tools/generate-scalability-results.sh
```

See the contents of `./tools/generate-scalability-results.sh` for how to run specific benchmarks.

### How we improved performance

#### Make more decisions at compile time

During problem setup, equality and inequality constraints are encoded as different types, so the appropriate setup behavior can be selected at compile time via operator overloads.

#### Reuse autodiff computation results that are still valid (aka caching)

The autodiff library automatically records the linearity of every node in the computational graph. Linear functions have constant first derivatives, and quadratic functions have constant second derivatives. The constant derivatives are computed in the initialization phase and reused for all solver iterations. Only nonlinear parts of the computational graph are recomputed during each solver iteration.

For quadratic problems, we compute the Lagrangian Hessian and constraint Jacobians once with no problem structure hints from the user.

#### Use a performant linear algebra library with fast sparse solvers

[Eigen](https://gitlab.com/libeigen/eigen/) provides these. It also has no required dependencies, which makes cross compilation much easier.

#### Use a pool allocator for autodiff expression nodes

This promotes fast allocation/deallocation and good memory locality.

We could mitigate the solver's high last-level-cache miss rate (~42% on the machine above) further by breaking apart the expression nodes into fields that are commonly iterated together. We used to use a tape, which gave computational graph updates linear access patterns, but tapes are monotonic buffers with no way to reclaim storage.


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "sleipnirgroup-jormungandr",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": null,
    "author": null,
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/3f/c8/2d533baf333432eb653bd0f87d960ffe95880e2727e518ee6ac1000dc7e7/sleipnirgroup_jormungandr-0.0.1.dev239.tar.gz",
    "platform": null,
    "description": "# Sleipnir\n\n![C++ Build](https://github.com/SleipnirGroup/Sleipnir/actions/workflows/build-cpp.yml/badge.svg)\n![Python Build](https://github.com/SleipnirGroup/Sleipnir/actions/workflows/build-python.yml/badge.svg)\n[![PyPI Downloads](https://img.shields.io/pypi/dm/sleipnirgroup-jormungandr.svg?label=PyPI%20Downloads)](https://pypi.org/project/sleipnirgroup-jormungandr/)\n[![Website](https://img.shields.io/website?url=https%3A%2F%2Fsleipnirgroup.github.io%2FSleipnir%2F&label=Website)](https://sleipnirgroup.github.io/Sleipnir/)\n[![C++ API](https://img.shields.io/badge/documentation-C%2B%2B-blue?label=API%20Docs)](https://sleipnirgroup.github.io/Sleipnir/docs/cpp)\n[![Python API](https://img.shields.io/badge/documentation-Python-blue?label=API%20Docs)](https://sleipnirgroup.github.io/Sleipnir/docs/py)\n[![Discord](https://img.shields.io/discord/975739302933856277?color=%23738ADB&label=Join%20our%20Discord&logo=discord&logoColor=white)](https://discord.gg/ad2EEZZwsS)\n\n> Sparsity and Linearity-Exploiting Interior-Point solver - Now Internally Readable\n\nNamed after Odin's eight-legged horse from Norse mythology, Sleipnir is a linearity-exploiting sparse nonlinear constrained optimization problem solver that uses the interior-point method.\n\n```cpp\n#include <print>\n\n#include <sleipnir/optimization/OptimizationProblem.hpp>\n\nint main() {\n  // Find the x, y pair with the largest product for which x + 3y = 36\n  sleipnir::OptimizationProblem problem;\n\n  auto x = problem.DecisionVariable();\n  auto y = problem.DecisionVariable();\n\n  problem.Maximize(x * y);\n  problem.SubjectTo(x + 3 * y == 36);\n  problem.Solve();\n\n  // x = 18.0, y = 6.0\n  std::println(\"x = {}, y = {}\", x.Value(), y.Value());\n}\n```\n\n```python\n#!/usr/bin/env python3\n\nfrom jormungandr.optimization import OptimizationProblem\n\n\ndef main():\n    # Find the x, y pair with the largest product for which x + 3y = 36\n    problem = OptimizationProblem()\n\n    x = problem.decision_variable()\n    y = problem.decision_variable()\n\n    problem.maximize(x * y)\n    problem.subject_to(x + 3 * y == 36)\n    problem.solve()\n\n    # x = 18.0, y = 6.0\n    print(f\"x = {x.value()}, y = {y.value()}\")\n\n\nif __name__ == \"__main__\":\n    main()\n```\n\nSleipnir's internals are intended to be readable by those who aren't domain experts with links to explanatory material for its algorithms.\n\n## Benchmarks\n\n<table><tr>\n  <td><img src=\"flywheel-scalability-results.png\" alt=\"flywheel-scalability-results\"/></td>\n  <td><img src=\"cart-pole-scalability-results.png\" alt=\"cart-pole-scalability-results\"/></td>\n</tr><tr>\n  <td>\n    <a href=\"flywheel-scalability-results-casadi.csv\">\n      flywheel-scalability-results-casadi.csv\n    </a><br>\n    <a href=\"flywheel-scalability-results-sleipnir.csv\">\n      flywheel-scalability-results-sleipnir.csv\n    </a>\n  </td>\n  <td>\n    <a href=\"cart-pole-scalability-results-casadi.csv\">\n      cart-pole-scalability-results-casadi.csv\n    </a><br>\n    <a href=\"cart-pole-scalability-results-sleipnir.csv\">\n      cart-pole-scalability-results-sleipnir.csv\n    </a>\n  </td>\n</tr></table>\n\nGenerated by [tools/generate-scalability-results.sh](https://github.com/SleipnirGroup/Sleipnir/tree/main/tools/generate-scalability-results.sh) from [benchmarks/scalability](https://github.com/SleipnirGroup/Sleipnir/tree/main/benchmarks/scalability) source.\n\n* CPU: AMD Ryzen 7 7840U\n* RAM: 64 GB, 5600 MHz DDR5\n* Compiler version: g++ (GCC) 14.2.1 20240805\n\nThe following thirdparty software was used in the benchmarks:\n\n* CasADi 3.6.6 (autodiff and NLP solver frontend)\n* Ipopt 3.14.16 (NLP solver backend)\n* MUMPS 5.7.0 (linear solver)\n\nIpopt uses MUMPS by default because it has free licensing. Commercial linear solvers may be much faster.\n\nSee [benchmark details](https://github.com/SleipnirGroup/Sleipnir/?tab=readme-ov-file#benchmark-details) for more.\n\n## Install\n\n### Minimum system requirements\n\nSleipnir requires somewhat newer operating systems and C++ runtimes for std::print().\n\n* Windows\n  * OS: Windows 10\n  * Runtime: [Microsoft Visual C++ 2022 redistributable](https://learn.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist?view=msvc-170)\n* Linux\n  * OS: Ubuntu 24.04\n  * Runtime: GCC 14 libstdc++ (run `sudo apt install g++-14`)\n* macOS\n  * OS: macOS 14\n  * Runtime: Apple Clang 15.0.0 libc++ from Xcode 15.3 (run `xcode-select --install`)\n\n### C++ library\n\nSee the [build instructions](https://github.com/SleipnirGroup/Sleipnir/?tab=readme-ov-file#c-library-1).\n\n### Python library\n\n```bash\npip install sleipnirgroup-jormungandr\n```\n\n## API docs\n\nSee the [C++ API docs](https://sleipnirgroup.github.io/Sleipnir/docs/cpp) and [Python API docs](https://sleipnirgroup.github.io/Sleipnir/docs/py).\n\n## Examples\n\nSee the [examples](https://github.com/SleipnirGroup/Sleipnir/tree/main/examples), [C++ optimization unit tests](https://github.com/SleipnirGroup/Sleipnir/tree/main/test/optimization), and [Python optimization unit tests](https://github.com/SleipnirGroup/Sleipnir/tree/main/jormungandr/test/optimization).\n\n## Build\n\n### Dependencies\n\n* C++23 compiler\n  * On Windows 10 or greater, install [Visual Studio Community 2022](https://visualstudio.microsoft.com/vs/community/) and select the C++ programming language during installation\n  * On Ubuntu 24.04 or greater, install GCC 14 via `sudo apt install g++-14`\n  * On macOS 14 or greater, install the Xcode 15.3 command-line build tools via `xcode-select --install`\n* [CMake](https://cmake.org/download/) 3.21 or greater\n  * On Windows, install from the link above\n  * On Linux, install via `sudo apt install cmake`\n  * On macOS, install via `brew install cmake`\n* [Python](https://www.python.org/downloads/) 3.9 or greater\n  * On Windows, install from the link above\n  * On Linux, install via `sudo apt install python`\n  * On macOS, install via `brew install python`\n* [Eigen](https://gitlab.com/libeigen/eigen)\n* [nanobind](https://github.com/wjakob/nanobind) (build only)\n* [Catch2](https://github.com/catchorg/Catch2) (tests only)\n\nLibrary dependencies which aren't installed locally will be automatically downloaded and built by CMake.\n\nThe benchmark executables require [CasADi](https://github.com/casadi/casadi) to be installed locally.\n\n### C++ library\n\nOn Windows, open a [Developer PowerShell](https://learn.microsoft.com/en-us/visualstudio/ide/reference/command-prompt-powershell?view=vs-2022). On Linux or macOS, open a Bash shell.\n\n```bash\n# Clone the repository\ngit clone git@github.com:SleipnirGroup/Sleipnir\ncd Sleipnir\n\n# Configure; automatically downloads library dependencies\ncmake -B build -S .\n\n# Build\ncmake --build build\n\n# Test\nctest --test-dir build --output-on-failure\n\n# Install\ncmake --install build --prefix pkgdir\n```\n\nThe following build types can be specified via `-DCMAKE_BUILD_TYPE` during CMake configure:\n\n* Debug\n  * Optimizations off\n  * Debug symbols on\n* Release\n  * Optimizations on\n  * Debug symbols off\n* RelWithDebInfo (default)\n  * Release build type, but with debug info\n* MinSizeRel\n  * Minimum size release build\n* Asan\n  * Enables address sanitizer\n* Tsan\n  * Enables thread sanitizer\n* Ubsan\n  * Enables undefined behavior sanitizer\n* Perf\n  * RelWithDebInfo build type, but with frame pointer so perf utility can use it\n\n### Python library\n\nOn Windows, open a [Developer PowerShell](https://learn.microsoft.com/en-us/visualstudio/ide/reference/command-prompt-powershell?view=vs-2022). On Linux or macOS, open a Bash shell.\n\n```bash\n# Clone the repository\ngit clone git@github.com:SleipnirGroup/Sleipnir\ncd Sleipnir\n\n# Setup\npip install --user build\n\n# Build\npython -m build --wheel\n\n# Install\npip install --user dist/sleipnirgroup_jormungandr-*.whl\n\n# Test\npytest\n```\n\n## Test diagnostics\n\nPassing the `--enable-diagnostics` flag to the test executable enables solver diagnostic prints.\n\nSome test problems generate CSV files containing their solutions. These can be plotted with [tools/plot_test_problem_solutions.py](https://github.com/SleipnirGroup/Sleipnir/blob/main/tools/plot_test_problem_solutions.py).\n\n## Benchmark details\n\n### Running the benchmarks\n\nBenchmark projects are in the [benchmarks folder](https://github.com/SleipnirGroup/Sleipnir/tree/main/benchmarks). To compile and run them, run the following in the repository root:\n```bash\n# Install CasADi and [matplotlib, numpy, scipy] pip packages first\ncmake -B build -S .\ncmake --build build\n./tools/generate-scalability-results.sh\n```\n\nSee the contents of `./tools/generate-scalability-results.sh` for how to run specific benchmarks.\n\n### How we improved performance\n\n#### Make more decisions at compile time\n\nDuring problem setup, equality and inequality constraints are encoded as different types, so the appropriate setup behavior can be selected at compile time via operator overloads.\n\n#### Reuse autodiff computation results that are still valid (aka caching)\n\nThe autodiff library automatically records the linearity of every node in the computational graph. Linear functions have constant first derivatives, and quadratic functions have constant second derivatives. The constant derivatives are computed in the initialization phase and reused for all solver iterations. Only nonlinear parts of the computational graph are recomputed during each solver iteration.\n\nFor quadratic problems, we compute the Lagrangian Hessian and constraint Jacobians once with no problem structure hints from the user.\n\n#### Use a performant linear algebra library with fast sparse solvers\n\n[Eigen](https://gitlab.com/libeigen/eigen/) provides these. It also has no required dependencies, which makes cross compilation much easier.\n\n#### Use a pool allocator for autodiff expression nodes\n\nThis promotes fast allocation/deallocation and good memory locality.\n\nWe could mitigate the solver's high last-level-cache miss rate (~42% on the machine above) further by breaking apart the expression nodes into fields that are commonly iterated together. We used to use a tape, which gave computational graph updates linear access patterns, but tapes are monotonic buffers with no way to reclaim storage.\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A linearity-exploiting sparse nonlinear constrained optimization problem solver that uses the interior-point method.",
    "version": "0.0.1.dev239",
    "project_urls": {
        "Documentation": "https://sleipnirgroup.github.io/Sleipnir/"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8579fe6d6d4e87d1732478ec1ba8e81bf0f7e26be204f7fa613ca303fad63d70",
                "md5": "4c4f78101a3b845ec1b27c31924d55db",
                "sha256": "2a2707eec732929c99e45c8538139fe38832797e89ca1b29f812202833176c9f"
            },
            "downloads": -1,
            "filename": "sleipnirgroup_jormungandr-0.0.1.dev239-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "4c4f78101a3b845ec1b27c31924d55db",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 684545,
            "upload_time": "2024-09-07T19:20:07",
            "upload_time_iso_8601": "2024-09-07T19:20:07.298782Z",
            "url": "https://files.pythonhosted.org/packages/85/79/fe6d6d4e87d1732478ec1ba8e81bf0f7e26be204f7fa613ca303fad63d70/sleipnirgroup_jormungandr-0.0.1.dev239-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "88264e7f43e0372484b1661f5970cc5a30168ee26a45fdb97c8683ec16358d1c",
                "md5": "0c58f92a335a337ded41f3d5e72d29bb",
                "sha256": "44736154a04fc3407b33741bcfb59a9d880f17bd857fb2864b2ddc9dd4f9e9f5"
            },
            "downloads": -1,
            "filename": "sleipnirgroup_jormungandr-0.0.1.dev239-cp310-cp310-manylinux_2_35_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0c58f92a335a337ded41f3d5e72d29bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 410105,
            "upload_time": "2024-09-07T19:20:09",
            "upload_time_iso_8601": "2024-09-07T19:20:09.707922Z",
            "url": "https://files.pythonhosted.org/packages/88/26/4e7f43e0372484b1661f5970cc5a30168ee26a45fdb97c8683ec16358d1c/sleipnirgroup_jormungandr-0.0.1.dev239-cp310-cp310-manylinux_2_35_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6326ffb9d324566799ff78fdbf24a57c8596362b6a9278f57b9b5804a9c2acbd",
                "md5": "1664baf863cf8e8c9b73aacff2266265",
                "sha256": "2178e5e82cec2874a63364033eded6bcad6345b6709568c87f87b232a89a767b"
            },
            "downloads": -1,
            "filename": "sleipnirgroup_jormungandr-0.0.1.dev239-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1664baf863cf8e8c9b73aacff2266265",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 469699,
            "upload_time": "2024-09-07T19:20:11",
            "upload_time_iso_8601": "2024-09-07T19:20:11.499435Z",
            "url": "https://files.pythonhosted.org/packages/63/26/ffb9d324566799ff78fdbf24a57c8596362b6a9278f57b9b5804a9c2acbd/sleipnirgroup_jormungandr-0.0.1.dev239-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "364005d0e785f4ba117fbd9ed239ddfa5f9ceb6b7278986c6d72f262e73dc3e1",
                "md5": "b8f498a942ad69b922ddb489b7b2c0f0",
                "sha256": "282e32bc23ce0a9bc46147f280883dfaaaa5ba58751fc2aa241756a25b4f8193"
            },
            "downloads": -1,
            "filename": "sleipnirgroup_jormungandr-0.0.1.dev239-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "b8f498a942ad69b922ddb489b7b2c0f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 684160,
            "upload_time": "2024-09-07T19:20:13",
            "upload_time_iso_8601": "2024-09-07T19:20:13.374510Z",
            "url": "https://files.pythonhosted.org/packages/36/40/05d0e785f4ba117fbd9ed239ddfa5f9ceb6b7278986c6d72f262e73dc3e1/sleipnirgroup_jormungandr-0.0.1.dev239-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0ec70099e0a0f8a09c47b67aff7420f40eb9f60dfcbf79701ed09b3e010f9565",
                "md5": "38e89fb3dcf0fd8d9955f74ebab8428c",
                "sha256": "678afcdcb3e2af14df2556df7cb96567323359f97524d5df66aa12444e4d60c1"
            },
            "downloads": -1,
            "filename": "sleipnirgroup_jormungandr-0.0.1.dev239-cp311-cp311-manylinux_2_35_x86_64.whl",
            "has_sig": false,
            "md5_digest": "38e89fb3dcf0fd8d9955f74ebab8428c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 409828,
            "upload_time": "2024-09-07T19:20:15",
            "upload_time_iso_8601": "2024-09-07T19:20:15.165595Z",
            "url": "https://files.pythonhosted.org/packages/0e/c7/0099e0a0f8a09c47b67aff7420f40eb9f60dfcbf79701ed09b3e010f9565/sleipnirgroup_jormungandr-0.0.1.dev239-cp311-cp311-manylinux_2_35_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "beda68e933c2fb73c0896e97680ad4e253fe09d910a295541a3b7b176dc79ddf",
                "md5": "ff7356bc6b53e1e42f04e5e4789ca5c0",
                "sha256": "00ac29d8732823ee260437924952ac8ec0845ee0bee8f256d306d18bf886be23"
            },
            "downloads": -1,
            "filename": "sleipnirgroup_jormungandr-0.0.1.dev239-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ff7356bc6b53e1e42f04e5e4789ca5c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 469328,
            "upload_time": "2024-09-07T19:20:16",
            "upload_time_iso_8601": "2024-09-07T19:20:16.916870Z",
            "url": "https://files.pythonhosted.org/packages/be/da/68e933c2fb73c0896e97680ad4e253fe09d910a295541a3b7b176dc79ddf/sleipnirgroup_jormungandr-0.0.1.dev239-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2d795fd8c7d262a59c1416b416a34626db487c6ae94ee2dfe10601d7ce979f41",
                "md5": "fc7d9cbbcc6219247969282e07d6e99d",
                "sha256": "93646a609df66cce1fd4ad4bdac9b45a17f21475bea7e5a3d240eea1638c34c1"
            },
            "downloads": -1,
            "filename": "sleipnirgroup_jormungandr-0.0.1.dev239-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "fc7d9cbbcc6219247969282e07d6e99d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 683420,
            "upload_time": "2024-09-07T19:20:18",
            "upload_time_iso_8601": "2024-09-07T19:20:18.603575Z",
            "url": "https://files.pythonhosted.org/packages/2d/79/5fd8c7d262a59c1416b416a34626db487c6ae94ee2dfe10601d7ce979f41/sleipnirgroup_jormungandr-0.0.1.dev239-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0ba14a5234eafd142b2cb341ac0e27b8b9e92b3559ab28ca16f55431fce2ab04",
                "md5": "f627564c123d65393059207c2176d96b",
                "sha256": "67a96db08fe1e5dced7998a5782fb51266284e0c690a65e600588819727b4453"
            },
            "downloads": -1,
            "filename": "sleipnirgroup_jormungandr-0.0.1.dev239-cp312-cp312-manylinux_2_35_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f627564c123d65393059207c2176d96b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 409656,
            "upload_time": "2024-09-07T19:20:20",
            "upload_time_iso_8601": "2024-09-07T19:20:20.338179Z",
            "url": "https://files.pythonhosted.org/packages/0b/a1/4a5234eafd142b2cb341ac0e27b8b9e92b3559ab28ca16f55431fce2ab04/sleipnirgroup_jormungandr-0.0.1.dev239-cp312-cp312-manylinux_2_35_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "37337e0b5d7435b63d47ca5707a4123c3d8b283f093e7fdebff0679c0e66e367",
                "md5": "aaf0a0a13b9f04b6475a775ddc99cf0e",
                "sha256": "8ba21c86b0e66e518054c312bc1e91462c8ea05ae65ead7ede9356c2b78efd9b"
            },
            "downloads": -1,
            "filename": "sleipnirgroup_jormungandr-0.0.1.dev239-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "aaf0a0a13b9f04b6475a775ddc99cf0e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 469764,
            "upload_time": "2024-09-07T19:20:22",
            "upload_time_iso_8601": "2024-09-07T19:20:22.067712Z",
            "url": "https://files.pythonhosted.org/packages/37/33/7e0b5d7435b63d47ca5707a4123c3d8b283f093e7fdebff0679c0e66e367/sleipnirgroup_jormungandr-0.0.1.dev239-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "91bda2e6482b741b2127afbfd8ca2f49268131606e7251c24225f4e45a6de793",
                "md5": "13c6c590cac83ced388e3d073078301c",
                "sha256": "6ce95bd6240671ead24e66637d8d1b6ad3686838758e320fbc610e4ad1e2ad7e"
            },
            "downloads": -1,
            "filename": "sleipnirgroup_jormungandr-0.0.1.dev239-cp39-cp39-manylinux_2_35_x86_64.whl",
            "has_sig": false,
            "md5_digest": "13c6c590cac83ced388e3d073078301c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 410374,
            "upload_time": "2024-09-07T19:20:24",
            "upload_time_iso_8601": "2024-09-07T19:20:24.556144Z",
            "url": "https://files.pythonhosted.org/packages/91/bd/a2e6482b741b2127afbfd8ca2f49268131606e7251c24225f4e45a6de793/sleipnirgroup_jormungandr-0.0.1.dev239-cp39-cp39-manylinux_2_35_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0a497a0da4c9f7e28a9c50b50553119f46ade8abe26d04945c11c8b9ffd00d3c",
                "md5": "0644eb4393e00519ff91d2ebcb7c8de9",
                "sha256": "80f85c21a36eb20fe79a7422f6842e42082467993bcb45662df2b8fdd8bac139"
            },
            "downloads": -1,
            "filename": "sleipnirgroup_jormungandr-0.0.1.dev239-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0644eb4393e00519ff91d2ebcb7c8de9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 470173,
            "upload_time": "2024-09-07T19:20:26",
            "upload_time_iso_8601": "2024-09-07T19:20:26.330068Z",
            "url": "https://files.pythonhosted.org/packages/0a/49/7a0da4c9f7e28a9c50b50553119f46ade8abe26d04945c11c8b9ffd00d3c/sleipnirgroup_jormungandr-0.0.1.dev239-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3fc82d533baf333432eb653bd0f87d960ffe95880e2727e518ee6ac1000dc7e7",
                "md5": "4d91deec548b9c16d497379af691bed5",
                "sha256": "7731614a02d4a1f85b9eba62ac31bcd447232edc12cb42366903928b80f242b1"
            },
            "downloads": -1,
            "filename": "sleipnirgroup_jormungandr-0.0.1.dev239.tar.gz",
            "has_sig": false,
            "md5_digest": "4d91deec548b9c16d497379af691bed5",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 120554,
            "upload_time": "2024-09-07T19:20:27",
            "upload_time_iso_8601": "2024-09-07T19:20:27.827521Z",
            "url": "https://files.pythonhosted.org/packages/3f/c8/2d533baf333432eb653bd0f87d960ffe95880e2727e518ee6ac1000dc7e7/sleipnirgroup_jormungandr-0.0.1.dev239.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-09-07 19:20:27",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "sleipnirgroup-jormungandr"
}
        
Elapsed time: 0.35751s