farm-ng-core


Namefarm-ng-core JSON
Version 2.2.0 PyPI version JSON
download
home_pagehttps://github.com/farm-ng/farm-ng-core
Summary
upload_time2024-01-17 00:28:54
maintainer
docs_urlNone
authorFarm-ng Inc.
requires_python>=3.8
license
keywords robotics open-source
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # farm-ng-core
<h1 align="center"> farm-ng-core </h1>

<p align="center">
  <i> Foundational library for robotics and machine sensing application
      under active development </i>
</p>

<div align="center">

<a href="https://github.com/farm-ng/farm-ng-core/actions/workflows/ci.yml">
  <img src="https://github.com/farm-ng/farm-ng-core/actions/workflows/ci.yml/badge.svg"
       alt="C++ Build CI Badge"/>
</a>

<a href="https://pypi.org/project/farm-ng-core">
  <img src="https://badge.fury.io/py/farm-ng-core.svg"
       alt="PyPI version"/>
</a>

<a href="https://github.com/farm-ng/farm-ng-core/actions/workflows/format.yml">
  <img src="https://github.com/farm-ng/farm-ng-core/actions/workflows/format.yml/badge.svg"
       alt="Format CI Badge"/>
</a>
<a href="https://github.com/farm-ng/farm-ng-core/actions/workflows/docs.yml">
  <img src="https://github.com/farm-ng/farm-ng-core/actions/workflows/docs.yml/badge.svg"
       alt="Docs CI Badge"/>
</a>
</div>

<br>
<p align="center"><i> for c++, python and soon rust - under active development </i>
</p>
<br>


