Skip to main content

farm-ng-core

farm-ng-core

Foundational library for robotics and machine sensing application under active development


for c++, python and soon rust - under active development


👟Getting Started

Check out the getting-started docs:

here

or

here

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.

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

  // 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

  // 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> Special Orthogonal Group in 2D, SO(2) rotations in 2d, also called Circle Group, or just "angle"
Rotation3<T> Special Orthogonal Group in 3D, SO(3) rotations in 3d, 3D orientations
Isometry2<T> Special Euclidean Group in 2D, SE(3) rotations and translations in 2D, also called 2D rigid body transformations, 2d poses, plane isometries
Isometry3<T> Special Euclidean Group in 3D, SE(3) rotations and translations in 3D, also called rigid body transformations,6 DoF poses, Euclidean isometries
RxSo2<T> Direct product of SO(3) and scalar matrix, R x SO(2) scaling and rotations in 2D
RxSo3<T> Direct product of SO(3) and scalar matrix R x SO(3) scaling and rotations in 3D
Similarity2<T> Similarity Group in 2D, Sim(2) scaling, rotations and translation in 2D
Similarity3<T> Similarity Group in 3D, Sim(3) scaling, rotations and translation in 3D
Cartesian2<T> 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> 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

Release files for farm-ng-core 2.3.2

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for farm-ng-core 2.3.2
File Size Uploaded
farm_ng_core-2.3.2.tar.gz 60.3 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for farm-ng-core 2.3.2
File
farm_ng_core-2.3.2-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64, Linux glibc 2.27+ ARM64 Details
farm_ng_core-2.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
farm_ng_core-2.3.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-32 Details
farm_ng_core-2.3.2-cp312-cp312-macosx_11_0_x86_64.whl CPython 3.12 CPython 3.12 macOS 11.0+ x86-64 Details
farm_ng_core-2.3.2-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64, Linux glibc 2.27+ ARM64 Details
farm_ng_core-2.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
farm_ng_core-2.3.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-32 Details
farm_ng_core-2.3.2-cp311-cp311-macosx_11_0_x86_64.whl CPython 3.11 CPython 3.11 macOS 11.0+ x86-64 Details
farm_ng_core-2.3.2-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.27+ ARM64, Linux glibc 2.28+ ARM64 Details
farm_ng_core-2.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
farm_ng_core-2.3.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-32 Details
farm_ng_core-2.3.2-cp310-cp310-macosx_11_0_x86_64.whl CPython 3.10 CPython 3.10 macOS 11.0+ x86-64 Details
farm_ng_core-2.3.2-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.27+ ARM64, Linux glibc 2.28+ ARM64 Details
farm_ng_core-2.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
farm_ng_core-2.3.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-32 Details
farm_ng_core-2.3.2-cp39-cp39-macosx_11_0_x86_64.whl CPython 3.9 CPython 3.9 macOS 11.0+ x86-64 Details
farm_ng_core-2.3.2-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.27+ ARM64, Linux glibc 2.28+ ARM64 Details
farm_ng_core-2.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
farm_ng_core-2.3.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-32 Details
farm_ng_core-2.3.2-cp38-cp38-macosx_11_0_x86_64.whl CPython 3.8 CPython 3.8 macOS 11.0+ x86-64 Details

Total release size: 9.9 MB

Release files / farm_ng_core-2.3.2.tar.gz

