Metadata-Version: 2.1
Name: py2vtk
Version: 1.1
Summary: Low dependency module to export to VTK from python
Home-page: https://github.com/anlavandier/py2vtk
Author: Antoine Lavandier
Author-email: antoine.lavandier.24.11@gmail.com
License: MIT
Keywords: Visualization VTK
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Provides-Extra: tests
Provides-Extra: mpi
Provides-Extra: doc
License-File: LICENSE

# Py2VTK

[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![CI](https://github.com/anlavandier/py2vtk/actions/workflows/tests.yml/badge.svg?branch=main)](https://github.com/anlavandier/py2vtk/actions?query=workflow%3Atests)
[![Documentation Status](https://readthedocs.org/projects/py2vtk/badge/?version=latest)](https://py2vtk.readthedocs.io/en/latest/?badge=latest)

Py2VTK is a low dependency module for exporting VTK files using Python for visualization/analysis in softwares like Paraview, VisIt or Mayavi.

## Acknowledgments

Py2vtk borrows heavily from [PyEVTK](https://github.com/pyscience-projects/pyevtk) and [UVW](https://github.com/prs513rosewood/uvw).

## Current state

Py2vtk is still in development. Current and future features are listed below in no particular order:

### Current and planned features

- [x] Setting up github actions powered CI
- [x] Finalization of a first "release" to make available via Pypi and Spack. (**Pypi completed, Spack on hold until further notice**).
- [x] Recreation of PyEvtk's API
- [x] Parallel API using mpi4py.
- [ ] Support of Dask Arrays (**Not started yet**).
- [x] Add documentation using docstrings and [`sphinx`](https://www.sphinx-doc.org/en/master/).

## Installation

This package is hosted in Pypi and can be installed with pip. There is currently 3 installation modes:

- Standard install (does not feature the MPI-enabled API)

  ```bash
  python -m pip install py2vtk
  ```

- MPI Install

  ```bash
  python -m pip install py2vtk[mpi]
  ```

- Test install, needed to run the unit tests locally

  ```bash
  python -m pip install py2vtk[tests]
  ```

## Running tests

To run the unit tests locally, use the following commands

```bash
py.test -m serial # Serial tests
python mpi_tester.py . -m parallel # Parallel tests
```