- [farm-ng-core](#farm-ng-core)
  - [👟Getting Started](#getting-started)
  - [Core layer](#core-layer)
  - [Sophus 2: Building Blocks for 2D and 3D Geometry](#sophus-2-building-blocks-for-2d-and-3d-geometry)
    - [🌐Lie Groups](#lie-groups)
    - [🌁Image classes, Sensor Models and more](#image-classes-sensor-models-and-more)
  - [Component Pipeline](#component-pipeline)
  - [Logging/Serialization Infrastructure](#loggingserialization-infrastructure)

## 👟Getting Started

Check out the getting-started docs:

[here](docs/docs/intro.md)

or

[here](https://farm-ng.github.io/farm-ng-core/docs/intro)




## Core layer

Convenient macros such as FARM_ENUM, FARM_ASSERT_* and FARM_UNWRAP.

Standard Library-like genera purpose utilities.

farm-ng-core only has a small set of dependencies: libfmt, expected
(both being targeted for c++ standardization) and Protocol Buffers /
GRPC.

## Sophus 2: Building Blocks for 2D and 3D Geometry

Sophus started as a c++ implementation of Lie Groups / Manifolds. It evolved to a
collection of types and functions commonly used or 2d and 3d geometric problems
especially in the domain of `robotics`, `computer vision` annd `graphics`.

### 🌐Lie Groups


#### tldr: rotations, translations and scaling in 2d and 3d

`Lie groups` are generalizations of the Euclidean vector spaces R^N. A little
more formally, a Manifold which is also an [abstract group](https://en.wikipedia.org/wiki/Group_theory#Abstract_groups).

*Okay, and what is a Manifold?*

`Manifold` are generalizations of the Euclidean vector spaces R^N. In
particular, they behave locally like a Euclidean vector space, but globally
can have a very different structures. In particular there can be wrap-around.
The circle group SO(2) is the simplest example for such wrap around. Assume,
we have a dial pointing North. If you turn the dial 90 degree to the left, it
points West. If you turn it another 90 degrees it turns South. Now, if you turn
it again 90 degrees is points East. And you turn it left again for 90 degrees it
points North again. It wrapped around: `90 "+" 90 "+" 90 "+" 90 = 0`.

#### 3d rotation example using the SO(3) type

```c++
  // The following demonstrates the group multiplication of rotation matrices

  // Create rotation matrices from rotations around the x and y and z axes:
  double const kPi = sophus::kPi<double>;
  sophus::Rotation3F64 R1 = sophus::Rotation3F64::fromRx(kPi / 4);
  sophus::Rotation3F64 R2 = sophus::Rotation3F64::fromRy(kPi / 6);
  sophus::Rotation3F64 R3 = sophus::Rotation3F64::fromRz(-kPi / 3);

  std::cout << "The rotation matrices are" << std::endl;
  std::cout << "R1:\n" << R1.matrix() << std::endl;
  std::cout << "R2:\n" << R2.matrix() << std::endl;
  std::cout << "R3:\n" << R3.matrix() << std::endl;
  std::cout << "Their product R1*R2*R3:\n"
            << (R1 * R2 * R3).matrix() << std::endl;
  std::cout << std::endl;

  // Rotation matrices can act on vectors
  Eigen::Vector3d x;
  x << 0.0, 0.0, 1.0;
  std::cout << "Rotation matrices can act on 3-vectors" << std::endl;
  std::cout << "x\n" << x << std::endl;
  std::cout << "R2*x\n" << R2 * x << std::endl;
  std::cout << "R1*(R2*x)\n" << R1 * (R2 * x) << std::endl;
  std::cout << "(R1*R2)*x\n" << (R1 * R2) * x << std::endl;
  std::cout << std::endl;

  // SO(3) are internally represented as unit quaternions.
  std::cout << "R1 in matrix form:\n" << R1.matrix() << std::endl;
  std::cout << "R1 in unit quaternion form:\n"
            << R1.unitQuaternion().coeffs() << std::endl;
  // Note that the order of coefficients of Eigen's quaternion class is
  // (imag0, imag1, imag2, real)
  std::cout << std::endl;
```

#### 3d rotation + translation example using the SE(3) type

```c++
  // Example of create a rigid transformation from an SO(3) = 3D rotation and a
  // translation 3-vector:

  // Let use assume there is a camera in the world. First we describe its
  // orientation in the world reference frame.
  sophus::Rotation3F64 world_from_camera_rotation =
      sophus::Rotation3F64::fromRx(sophus::kPi<double> / 4);
  // Then the position of the camera in the world.
  Eigen::Vector3d camera_in_world(0.0, 0.0, 1.0);

  // The pose (position and orientation) of the camera in the world is
  // constructed by its orientation ``world_from_camera_rotation`` as well as
  // its position ``camera_in_world``.
  sophus::Isometry3F64 world_anchored_camera_pose(
      world_from_camera_rotation, camera_in_world);

  // SE(3) naturally representation is a 4x4 matrix which can be accessed using
  // the .matrix() method:
  std::cout << "world_anchored_camera_pose:\n"
            << world_anchored_camera_pose.matrix() << std::endl;
```

#### Table of Lie Groups

The following table gives an overview of all Lie Groups in Sophus.

| c++ type                                      | Lie group name                                       | Description                                                                                                |
| ----------------------------------------------|------------------------------------------------------| ---------------------------------------------------------------------------------------------------------- |
| [`Rotation2<T>`](cpp/sophus/lie/so2.h)              | Special Orthogonal Group in 2D, SO(2)                | rotations in 2d, also called Circle Group, or just "angle"                                                 |
| [`Rotation3<T>`](cpp/sophus/lie/so3.h)              | Special Orthogonal Group in 3D, SO(3)                | rotations in 3d, 3D orientations                                                                           |
| [`Isometry2<T>`](cpp/sophus/lie/se2.h)              | Special Euclidean Group in 2D, SE(3)                 | rotations and translations in 2D, also called 2D rigid body transformations, 2d poses, plane isometries    |
| [`Isometry3<T>`](cpp/sophus/lie/se3.h)              | Special Euclidean Group in 3D, SE(3)                 | rotations and translations in 3D, also called rigid body transformations,6 DoF poses, Euclidean isometries |
| [`RxSo2<T>`](cpp/sophus/lie/rxso2.h)          | Direct product of SO(3) and scalar matrix, R x SO(2) | scaling and rotations in 2D                                                                                |
| [`RxSo3<T>`](cpp/sophus/lie/rxso3.h)          | Direct product of SO(3) and scalar matrix  R x SO(3) | scaling and rotations in 3D                                                                                |
| [`Similarity2<T>`](cpp/sophus/lie/sim2.h)            | Similarity Group in 2D, Sim(2)                       | scaling, rotations and translation in 2D                                                                   |
| [`Similarity3<T>`](cpp/sophus/lie/sim3.h)            | Similarity Group in 3D, Sim(3)                       | scaling, rotations and translation in 3D                                                                   |
| [`Cartesian2<T>`](cpp/sophus/lie/cartesian.h) | 2D Euclidean Vector Space, R^2                       | all vector spaces are trivial Lie groups, also called 2d translation group, the translation part of SE(2)  |
| [`Cartesian3<T>`](cpp/sophus/lie/cartesian.h) | 3D Euclidean Vector Space, R^3                       | all vector spaces are trivial Lie groups, also called 3d translation group, the translation part of SE(2)  |

Supported advanced features on Lie groups:

- ✅ (linear) interpolation
- ✅ Spline interpolation
- ✅ Averaging (of more than two elements)


### 🌁Image classes, Sensor Models and more

Image Classes: Image, MutImage, DynImage, MutDynImage and view classes.

Collection of camera models (pinhole, brown-conrady aka opencv,
kannala-brandt and orthographic), IMU mode and more.

## Component Pipeline

C++ Component pipeline (aka actor framework) for easy parallelization of data
processing pipelines.

## Logging/Serialization Infrastructure

 - Text Logging

 - Protobuf Logging

 - RPCs

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/farm-ng/farm-ng-core",
    "name": "farm-ng-core",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "robotics,open-source",
    "author": "Farm-ng Inc.",
    "author_email": "info@farm-ng.com",
    "download_url": "https://files.pythonhosted.org/packages/0e/ed/d6f49b82b1d6745e4f2dfdd71131dfb5d08e7e32cb08f220ef3c99729732/farm_ng_core-2.2.0.tar.gz",
    "platform": null,
    "description": "# farm-ng-core\n<h1 align=\"center\"> farm-ng-core </h1>\n\n<p align=\"center\">\n  <i> Foundational library for robotics and machine sensing application\n      under active development </i>\n</p>\n\n<div align=\"center\">\n\n<a href=\"https://github.com/farm-ng/farm-ng-core/actions/workflows/ci.yml\">\n  <img src=\"https://github.com/farm-ng/farm-ng-core/actions/workflows/ci.yml/badge.svg\"\n       alt=\"C++ Build CI Badge\"/>\n</a>\n\n<a href=\"https://pypi.org/project/farm-ng-core\">\n  <img src=\"https://badge.fury.io/py/farm-ng-core.svg\"\n       alt=\"PyPI version\"/>\n</a>\n\n<a href=\"https://github.com/farm-ng/farm-ng-core/actions/workflows/format.yml\">\n  <img src=\"https://github.com/farm-ng/farm-ng-core/actions/workflows/format.yml/badge.svg\"\n       alt=\"Format CI Badge\"/>\n</a>\n<a href=\"https://github.com/farm-ng/farm-ng-core/actions/workflows/docs.yml\">\n  <img src=\"https://github.com/farm-ng/farm-ng-core/actions/workflows/docs.yml/badge.svg\"\n       alt=\"Docs CI Badge\"/>\n</a>\n</div>\n\n<br>\n<p align=\"center\"><i> for c++, python and soon rust - under active development </i>\n</p>\n<br>\n\n\n- [farm-ng-core](#farm-ng-core)\n  - [\ud83d\udc5fGetting Started](#getting-started)\n  - [Core layer](#core-layer)\n  - [Sophus 2: Building Blocks for 2D and 3D Geometry](#sophus-2-building-blocks-for-2d-and-3d-geometry)\n    - [\ud83c\udf10Lie Groups](#lie-groups)\n    - [\ud83c\udf01Image classes, Sensor Models and more](#image-classes-sensor-models-and-more)\n  - [Component Pipeline](#component-pipeline)\n  - [Logging/Serialization Infrastructure](#loggingserialization-infrastructure)\n\n## \ud83d\udc5fGetting Started\n\nCheck out the getting-started docs:\n\n[here](docs/docs/intro.md)\n\nor\n\n[here](https://farm-ng.github.io/farm-ng-core/docs/intro)\n\n\n\n\n## Core layer\n\nConvenient macros such as FARM_ENUM, FARM_ASSERT_* and FARM_UNWRAP.\n\nStandard Library-like genera purpose utilities.\n\nfarm-ng-core only has a small set of dependencies: libfmt, expected\n(both being targeted for c++ standardization) and Protocol Buffers /\nGRPC.\n\n## Sophus 2: Building Blocks for 2D and 3D Geometry\n\nSophus started as a c++ implementation of Lie Groups / Manifolds. It evolved to a\ncollection of types and functions commonly used or 2d and 3d geometric problems\nespecially in the domain of `robotics`, `computer vision` annd `graphics`.\n\n### \ud83c\udf10Lie Groups\n\n\n#### tldr: rotations, translations and scaling in 2d and 3d\n\n`Lie groups` are generalizations of the Euclidean vector spaces R^N. A little\nmore formally, a Manifold which is also an [abstract group](https://en.wikipedia.org/wiki/Group_theory#Abstract_groups).\n\n*Okay, and what is a Manifold?*\n\n`Manifold` are generalizations of the Euclidean vector spaces R^N. In\nparticular, they behave locally like a Euclidean vector space, but globally\ncan have a very different structures. In particular there can be wrap-around.\nThe circle group SO(2) is the simplest example for such wrap around. Assume,\nwe have a dial pointing North. If you turn the dial 90 degree to the left, it\npoints West. If you turn it another 90 degrees it turns South. Now, if you turn\nit again 90 degrees is points East. And you turn it left again for 90 degrees it\npoints North again. It wrapped around: `90 \"+\" 90 \"+\" 90 \"+\" 90 = 0`.\n\n#### 3d rotation example using the SO(3) type\n\n```c++\n  // The following demonstrates the group multiplication of rotation matrices\n\n  // Create rotation matrices from rotations around the x and y and z axes:\n  double const kPi = sophus::kPi<double>;\n  sophus::Rotation3F64 R1 = sophus::Rotation3F64::fromRx(kPi / 4);\n  sophus::Rotation3F64 R2 = sophus::Rotation3F64::fromRy(kPi / 6);\n  sophus::Rotation3F64 R3 = sophus::Rotation3F64::fromRz(-kPi / 3);\n\n  std::cout << \"The rotation matrices are\" << std::endl;\n  std::cout << \"R1:\\n\" << R1.matrix() << std::endl;\n  std::cout << \"R2:\\n\" << R2.matrix() << std::endl;\n  std::cout << \"R3:\\n\" << R3.matrix() << std::endl;\n  std::cout << \"Their product R1*R2*R3:\\n\"\n            << (R1 * R2 * R3).matrix() << std::endl;\n  std::cout << std::endl;\n\n  // Rotation matrices can act on vectors\n  Eigen::Vector3d x;\n  x << 0.0, 0.0, 1.0;\n  std::cout << \"Rotation matrices can act on 3-vectors\" << std::endl;\n  std::cout << \"x\\n\" << x << std::endl;\n  std::cout << \"R2*x\\n\" << R2 * x << std::endl;\n  std::cout << \"R1*(R2*x)\\n\" << R1 * (R2 * x) << std::endl;\n  std::cout << \"(R1*R2)*x\\n\" << (R1 * R2) * x << std::endl;\n  std::cout << std::endl;\n\n  // SO(3) are internally represented as unit quaternions.\n  std::cout << \"R1 in matrix form:\\n\" << R1.matrix() << std::endl;\n  std::cout << \"R1 in unit quaternion form:\\n\"\n            << R1.unitQuaternion().coeffs() << std::endl;\n  // Note that the order of coefficients of Eigen's quaternion class is\n  // (imag0, imag1, imag2, real)\n  std::cout << std::endl;\n```\n\n#### 3d rotation + translation example using the SE(3) type\n\n```c++\n  // Example of create a rigid transformation from an SO(3) = 3D rotation and a\n  // translation 3-vector:\n\n  // Let use assume there is a camera in the world. First we describe its\n  // orientation in the world reference frame.\n  sophus::Rotation3F64 world_from_camera_rotation =\n      sophus::Rotation3F64::fromRx(sophus::kPi<double> / 4);\n  // Then the position of the camera in the world.\n  Eigen::Vector3d camera_in_world(0.0, 0.0, 1.0);\n\n  // The pose (position and orientation) of the camera in the world is\n  // constructed by its orientation ``world_from_camera_rotation`` as well as\n  // its position ``camera_in_world``.\n  sophus::Isometry3F64 world_anchored_camera_pose(\n      world_from_camera_rotation, camera_in_world);\n\n  // SE(3) naturally representation is a 4x4 matrix which can be accessed using\n  // the .matrix() method:\n  std::cout << \"world_anchored_camera_pose:\\n\"\n            << world_anchored_camera_pose.matrix() << std::endl;\n```\n\n#### Table of Lie Groups\n\nThe following table gives an overview of all Lie Groups in Sophus.\n\n| c++ type                                      | Lie group name                                       | Description                                                                                                |\n| ----------------------------------------------|------------------------------------------------------| ---------------------------------------------------------------------------------------------------------- |\n| [`Rotation2<T>`](cpp/sophus/lie/so2.h)              | Special Orthogonal Group in 2D, SO(2)                | rotations in 2d, also called Circle Group, or just \"angle\"                                                 |\n| [`Rotation3<T>`](cpp/sophus/lie/so3.h)              | Special Orthogonal Group in 3D, SO(3)                | rotations in 3d, 3D orientations                                                                           |\n| [`Isometry2<T>`](cpp/sophus/lie/se2.h)              | Special Euclidean Group in 2D, SE(3)                 | rotations and translations in 2D, also called 2D rigid body transformations, 2d poses, plane isometries    |\n| [`Isometry3<T>`](cpp/sophus/lie/se3.h)              | Special Euclidean Group in 3D, SE(3)                 | rotations and translations in 3D, also called rigid body transformations,6 DoF poses, Euclidean isometries |\n| [`RxSo2<T>`](cpp/sophus/lie/rxso2.h)          | Direct product of SO(3) and scalar matrix, R x SO(2) | scaling and rotations in 2D                                                                                |\n| [`RxSo3<T>`](cpp/sophus/lie/rxso3.h)          | Direct product of SO(3) and scalar matrix  R x SO(3) | scaling and rotations in 3D                                                                                |\n| [`Similarity2<T>`](cpp/sophus/lie/sim2.h)            | Similarity Group in 2D, Sim(2)                       | scaling, rotations and translation in 2D                                                                   |\n| [`Similarity3<T>`](cpp/sophus/lie/sim3.h)            | Similarity Group in 3D, Sim(3)                       | scaling, rotations and translation in 3D                                                                   |\n| [`Cartesian2<T>`](cpp/sophus/lie/cartesian.h) | 2D Euclidean Vector Space, R^2                       | all vector spaces are trivial Lie groups, also called 2d translation group, the translation part of SE(2)  |\n| [`Cartesian3<T>`](cpp/sophus/lie/cartesian.h) | 3D Euclidean Vector Space, R^3                       | all vector spaces are trivial Lie groups, also called 3d translation group, the translation part of SE(2)  |\n\nSupported advanced features on Lie groups:\n\n- \u2705 (linear) interpolation\n- \u2705 Spline interpolation\n- \u2705 Averaging (of more than two elements)\n\n\n### \ud83c\udf01Image classes, Sensor Models and more\n\nImage Classes: Image, MutImage, DynImage, MutDynImage and view classes.\n\nCollection of camera models (pinhole, brown-conrady aka opencv,\nkannala-brandt and orthographic), IMU mode and more.\n\n## Component Pipeline\n\nC++ Component pipeline (aka actor framework) for easy parallelization of data\nprocessing pipelines.\n\n## Logging/Serialization Infrastructure\n\n - Text Logging\n\n - Protobuf Logging\n\n - RPCs\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "",
    "version": "2.2.0",
    "project_urls": {
        "Download": "https://github.com/farm-ng/farm-ng-core",
        "Homepage": "https://github.com/farm-ng/farm-ng-core"
    },
    "split_keywords": [
        "robotics",
        "open-source"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cdbfc7fc5ecd599845c8e7065b66216eb8dd2c5ec44e763ddc682f243c724646",
                "md5": "37ee876ccbc3f7e9d653169ea914482e",
                "sha256": "46ed1223937c0b1bfcbf6cdb0a1d7499d9d8e13d9da32f648e897b762ee0b92e"
            },
            "downloads": -1,
            "filename": "farm_ng_core-2.2.0-cp310-cp310-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "37ee876ccbc3f7e9d653169ea914482e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 335968,
            "upload_time": "2024-01-17T00:28:17",
            "upload_time_iso_8601": "2024-01-17T00:28:17.867936Z",
            "url": "https://files.pythonhosted.org/packages/cd/bf/c7fc5ecd599845c8e7065b66216eb8dd2c5ec44e763ddc682f243c724646/farm_ng_core-2.2.0-cp310-cp310-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c812b689b576a93d2f504efbcaf47927fe49a1f43a92f2f9db1547ee0fcfb4d3",
                "md5": "bb47a32cebe3f15437ba43a6ebcebcb2",
                "sha256": "b2089efe6940a9f45d03ad331e068b2e674ab5126aa853fc9b2b4f69ef969526"
            },
            "downloads": -1,
            "filename": "farm_ng_core-2.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "bb47a32cebe3f15437ba43a6ebcebcb2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 578814,
            "upload_time": "2024-01-17T00:28:19",
            "upload_time_iso_8601": "2024-01-17T00:28:19.640288Z",
            "url": "https://files.pythonhosted.org/packages/c8/12/b689b576a93d2f504efbcaf47927fe49a1f43a92f2f9db1547ee0fcfb4d3/farm_ng_core-2.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ad65c1ce0278e7ef1ca03a70db1021f26f1ab95f99d3981e811794546b782e6",
                "md5": "a7f05460a74cc230ad914e3be8611ce5",
                "sha256": "e71d80b733aac80ce97c7dffafdd78d4b9236202ae82f73b112c93592b06b273"
            },
            "downloads": -1,
            "filename": "farm_ng_core-2.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a7f05460a74cc230ad914e3be8611ce5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 548838,
            "upload_time": "2024-01-17T00:28:21",
            "upload_time_iso_8601": "2024-01-17T00:28:21.207831Z",
            "url": "https://files.pythonhosted.org/packages/6a/d6/5c1ce0278e7ef1ca03a70db1021f26f1ab95f99d3981e811794546b782e6/farm_ng_core-2.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2614fa201e3da081864142a68e61b0e52d42aa0907bc8b9e4eb207cbbce655ce",
                "md5": "515b9746c357070ed79e2e0460e5dd6a",
                "sha256": "034026c5c89a083f548dfeff9b8001d4249c9c054a80a997e5e6c709bc192569"
            },
            "downloads": -1,
            "filename": "farm_ng_core-2.2.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "515b9746c357070ed79e2e0460e5dd6a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 412688,
            "upload_time": "2024-01-17T00:28:22",
            "upload_time_iso_8601": "2024-01-17T00:28:22.636387Z",
            "url": "https://files.pythonhosted.org/packages/26/14/fa201e3da081864142a68e61b0e52d42aa0907bc8b9e4eb207cbbce655ce/farm_ng_core-2.2.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fac5049f4bf2ac5e52072b57440927f008fe1ca17eab55e071e048a23d7fc577",
                "md5": "a2779796afe0aa89574448fdd76a16ae",
                "sha256": "beb65ec3dc442a46dbaff79739e6ebe52d3acc78891b602a5fbf7465d6a72362"
            },
            "downloads": -1,
            "filename": "farm_ng_core-2.2.0-cp311-cp311-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a2779796afe0aa89574448fdd76a16ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 337298,
            "upload_time": "2024-01-17T00:28:24",
            "upload_time_iso_8601": "2024-01-17T00:28:24.207242Z",
            "url": "https://files.pythonhosted.org/packages/fa/c5/049f4bf2ac5e52072b57440927f008fe1ca17eab55e071e048a23d7fc577/farm_ng_core-2.2.0-cp311-cp311-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c945482d3ac30c44529f0e0ed2c98a9901603fe2cbecefe79f141e33c2f59529",
                "md5": "fa5d263a98469f9ff75f5a4623b59471",
                "sha256": "12795651a2873648a61d17c7ef21fef246e79bad8e8f46a5b541442f00c6863a"
            },
            "downloads": -1,
            "filename": "farm_ng_core-2.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "fa5d263a98469f9ff75f5a4623b59471",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 579759,
            "upload_time": "2024-01-17T00:28:25",
            "upload_time_iso_8601": "2024-01-17T00:28:25.981122Z",
            "url": "https://files.pythonhosted.org/packages/c9/45/482d3ac30c44529f0e0ed2c98a9901603fe2cbecefe79f141e33c2f59529/farm_ng_core-2.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2a386a09d5882eadaeeaf0b9bcf662847350beb6149021a092c56524a1a9ceca",
                "md5": "40abe5d1ac075299cd39845119137804",
                "sha256": "8663d8aaecf05e9db92138f4dfc985df29c23e311e0ff3995f7e92f2d18bb226"
            },
            "downloads": -1,
            "filename": "farm_ng_core-2.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "40abe5d1ac075299cd39845119137804",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 549947,
            "upload_time": "2024-01-17T00:28:28",
            "upload_time_iso_8601": "2024-01-17T00:28:28.294113Z",
            "url": "https://files.pythonhosted.org/packages/2a/38/6a09d5882eadaeeaf0b9bcf662847350beb6149021a092c56524a1a9ceca/farm_ng_core-2.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7933395909c1caed158ea596ca7aafaabe37e87967bf6b3d12c787cc80dc55b2",
                "md5": "31370f05af8ed24641839e927bad8027",
                "sha256": "b8f6867598fb1cdcaed6cd8266de15ea372ae3f7b4d790f7879c52e6b7a98cf7"
            },
            "downloads": -1,
            "filename": "farm_ng_core-2.2.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "31370f05af8ed24641839e927bad8027",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 414041,
            "upload_time": "2024-01-17T00:28:30",
            "upload_time_iso_8601": "2024-01-17T00:28:30.377791Z",
            "url": "https://files.pythonhosted.org/packages/79/33/395909c1caed158ea596ca7aafaabe37e87967bf6b3d12c787cc80dc55b2/farm_ng_core-2.2.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "507922e7819ba6d0c198d0798ded653ae0bc9a5f8aed49190497639f3f443f53",
                "md5": "7f3db1deb34d447aa52b045224abf89f",
                "sha256": "aa0416dc77608fff619ce70424dadf493626670aed397e23de0eb671895ce74f"
            },
            "downloads": -1,
            "filename": "farm_ng_core-2.2.0-cp312-cp312-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7f3db1deb34d447aa52b045224abf89f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 339161,
            "upload_time": "2024-01-17T00:28:32",
            "upload_time_iso_8601": "2024-01-17T00:28:32.519536Z",
            "url": "https://files.pythonhosted.org/packages/50/79/22e7819ba6d0c198d0798ded653ae0bc9a5f8aed49190497639f3f443f53/farm_ng_core-2.2.0-cp312-cp312-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cc9f2daac00dc7b8cb191fa6513e3a0604819bd550fee0ac7aad33a69b0808f8",
                "md5": "5372fa9d4f6bc7eee61da531590e5c47",
                "sha256": "0c47b80dba065374cc2eeb83566ba12a71a8fa96e06075f773e9a99f632daa0b"
            },
            "downloads": -1,
            "filename": "farm_ng_core-2.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "5372fa9d4f6bc7eee61da531590e5c47",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 583656,
            "upload_time": "2024-01-17T00:28:34",
            "upload_time_iso_8601": "2024-01-17T00:28:34.886509Z",
            "url": "https://files.pythonhosted.org/packages/cc/9f/2daac00dc7b8cb191fa6513e3a0604819bd550fee0ac7aad33a69b0808f8/farm_ng_core-2.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9d2b31a0f10e7a82d372fa82e85e3a04e7a74673c7ff603c8acb07af8c4270ea",
                "md5": "ae1252ae30e17b8408dcb69c1cfffd8a",
                "sha256": "b98aab3d16b917fbe5e561fd61af785412c8302b10c2600ecbf6d874ff4984ea"
            },
            "downloads": -1,
            "filename": "farm_ng_core-2.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ae1252ae30e17b8408dcb69c1cfffd8a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 551367,
            "upload_time": "2024-01-17T00:28:37",
            "upload_time_iso_8601": "2024-01-17T00:28:37.159010Z",
            "url": "https://files.pythonhosted.org/packages/9d/2b/31a0f10e7a82d372fa82e85e3a04e7a74673c7ff603c8acb07af8c4270ea/farm_ng_core-2.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e3111789fb4db25c096463ba231ec50129227a75384f9b8e49ecc46a6319d9b5",
                "md5": "ad835e32e3707fb9437266c22a327171",
                "sha256": "6522b28768d865f7c950782d3594d5442fef6c22a2a77c0be8e919ef407925e2"
            },
            "downloads": -1,
            "filename": "farm_ng_core-2.2.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ad835e32e3707fb9437266c22a327171",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 413621,
            "upload_time": "2024-01-17T00:28:39",
            "upload_time_iso_8601": "2024-01-17T00:28:39.107424Z",
            "url": "https://files.pythonhosted.org/packages/e3/11/1789fb4db25c096463ba231ec50129227a75384f9b8e49ecc46a6319d9b5/farm_ng_core-2.2.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f122b715cf573a5925a1326d1b9b75eb78960f336d840ff69093819d8cba3b1c",
                "md5": "50632289cb42fdd90258d6f76cc7abec",
                "sha256": "4aa740f3ebfeb9fd2a355e1105f703ceb3697294df4501e6a6147d54bde5001c"
            },
            "downloads": -1,
            "filename": "farm_ng_core-2.2.0-cp38-cp38-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "50632289cb42fdd90258d6f76cc7abec",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 335874,
            "upload_time": "2024-01-17T00:28:40",
            "upload_time_iso_8601": "2024-01-17T00:28:40.619551Z",
            "url": "https://files.pythonhosted.org/packages/f1/22/b715cf573a5925a1326d1b9b75eb78960f336d840ff69093819d8cba3b1c/farm_ng_core-2.2.0-cp38-cp38-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "14418ecde8b05f52b9eeb54316ecc0bd77286f68176b89c24e2c2ee400b00137",
                "md5": "1a8d979543c60e686595f4b9d135fcc8",
                "sha256": "f934987783cb5225efe41ae4678627cb3b2fbce9e9e6c6009c2f4d7415044265"
            },
            "downloads": -1,
            "filename": "farm_ng_core-2.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1a8d979543c60e686595f4b9d135fcc8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 578565,
            "upload_time": "2024-01-17T00:28:42",
            "upload_time_iso_8601": "2024-01-17T00:28:42.157366Z",
            "url": "https://files.pythonhosted.org/packages/14/41/8ecde8b05f52b9eeb54316ecc0bd77286f68176b89c24e2c2ee400b00137/farm_ng_core-2.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "060fa5b948b953b06a38bdf0514bee61be53ac62322a50fa521443437ef80a59",
                "md5": "1208d5262ebdb66cb6444790a1920679",
                "sha256": "239d3ef3a53fa584500b63e074a020cd5a6b927acb5c7c70439f9126d23b9b1d"
            },
            "downloads": -1,
            "filename": "farm_ng_core-2.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1208d5262ebdb66cb6444790a1920679",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 547897,
            "upload_time": "2024-01-17T00:28:43",
            "upload_time_iso_8601": "2024-01-17T00:28:43.825267Z",
            "url": "https://files.pythonhosted.org/packages/06/0f/a5b948b953b06a38bdf0514bee61be53ac62322a50fa521443437ef80a59/farm_ng_core-2.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e0482fdcdda9d2c42106080e33a5e79463a2328743b1e3a9d099b4e18cc08bb3",
                "md5": "be44cf7426a3e81aba2783f163f2b289",
                "sha256": "cfe1cf518e1379929764451e88971954ea38c815f953d508c79d02a9ad6db7e8"
            },
            "downloads": -1,
            "filename": "farm_ng_core-2.2.0-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "be44cf7426a3e81aba2783f163f2b289",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 412872,
            "upload_time": "2024-01-17T00:28:45",
            "upload_time_iso_8601": "2024-01-17T00:28:45.343077Z",
            "url": "https://files.pythonhosted.org/packages/e0/48/2fdcdda9d2c42106080e33a5e79463a2328743b1e3a9d099b4e18cc08bb3/farm_ng_core-2.2.0-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b47ab114f10a7d173010f82806a68d4be188e118f0409b27db0ba5cd855778be",
                "md5": "686c8731658b4ecd3caf5be5d1e20c76",
                "sha256": "965d1ce4bda487676c92d0b5f110fede0aeff13b04e9f6944b9f2afd20543363"
            },
            "downloads": -1,
            "filename": "farm_ng_core-2.2.0-cp39-cp39-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "686c8731658b4ecd3caf5be5d1e20c76",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 336051,
            "upload_time": "2024-01-17T00:28:47",
            "upload_time_iso_8601": "2024-01-17T00:28:47.456759Z",
            "url": "https://files.pythonhosted.org/packages/b4/7a/b114f10a7d173010f82806a68d4be188e118f0409b27db0ba5cd855778be/farm_ng_core-2.2.0-cp39-cp39-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "26b1f74c8c3deab576e41d12e2d28cdf31e6c3435ce43ff717f492d5e25af80c",
                "md5": "c0e204a9a1f19b7de639130512fbd251",
                "sha256": "d9cef8a8cf08194500b81eb39220faf863c95b9ded26cdaa6e88f3541bae7a29"
            },
            "downloads": -1,
            "filename": "farm_ng_core-2.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c0e204a9a1f19b7de639130512fbd251",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 578321,
            "upload_time": "2024-01-17T00:28:48",
            "upload_time_iso_8601": "2024-01-17T00:28:48.906566Z",
            "url": "https://files.pythonhosted.org/packages/26/b1/f74c8c3deab576e41d12e2d28cdf31e6c3435ce43ff717f492d5e25af80c/farm_ng_core-2.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eaa4938404291827fac7ecee5e5c18a0f0c9c00da6340fca1fafbe39f4f35e09",
                "md5": "4a0ff3e4da155148f7d040cfd9288148",
                "sha256": "a23e1cbbdac5771c2fd2c72a7e1cbf1d1c0815f7626b43526b3bca54ee72bbed"
            },
            "downloads": -1,
            "filename": "farm_ng_core-2.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4a0ff3e4da155148f7d040cfd9288148",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 548256,
            "upload_time": "2024-01-17T00:28:50",
            "upload_time_iso_8601": "2024-01-17T00:28:50.607314Z",
            "url": "https://files.pythonhosted.org/packages/ea/a4/938404291827fac7ecee5e5c18a0f0c9c00da6340fca1fafbe39f4f35e09/farm_ng_core-2.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3854b8824954d7d091e818ccecca0918e8b3b083075f2d1ef54de1e50fbf0cdd",
                "md5": "9a46acaea5b53cc8f104be53ffb82ec4",
                "sha256": "a667c8cc14f011a9d16b38c04f1f76ed17b28eb8d38bf867ec6ef7ee11a261c7"
            },
            "downloads": -1,
            "filename": "farm_ng_core-2.2.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9a46acaea5b53cc8f104be53ffb82ec4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 412491,
            "upload_time": "2024-01-17T00:28:52",
            "upload_time_iso_8601": "2024-01-17T00:28:52.044857Z",
            "url": "https://files.pythonhosted.org/packages/38/54/b8824954d7d091e818ccecca0918e8b3b083075f2d1ef54de1e50fbf0cdd/farm_ng_core-2.2.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0eedd6f49b82b1d6745e4f2dfdd71131dfb5d08e7e32cb08f220ef3c99729732",
                "md5": "e262fc129d4d42591750a1031049922d",
                "sha256": "9769cf5904257db0c1cf910bb3ab4f605e3bba81c77992574203a5f8db680875"
            },
            "downloads": -1,
            "filename": "farm_ng_core-2.2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "e262fc129d4d42591750a1031049922d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 56353,
            "upload_time": "2024-01-17T00:28:54",
            "upload_time_iso_8601": "2024-01-17T00:28:54.035599Z",
            "url": "https://files.pythonhosted.org/packages/0e/ed/d6f49b82b1d6745e4f2dfdd71131dfb5d08e7e32cb08f220ef3c99729732/farm_ng_core-2.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-17 00:28:54",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "farm-ng",
    "github_project": "farm-ng-core",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "farm-ng-core"
}
        
Elapsed time: 0.17607s