pyevtk


Namepyevtk JSON
Version 1.6.0 PyPI version JSON
download
home_pagehttps://github.com/pyscience-projects/pyevtk
SummaryExport data as binary VTK files
upload_time2023-06-05 15:25:27
maintainerAdamos Kyriakou
docs_urlNone
authorPaulo Herrera
requires_python
license
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![Coverage Status](https://codecov.io/gh/pyscience-projects/pyevtk/branch/master/graph/badge.svg)](https://codecov.io/gh/pyscience-projects/pyevtk)
[![Build Status](https://github.com/pyscience-projects/pyevtk/workflows/Test%20Python/badge.svg)](https://github.com/pyscience-projects/pyevtk/actions?query=workflow%3A%22Test+Python%22)

PREAMBLE:
=========

This package in its entirety belongs to Paulo Herrera and its currently hosted under:

https://github.com/paulo-herrera/PyEVTK

I've misappropriated, well forked and repackaged really, this package in order to host it on PyPI and allow for its easy distribution and installation as I use it a lot. I take no credit whatsoever for it.

My fork is hosted under:

https://github.com/pyscience-projects/pyevtk

This package is nowadays primarily maintained by [René Fritze](https://github.com/renefritze) and [Xylar Asay-Davis](https://github.com/xylar).

INTRODUCTION:
=============

EVTK (Export VTK) package allows exporting data to binary VTK files for
visualization and data analysis with any of the visualization packages that
support VTK files, e.g.  Paraview, VisIt and Mayavi. EVTK does not depend on any
external library (e.g. VTK), so it is easy to install in different systems.

Since version 0.9 the package is composed only of a set of pure Python files, hence
it is straightforwrd to install and run in any system where Python is installed.
EVTK provides low and high level interfaces.  While the low level interface
can be used to export data that is stored in any type of container, the high
level functions make easy to export data stored in Numpy arrays.

INSTALLATION:
=============

This package is being hosted on PyPI under:

https://pypi.python.org/pypi/PyEVTK

and can be installed with pip using `pip install pyevtk`

DOCUMENTATION:
==============

This file together with the included examples in the examples directory in the
source tree provide enough information to start using the package.

DESIGN GUIDELINES:
==================

The design of the package considered the following objectives:

1. Self-contained. The package does not require any external library with
the exception of Numpy, which is becoming a standard package in many Python
installations.

2. Flexibility. It is possible to use EVTK to export data stored in any
container and in any of the grid formats supported by VTK by using the low level
interface.

3. Easy of use. The high level interface makes very easy to export data stored
in Numpy arrays. The high level interface provides functions to export most of
the grids supported by VTK: image data, rectilinear and structured grids. It
also includes a function to export point sets and associated data that can be
used to export results from particle and meshless numerical simulations.

4. Performance. The aim of the package is to be used as a part of
post-processing tools. Thus, good performance is important to handle the results
of large simulations.  However, latest versions give priority to ease of installation
and use over performance.

REQUIREMENTS:
=============

    - Numpy. Tested with Numpy 1.11.3.

The package has been tested on:
    - MacOSX 10.6 x86-64.
    - Ubuntu 10.04 x86-64 guest running on VMWare Fusion.
    - Ubuntu 12.04 x86-64 running Python Anaconda (3.4.3)
    - Windows 7 x86-64 running Python Anaconda (3.4.3)

It is compatible with both Python 2.7 and Python 3.3. Since version 0.9 it is only compatible
with VTK 6.0 and newer versions.

DEVELOPER NOTES:
================

It is useful to build and install the package to a temporary location without
touching the global python site-packages directory while developing. To do
this, while in the root directory, one can type:

    1. python setup.py build --debug install --prefix=./tmp
    2. export PYTHONPATH=./tmp/lib/python2.6/site-packages/:$PYTHONPATH

NOTE: you may have to change the Python version depending of the installed
version on your system.

To test the package one can run some of the examples, e.g.:
./tmp/lib/python2.6/site-packages/examples/points.py

That should create a points.vtu file in the current directory.

SUPPORT:
=======

I will continue releasing this package as open source, so it is free to be used in any kind of project.
I will also continue providing support for simple questions and making incremental improvements as time
allows. However, I also  provide contract based support for commercial or research projects interested
in this package or in topics related to data analysis and scientific programming with Python, Java, MATLAB/Octave, C/C++ or Fortran.
For further details, please contact me to: paulo.herrera.eirl@gmail.com.

**NOTE: PyEVTK moved to GitHub. The new official page is this one (https://github.com/paulo-herrera/PyEVTK)**

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/pyscience-projects/pyevtk",
    "name": "pyevtk",
    "maintainer": "Adamos Kyriakou",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "somada141@gmail.com",
    "keywords": "",
    "author": "Paulo Herrera",
    "author_email": "pauloa.herrera@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/44/dd/d20c1a0c0105611b831536d2c6d9132bb83d70ed80f4b6d328c04acfeb0d/pyevtk-1.6.0.tar.gz",
    "platform": null,
    "description": "[![Coverage Status](https://codecov.io/gh/pyscience-projects/pyevtk/branch/master/graph/badge.svg)](https://codecov.io/gh/pyscience-projects/pyevtk)\n[![Build Status](https://github.com/pyscience-projects/pyevtk/workflows/Test%20Python/badge.svg)](https://github.com/pyscience-projects/pyevtk/actions?query=workflow%3A%22Test+Python%22)\n\nPREAMBLE:\n=========\n\nThis package in its entirety belongs to Paulo Herrera and its currently hosted under:\n\nhttps://github.com/paulo-herrera/PyEVTK\n\nI've misappropriated, well forked and repackaged really, this package in order to host it on PyPI and allow for its easy distribution and installation as I use it a lot. I take no credit whatsoever for it.\n\nMy fork is hosted under:\n\nhttps://github.com/pyscience-projects/pyevtk\n\nThis package is nowadays primarily maintained by [Ren\u00e9 Fritze](https://github.com/renefritze) and [Xylar Asay-Davis](https://github.com/xylar).\n\nINTRODUCTION:\n=============\n\nEVTK (Export VTK) package allows exporting data to binary VTK files for\nvisualization and data analysis with any of the visualization packages that\nsupport VTK files, e.g.  Paraview, VisIt and Mayavi. EVTK does not depend on any\nexternal library (e.g. VTK), so it is easy to install in different systems.\n\nSince version 0.9 the package is composed only of a set of pure Python files, hence\nit is straightforwrd to install and run in any system where Python is installed.\nEVTK provides low and high level interfaces.  While the low level interface\ncan be used to export data that is stored in any type of container, the high\nlevel functions make easy to export data stored in Numpy arrays.\n\nINSTALLATION:\n=============\n\nThis package is being hosted on PyPI under:\n\nhttps://pypi.python.org/pypi/PyEVTK\n\nand can be installed with pip using `pip install pyevtk`\n\nDOCUMENTATION:\n==============\n\nThis file together with the included examples in the examples directory in the\nsource tree provide enough information to start using the package.\n\nDESIGN GUIDELINES:\n==================\n\nThe design of the package considered the following objectives:\n\n1. Self-contained. The package does not require any external library with\nthe exception of Numpy, which is becoming a standard package in many Python\ninstallations.\n\n2. Flexibility. It is possible to use EVTK to export data stored in any\ncontainer and in any of the grid formats supported by VTK by using the low level\ninterface.\n\n3. Easy of use. The high level interface makes very easy to export data stored\nin Numpy arrays. The high level interface provides functions to export most of\nthe grids supported by VTK: image data, rectilinear and structured grids. It\nalso includes a function to export point sets and associated data that can be\nused to export results from particle and meshless numerical simulations.\n\n4. Performance. The aim of the package is to be used as a part of\npost-processing tools. Thus, good performance is important to handle the results\nof large simulations.  However, latest versions give priority to ease of installation\nand use over performance.\n\nREQUIREMENTS:\n=============\n\n    - Numpy. Tested with Numpy 1.11.3.\n\nThe package has been tested on:\n    - MacOSX 10.6 x86-64.\n    - Ubuntu 10.04 x86-64 guest running on VMWare Fusion.\n    - Ubuntu 12.04 x86-64 running Python Anaconda (3.4.3)\n    - Windows 7 x86-64 running Python Anaconda (3.4.3)\n\nIt is compatible with both Python 2.7 and Python 3.3. Since version 0.9 it is only compatible\nwith VTK 6.0 and newer versions.\n\nDEVELOPER NOTES:\n================\n\nIt is useful to build and install the package to a temporary location without\ntouching the global python site-packages directory while developing. To do\nthis, while in the root directory, one can type:\n\n    1. python setup.py build --debug install --prefix=./tmp\n    2. export PYTHONPATH=./tmp/lib/python2.6/site-packages/:$PYTHONPATH\n\nNOTE: you may have to change the Python version depending of the installed\nversion on your system.\n\nTo test the package one can run some of the examples, e.g.:\n./tmp/lib/python2.6/site-packages/examples/points.py\n\nThat should create a points.vtu file in the current directory.\n\nSUPPORT:\n=======\n\nI will continue releasing this package as open source, so it is free to be used in any kind of project.\nI will also continue providing support for simple questions and making incremental improvements as time\nallows. However, I also  provide contract based support for commercial or research projects interested\nin this package or in topics related to data analysis and scientific programming with Python, Java, MATLAB/Octave, C/C++ or Fortran.\nFor further details, please contact me to: paulo.herrera.eirl@gmail.com.\n\n**NOTE: PyEVTK moved to GitHub. The new official page is this one (https://github.com/paulo-herrera/PyEVTK)**\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Export data as binary VTK files",
    "version": "1.6.0",
    "project_urls": {
        "Homepage": "https://github.com/pyscience-projects/pyevtk"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "06dad57b07c565cc5f8705da436cfcc44754343416c1187d83f04d5443d5cc1a",
                "md5": "c8ebcb4feafeeecfa08f9cef64325778",
                "sha256": "057415512ab902785c72251df8f8450e4bbc9eab16677f091a4b8ee53b9cc775"
            },
            "downloads": -1,
            "filename": "pyevtk-1.6.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c8ebcb4feafeeecfa08f9cef64325778",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 20521,
            "upload_time": "2023-06-05T15:25:25",
            "upload_time_iso_8601": "2023-06-05T15:25:25.625574Z",
            "url": "https://files.pythonhosted.org/packages/06/da/d57b07c565cc5f8705da436cfcc44754343416c1187d83f04d5443d5cc1a/pyevtk-1.6.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "44ddd20c1a0c0105611b831536d2c6d9132bb83d70ed80f4b6d328c04acfeb0d",
                "md5": "ad59f06f150c0a27b0158f789cd72f6e",
                "sha256": "1f6be7876a3a005c8258861551da4fe7e44ff1a2e7ff2a93d6dc51deedfda5f4"
            },
            "downloads": -1,
            "filename": "pyevtk-1.6.0.tar.gz",
            "has_sig": false,
            "md5_digest": "ad59f06f150c0a27b0158f789cd72f6e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 38980,
            "upload_time": "2023-06-05T15:25:27",
            "upload_time_iso_8601": "2023-06-05T15:25:27.522366Z",
            "url": "https://files.pythonhosted.org/packages/44/dd/d20c1a0c0105611b831536d2c6d9132bb83d70ed80f4b6d328c04acfeb0d/pyevtk-1.6.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-06-05 15:25:27",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pyscience-projects",
    "github_project": "pyevtk",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "pyevtk"
}
        
Elapsed time: 0.07582s