Download URL farm_ng_core-2.3.2.tar.gz
Size 60.3 kB
Tags Source
SHA-256 checksum
How to use checksums
40fa7aea04ecdbba869bfc224f0c74fa6f4b60b2341d7795e0a67de8e1dffd27
BLAKE2b-256 checksum
How to use checksums
f28cc6b9f52cf59a7ce1ec465e50e65ef7b32e6f515aef4d9901b034476c3a82
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / farm_ng_core-2.3.2-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL farm_ng_core-2.3.2-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 436.6 kB
Tags CPython 3.12 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
4ee99982913b47a8355c2926e30f08b0c71bd10071e63233f7fdba0f74bd8919
BLAKE2b-256 checksum
How to use checksums
c42c7fd73bd17656dbf53b2e492bfc7972112f67b192e220885cd0dc7b238806
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / farm_ng_core-2.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL farm_ng_core-2.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 574.8 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
4afdf1abeb2e439d257b149621876bf70e1bf11f5dc51c3aa1a8dc56c3c10668
BLAKE2b-256 checksum
How to use checksums
70d54e72aeaeb646ef61378143b6c674dfe349277e983a5109c1e81e5bbfe685
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / farm_ng_core-2.3.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL farm_ng_core-2.3.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Size 600.0 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
86304c108cf93ae5a58193b768af78a0960b404282af2992bd6c5730d8fedcbd
BLAKE2b-256 checksum
How to use checksums
706e9460df4fd5ea6d20536f39466380710387d66bdec067c387debc141eda9b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / farm_ng_core-2.3.2-cp312-cp312-macosx_11_0_x86_64.whl

Download URL farm_ng_core-2.3.2-cp312-cp312-macosx_11_0_x86_64.whl
Size 354.2 kB
Tags CPython 3.12 macOS 11.0+ x86-64
SHA-256 checksum
How to use checksums
840181c20420f55c9894581eecfd5ae3cb625e225a5e7f6c09a04f962ac27244
BLAKE2b-256 checksum
How to use checksums
6a8e762e11c63c8a8a3a121146227f057606155e24d0d4b19111890b8d7bc3ef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / farm_ng_core-2.3.2-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL farm_ng_core-2.3.2-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 437.7 kB
Tags CPython 3.11 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
f6ae0aafecc459fabb5409ee9d5da49e5452867ab170a675c94deea0431cb7ae
BLAKE2b-256 checksum
How to use checksums
01beb2a17cd0bd888b19d135b11057cc0ed373246959e8750def795cbf877095
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / farm_ng_core-2.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL farm_ng_core-2.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 574.5 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
81bc6a430a9546fa93fbfd2c2a485d977f58b1c314caa2a5b55476c29f86571d
BLAKE2b-256 checksum
How to use checksums
ba775a605b77c7a77b3505eef3082efc7e1c6e73e056adc49e924a01ad8f12fc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / farm_ng_core-2.3.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL farm_ng_core-2.3.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Size 607.9 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
a38243e581ac07d8ec6c29bf79c82d0424be28312a07e412f479b663eeaa8f27
BLAKE2b-256 checksum
How to use checksums
7154271928df7515b356f2421053572cffb83a581c3aefdd72afcb12b3655374
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / farm_ng_core-2.3.2-cp311-cp311-macosx_11_0_x86_64.whl

Download URL farm_ng_core-2.3.2-cp311-cp311-macosx_11_0_x86_64.whl
Size 351.4 kB
Tags CPython 3.11 macOS 11.0+ x86-64
SHA-256 checksum
How to use checksums
254eff862440544f11e8532e956a10f9e67844d121dc606f50b1e00ab85965b3
BLAKE2b-256 checksum
How to use checksums
84d18450b6fffb194e454732ab2bd6a343480cf2a5c73bcf6e6336429bd86d93
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / farm_ng_core-2.3.2-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL farm_ng_core-2.3.2-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 436.5 kB
Tags CPython 3.10 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
67662887501e21f0d447bcca920183bc129d9921e10739e8a3ddb7ed4a360daf
BLAKE2b-256 checksum
How to use checksums
214de7a7847023124efde168f9ae84bc357626f9a600c3cd774fcb0b971ff688
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / farm_ng_core-2.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL farm_ng_core-2.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 572.8 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
7d7ad89282b0861d056a761c43f4f26e0751f34a5cfb015dd2a1ce635e0da2e5
BLAKE2b-256 checksum
How to use checksums
9577fa0d3853af30717de85945b60505f018d52c3921bee5e02ee4be9bb0dba4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / farm_ng_core-2.3.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL farm_ng_core-2.3.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Size 606.7 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
6a1581419ed64a7b6ec6a73d241f8435c7a1929e4690af8614b92df0ba802ef7
BLAKE2b-256 checksum
How to use checksums
63922b9a0debee193d09e77136bc3f83ee11f3469f03667a7fc041151326cb0f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / farm_ng_core-2.3.2-cp310-cp310-macosx_11_0_x86_64.whl

