dependabot[bot] 742c6f9caa ci: bump the action-dependencies group across 1 directory with 3 updates
Bumps the action-dependencies group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact).


Updates `actions/checkout` from 5 to 6
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v5...v6)

Updates `actions/upload-artifact` from 4 to 5
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v4...v5)

Updates `actions/download-artifact` from 5 to 6
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](https://github.com/actions/download-artifact/compare/v5...v6)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: action-dependencies
- dependency-name: actions/upload-artifact
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: action-dependencies
- dependency-name: actions/download-artifact
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: action-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-11-24 04:28:16 +00:00
2025-06-03 15:22:25 +01:00
2025-05-28 15:11:45 +01:00
2024-11-13 18:28:51 +00:00
2024-11-13 10:08:47 +00:00
2025-05-29 10:17:08 +01:00
2025-05-29 10:17:08 +01:00
2025-05-29 11:15:56 +01:00
2025-05-28 13:54:40 +01:00
2025-05-28 11:13:44 +01:00
2024-11-13 10:08:47 +00:00
2025-05-28 17:17:08 +01:00
2025-05-28 15:12:23 +01:00
2025-06-03 15:22:25 +01:00

#####################
 read_aconity_layers
#####################

.. image:: https://github.com/Cian-H/read_aconity_layers/workflows/CI/badge.svg
  :target: https://github.com/Cian-H/read_aconity_layers/actions/workflows/CI.yml

.. image:: https://github.com/Cian-H/read_aconity_layers/workflows/Python/badge.svg
  :target: https://github.com/Cian-H/read_aconity_layers/actions/workflows/Python.yml

.. image:: https://github.com/Cian-H/read_aconity_layers/workflows/Rust/badge.svg
  :target: https://github.com/Cian-H/read_aconity_layers/actions/workflows/Rust.yml

.. image:: https://img.shields.io/pypi/dm/read-aconity-layers.svg
  :target: https://pypi.python.org/pypi/read-aconity-layers

.. image:: https://img.shields.io/github/tag/Cian-H/read_aconity_layers.svg
  :target: https://github.com/Cian-H/read_aconity_layers/releases

.. image:: https://img.shields.io/github/license/Cian-H/read_aconity_layers.svg
  :target: https://github.com/Cian-H/read_aconity_layers/blob/main/LICENSE

.. image:: https://readthedocs.org/projects/read-aconity-layers/badge/?version=latest
  :target: https://read-aconity-layers.readthedocs.io/en/latest/?badge=latest

.. image:: https://coveralls.io/repos/github/Cian-H/read_aconity_layers/badge.svg?branch=main
  :target: https://coveralls.io/github/Cian-H/read_aconity_layers?branch=main


.. image:: https://img.shields.io/badge/code%20style-Ruff-D7FF64.svg
  :target: https://github.com/astral-sh/ruff

----

A library for fast reading of layer data from the aconity mini powder
bed fusion machine.

##########
 Overview
##########

``read_aconity_layers`` is a high-performance Python library for reading
and processing layer data from Aconity mini powder bed fusion machines.
It's built with Rust for maximum performance and uses PyO3 for seamless
Python integration.

##########
 Features
##########

-  **Fast**: Built with Rust for high-performance data processing
-  **Simple**: Easy-to-use Python API
-  **Parallel**: Leverages Rayon for parallel processing of multiple
   files
-  **Type-safe**: Full type annotations and stub files included

###############
 Quick Example
###############

.. code:: python

   import read_aconity_layers as ral
   import numpy as np

   # Read all layers from a directory
   data = ral.read_layers("/path/to/layer/files/")

   # Read specific layer files
   files = ["/path/to/0.01.pcd", "/path/to/0.02.pcd"]
   data = ral.read_selected_layers(files)

   # Read a single layer
   layer = ral.read_layer("/path/to/0.01.pcd")
Description
No description provided
Readme MIT 81 MiB
Languages
Rust 81.6%
Python 14.8%
Nix 2.2%
Just 1.4%