pv-visualizer


Namepv-visualizer JSON
Version 0.1.6 PyPI version JSON
download
home_page
SummaryWeb frontend to ParaView
upload_time2023-07-26 15:36:36
maintainer
docs_urlNone
authorKitware Inc.
requires_python
licenseBSD License
keywords python interactive web application framework
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ==========
Visualizer
==========

.. image:: https://github.com/Kitware/paraview-visualizer/actions/workflows/test_and_release.yml/badge.svg
    :target: https://github.com/Kitware/paraview-visualizer/actions/workflows/test_and_release.yml
    :alt: Test and Release

Visualizer is a Web frontend to ParaView based on trame. The current project is currently incomplete.
You can see it as an alpha version of what it could be. To make it fully functional we need more time and possibly funding.
But rather than waiting for it to be ready to release it, we are putting it out there as it does provide some very good example of what can be done with ParaView and trame.

If you would like us to push it forward or want some help creating something similar, feel free to reach out to `kitware <https://www.kitware.com/contact/>`_ so we can see how we can help you.

|image_1| |image_2| |image_3|

.. |image_1| image:: https://raw.githubusercontent.com/Kitware/paraview-visualizer/master/documentation/gallery/pv_visualizer_00.jpg
  :width: 30%
.. |image_2| image:: https://raw.githubusercontent.com/Kitware/paraview-visualizer/master/documentation/gallery/pv_visualizer_01.jpg
  :width: 30%
.. |image_3| image:: https://raw.githubusercontent.com/Kitware/paraview-visualizer/master/documentation/gallery/pv_visualizer_02.jpg
  :width: 30%


License
-------

This software is distributed under a BSD-3 license


Installing for Development
--------------------------

Build and install the Vue components

.. code-block:: console

    export NODE_OPTIONS=--openssl-legacy-provider
    cd vue-components
    npm i
    npm run build
    cd -

Create a virtual environment to use with your `ParaView 5.10+ <https://www.paraview.org/download/>`_

.. code-block:: console

    python3.9 -m venv .venv
    source .venv/bin/activate
    python -m pip install -U pip
    pip install -e .

Installing from release
-----------------------

Create a virtual environment to use with your `ParaView 5.10+ <https://www.paraview.org/download/>`_

.. code-block:: console

    python3.9 -m venv .venv
    source .venv/bin/activate
    python -m pip install -U pip pv-visualizer

Running the application
-----------------------

Run the application using `ParaView: pvpython <https://www.paraview.org/>`_ executable

.. code-block:: console

    export PVPYTHON=/Applications/ParaView-5.10.0.app/Contents/bin/pvpython # Using macOS install path as example
    export PV_VENV=$PWD/.venv
    export TRAME_APP=pv_visualizer.app

    $PVPYTHON -m paraview.apps.trame --data ~

Or you can use command line arguments instead of environment variables