Download URL farm_ng_core-2.3.2-cp310-cp310-macosx_11_0_x86_64.whl
Size 350.2 kB
Tags CPython 3.10 macOS 11.0+ x86-64
SHA-256 checksum
How to use checksums
1d1f66cd4922c9caa9cd5aa83d1b3d0afe98a7ee310f53383e9bb3f4fb10beb7
BLAKE2b-256 checksum
How to use checksums
ae13b9283a8770a3b513598293421e5b67e5cc62c5d3d4e5e64fca8f36498781
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / farm_ng_core-2.3.2-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL farm_ng_core-2.3.2-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 436.7 kB
Tags CPython 3.9 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
2bad8e6c0cf8dbfabfa34d04972decee2e20b46459168af5283ff986767ba8b4
BLAKE2b-256 checksum
How to use checksums
325525a8644ccf94961b7b359a35a217ae06100f17122efcaed0682009897134
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / farm_ng_core-2.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL farm_ng_core-2.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 573.1 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
20672d5bd40b9de615406bc99f02ded1aa92046ad9ab0ef6d4ce1135c5f766c9
BLAKE2b-256 checksum
How to use checksums
6d302b1fee84f4523b022328f0dd342008124402f33058e976c9c9b5f354f35f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / farm_ng_core-2.3.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL farm_ng_core-2.3.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Size 607.0 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
3f0abd4faa098cdc88634f39114b5c21feac8cafe99005b3a4103502f5b4eeef
BLAKE2b-256 checksum
How to use checksums
e0833f6c8fec089d42adbdf0672b180b3c8580900a5f9801e3940f13411bedbd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / farm_ng_core-2.3.2-cp39-cp39-macosx_11_0_x86_64.whl

Download URL farm_ng_core-2.3.2-cp39-cp39-macosx_11_0_x86_64.whl
Size 350.3 kB
Tags CPython 3.9 macOS 11.0+ x86-64
SHA-256 checksum
How to use checksums
d5b9de362d8f7a1b1f2b2981d1fac70c5dc8e39bea6bdad1e6866faa43c2f9ee
BLAKE2b-256 checksum
How to use checksums
5c09f6ba81ea047ddf749412e3ce09418ea3ba20789297e51201c49e1bd09661
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / farm_ng_core-2.3.2-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL farm_ng_core-2.3.2-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 435.0 kB
Tags CPython 3.8 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
b68f2023135804f854f3e605c604c806bbfbc5faaf8f400c7506c14abaa5d885
BLAKE2b-256 checksum
How to use checksums
2b130d44cc1627bb6e5c2ffa07c187c4fd2532c65a0acea13801d85f68aff68b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / farm_ng_core-2.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL farm_ng_core-2.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 572.6 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
62a97f61d931fe76b4c3b885c3489d0784a5d4ed6736927c84452f766ce979b8
BLAKE2b-256 checksum
How to use checksums
98e4e5a241fff6c7e763d653ae4134e167d8a5794389b8ed9d53e0feb1fefbed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / farm_ng_core-2.3.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL farm_ng_core-2.3.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Size 606.6 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
f8afb0b9e09560cbcb75e9942bd35c4014a84211e3bbfa111bc7995b54d2fb16
BLAKE2b-256 checksum
How to use checksums
a0e8a6df7dd33151040ec94d34c72c7d59fffe7bb8c14ef008f5c795e98a7cbd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8

Release files / farm_ng_core-2.3.2-cp38-cp38-macosx_11_0_x86_64.whl

Download URL farm_ng_core-2.3.2-cp38-cp38-macosx_11_0_x86_64.whl
Size 350.0 kB
Tags CPython 3.8 macOS 11.0+ x86-64
SHA-256 checksum
How to use checksums
6bb4df376deed96fe56961b5c7649f32a4b5415cb4c4a87f2d3ccb3d21f95354
BLAKE2b-256 checksum
How to use checksums
3b659bc02ca9c5b3bdffdd5b352233b703ae1da17baad3cd9c3501c0398d088b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.12.8
Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page