.. code-block:: console

    $PVPYTHON -m paraview.apps.trame \
        --venv $PWD/.venv \
        --trame-app pv_visualizer.app \
        --data ~

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "pv-visualizer",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "Python,Interactive,Web,Application,Framework",
    "author": "Kitware Inc.",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/2a/91/20744a9b4e146835ed01353973a63394c243f4125dbaf6c562b622a83faa/pv-visualizer-0.1.6.tar.gz",
    "platform": null,
    "description": "==========\nVisualizer\n==========\n\n.. image:: https://github.com/Kitware/paraview-visualizer/actions/workflows/test_and_release.yml/badge.svg\n    :target: https://github.com/Kitware/paraview-visualizer/actions/workflows/test_and_release.yml\n    :alt: Test and Release\n\nVisualizer is a Web frontend to ParaView based on trame. The current project is currently incomplete.\nYou can see it as an alpha version of what it could be. To make it fully functional we need more time and possibly funding.\nBut rather than waiting for it to be ready to release it, we are putting it out there as it does provide some very good example of what can be done with ParaView and trame.\n\nIf you would like us to push it forward or want some help creating something similar, feel free to reach out to `kitware <https://www.kitware.com/contact/>`_ so we can see how we can help you.\n\n|image_1| |image_2| |image_3|\n\n.. |image_1| image:: https://raw.githubusercontent.com/Kitware/paraview-visualizer/master/documentation/gallery/pv_visualizer_00.jpg\n  :width: 30%\n.. |image_2| image:: https://raw.githubusercontent.com/Kitware/paraview-visualizer/master/documentation/gallery/pv_visualizer_01.jpg\n  :width: 30%\n.. |image_3| image:: https://raw.githubusercontent.com/Kitware/paraview-visualizer/master/documentation/gallery/pv_visualizer_02.jpg\n  :width: 30%\n\n\nLicense\n-------\n\nThis software is distributed under a BSD-3 license\n\n\nInstalling for Development\n--------------------------\n\nBuild and install the Vue components\n\n.. code-block:: console\n\n    export NODE_OPTIONS=--openssl-legacy-provider\n    cd vue-components\n    npm i\n    npm run build\n    cd -\n\nCreate a virtual environment to use with your `ParaView 5.10+ <https://www.paraview.org/download/>`_\n\n.. code-block:: console\n\n    python3.9 -m venv .venv\n    source .venv/bin/activate\n    python -m pip install -U pip\n    pip install -e .\n\nInstalling from release\n-----------------------\n\nCreate a virtual environment to use with your `ParaView 5.10+ <https://www.paraview.org/download/>`_\n\n.. code-block:: console\n\n    python3.9 -m venv .venv\n    source .venv/bin/activate\n    python -m pip install -U pip pv-visualizer\n\nRunning the application\n-----------------------\n\nRun the application using `ParaView: pvpython <https://www.paraview.org/>`_ executable\n\n.. code-block:: console\n\n    export PVPYTHON=/Applications/ParaView-5.10.0.app/Contents/bin/pvpython # Using macOS install path as example\n    export PV_VENV=$PWD/.venv\n    export TRAME_APP=pv_visualizer.app\n\n    $PVPYTHON -m paraview.apps.trame --data ~\n\nOr you can use command line arguments instead of environment variables\n\n.. code-block:: console\n\n    $PVPYTHON -m paraview.apps.trame \\\n        --venv $PWD/.venv \\\n        --trame-app pv_visualizer.app \\\n        --data ~\n",
    "bugtrack_url": null,
    "license": "BSD License",
    "summary": "Web frontend to ParaView",
    "version": "0.1.6",
    "project_urls": null,
    "split_keywords": [
        "python",
        "interactive",
        "web",
        "application",
        "framework"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9c4f237389305b5c17ba78215b476f759fdf7c113e750dd1331d59b7d9720f17",
                "md5": "d517b0a760820b5c7bb69ed8ae514de5",
                "sha256": "3e2dc1bb5c4f3dda15379e25d6285c66b9f9472b1c3a0daf369de21b75228b68"
            },
            "downloads": -1,
            "filename": "pv_visualizer-0.1.6-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "d517b0a760820b5c7bb69ed8ae514de5",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 396669,
            "upload_time": "2023-07-26T15:36:35",
            "upload_time_iso_8601": "2023-07-26T15:36:35.425528Z",
            "url": "https://files.pythonhosted.org/packages/9c/4f/237389305b5c17ba78215b476f759fdf7c113e750dd1331d59b7d9720f17/pv_visualizer-0.1.6-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2a9120744a9b4e146835ed01353973a63394c243f4125dbaf6c562b622a83faa",
                "md5": "db8fe3c6ec480aa7e3edc42bccda9e84",
                "sha256": "73008860e4910b39e996378fec6d2c3751ef1e44f68a974b2ad9d105d47206e6"
            },
            "downloads": -1,
            "filename": "pv-visualizer-0.1.6.tar.gz",
            "has_sig": false,
            "md5_digest": "db8fe3c6ec480aa7e3edc42bccda9e84",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 381314,
            "upload_time": "2023-07-26T15:36:36",
            "upload_time_iso_8601": "2023-07-26T15:36:36.787463Z",
            "url": "https://files.pythonhosted.org/packages/2a/91/20744a9b4e146835ed01353973a63394c243f4125dbaf6c562b622a83faa/pv-visualizer-0.1.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-07-26 15:36:36",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "pv-visualizer"
}
        
Elapsed time: 0.13338s