jupyterlite-xeus


Namejupyterlite-xeus JSON
Version 4.1.1 PyPI version JSON
download
home_pageNone
SummaryJupyterLite loader for Xeus kernels
upload_time2025-07-17 07:36:46
maintainerNone
docs_urlNone
authorJupyterLite Contributors
requires_python>=3.8
licenseBSD 3-Clause License Copyright (c) 2023, JupyterLite Contributors All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # JupyterLite Xeus

[![Github Actions Status](https://github.com/jupyterlite/xeus/workflows/Build/badge.svg)](https://github.com/jupyterlite/xeus/actions/workflows/build.yml)

`jupyterlite-xeus` is an extension for JupyterLite that enables fully client-side Jupyter environments powered by xeus kernels compiled to WebAssembly (Wasm). It allows users to create statically-served Jupyter deployments with custom pre-built environments — no server required.

The core feature of `jupyterlite-xeus` is its integration with [emscripten-forge](https://github.com/emscripten-forge), a conda package distribution tailored for WebAssembly. This makes it possible to bundle your favorite scientific or data analysis packages directly into the browser-based environment, delivering a reproducible computing experience with zero backend dependencies.

Ideal for demos, educational resources, and offline computing. Use it in combination with [Voici](https://github.com/voila-dashboards/voici)!

Currently supported kernels are:

- [xeus-python](https://github.com/jupyter-xeus/xeus-python)
- [xeus-lua](https://github.com/jupyter-xeus/xeus-lua)
- [xeus-r](https://github.com/jupyter-xeus/xeus-r)
- [xeus-cpp](https://github.com/compiler-research/xeus-cpp)
- [xeus-nelson](https://github.com/jupyter-xeus/xeus-nelson)
- [xeus-javascript](https://github.com/jupyter-xeus/xeus-javascript)

## Requirements

- JupyterLab >= 4.0.0

## Installation

You can install `jupyterlite-xeus` with conda/mamba

```
mamba install -c conda-forge jupyterlite-xeus
```

Or with `pip` (you must install micromamba 2.0.5):

```
pip install jupyterlite-xeus
```

## Documentation

Learn more about `jupyterlite-xeus` and test our live demo on https://jupyterlite-xeus.readthedocs.io

## Contributing

### Development install from a conda / mamba environment

Create the conda environment with `conda`/`mamba`/`micromamba` (replace `micromamba` with `conda` or `mamba` according to your preference):

```bash
micromamba create -f environment-dev.yml -n xeus-lite-dev
```

Activate the environment:

```bash
micromamba activate xeus-lite-dev
```

```bash
python -m pip install -e .   -v --no-build-isolation
```

### Packaging the extension

See [RELEASE](RELEASE.md).

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "jupyterlite-xeus",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": null,
    "author": "JupyterLite Contributors",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/40/fd/d355f8cc1bbec7ea3cc666c3e3a266a51b25fc1b4eef5369889f04945027/jupyterlite_xeus-4.1.1.tar.gz",
    "platform": null,
    "description": "# JupyterLite Xeus\n\n[![Github Actions Status](https://github.com/jupyterlite/xeus/workflows/Build/badge.svg)](https://github.com/jupyterlite/xeus/actions/workflows/build.yml)\n\n`jupyterlite-xeus` is an extension for JupyterLite that enables fully client-side Jupyter environments powered by xeus kernels compiled to WebAssembly (Wasm). It allows users to create statically-served Jupyter deployments with custom pre-built environments \u2014 no server required.\n\nThe core feature of `jupyterlite-xeus` is its integration with [emscripten-forge](https://github.com/emscripten-forge), a conda package distribution tailored for WebAssembly. This makes it possible to bundle your favorite scientific or data analysis packages directly into the browser-based environment, delivering a reproducible computing experience with zero backend dependencies.\n\nIdeal for demos, educational resources, and offline computing. Use it in combination with [Voici](https://github.com/voila-dashboards/voici)!\n\nCurrently supported kernels are:\n\n- [xeus-python](https://github.com/jupyter-xeus/xeus-python)\n- [xeus-lua](https://github.com/jupyter-xeus/xeus-lua)\n- [xeus-r](https://github.com/jupyter-xeus/xeus-r)\n- [xeus-cpp](https://github.com/compiler-research/xeus-cpp)\n- [xeus-nelson](https://github.com/jupyter-xeus/xeus-nelson)\n- [xeus-javascript](https://github.com/jupyter-xeus/xeus-javascript)\n\n## Requirements\n\n- JupyterLab >= 4.0.0\n\n## Installation\n\nYou can install `jupyterlite-xeus` with conda/mamba\n\n```\nmamba install -c conda-forge jupyterlite-xeus\n```\n\nOr with `pip` (you must install micromamba 2.0.5):\n\n```\npip install jupyterlite-xeus\n```\n\n## Documentation\n\nLearn more about `jupyterlite-xeus` and test our live demo on https://jupyterlite-xeus.readthedocs.io\n\n## Contributing\n\n### Development install from a conda / mamba environment\n\nCreate the conda environment with `conda`/`mamba`/`micromamba` (replace `micromamba` with `conda` or `mamba` according to your preference):\n\n```bash\nmicromamba create -f environment-dev.yml -n xeus-lite-dev\n```\n\nActivate the environment:\n\n```bash\nmicromamba activate xeus-lite-dev\n```\n\n```bash\npython -m pip install -e .   -v --no-build-isolation\n```\n\n### Packaging the extension\n\nSee [RELEASE](RELEASE.md).\n",
    "bugtrack_url": null,
    "license": "BSD 3-Clause License\n        \n        Copyright (c) 2023, JupyterLite Contributors\n        All rights reserved.\n        \n        Redistribution and use in source and binary forms, with or without\n        modification, are permitted provided that the following conditions are met:\n        \n        1. Redistributions of source code must retain the above copyright notice, this\n           list of conditions and the following disclaimer.\n        \n        2. Redistributions in binary form must reproduce the above copyright notice,\n           this list of conditions and the following disclaimer in the documentation\n           and/or other materials provided with the distribution.\n        \n        3. Neither the name of the copyright holder nor the names of its\n           contributors may be used to endorse or promote products derived from\n           this software without specific prior written permission.\n        \n        THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n        AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n        IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n        DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n        FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n        DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n        SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n        CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n        OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n        OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.",
    "summary": "JupyterLite loader for Xeus kernels",
    "version": "4.1.1",
    "project_urls": {
        "Bug Tracker": "https://github.com/jupyterlite/xeus/issues",
        "Homepage": "https://github.com/jupyterlite/xeus",
        "Repository": "https://github.com/jupyterlite/xeus.git"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eaf25155ea191a25c91ecda2d9aeb46cb9871b0e93d482f308d9720c7979136a",
                "md5": "31f7f4b283ba3287f0dfe35041a3f30a",
                "sha256": "842a70c3f1e81a60362875f724f5d756b6704460d07ea405d6518872e32c0542"
            },
            "downloads": -1,
            "filename": "jupyterlite_xeus-4.1.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "31f7f4b283ba3287f0dfe35041a3f30a",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 9363965,
            "upload_time": "2025-07-17T07:36:43",
            "upload_time_iso_8601": "2025-07-17T07:36:43.261335Z",
            "url": "https://files.pythonhosted.org/packages/ea/f2/5155ea191a25c91ecda2d9aeb46cb9871b0e93d482f308d9720c7979136a/jupyterlite_xeus-4.1.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "40fdd355f8cc1bbec7ea3cc666c3e3a266a51b25fc1b4eef5369889f04945027",
                "md5": "00ee78fba92c377a7e98196fef13ab51",
                "sha256": "afe75273a2c80a6b35acab3458b4c8b22a73de0f620abfbf0dac10d59e2dbd2c"
            },
            "downloads": -1,
            "filename": "jupyterlite_xeus-4.1.1.tar.gz",
            "has_sig": false,
            "md5_digest": "00ee78fba92c377a7e98196fef13ab51",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 9549126,
            "upload_time": "2025-07-17T07:36:46",
            "upload_time_iso_8601": "2025-07-17T07:36:46.974336Z",
            "url": "https://files.pythonhosted.org/packages/40/fd/d355f8cc1bbec7ea3cc666c3e3a266a51b25fc1b4eef5369889f04945027/jupyterlite_xeus-4.1.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-17 07:36:46",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "jupyterlite",
    "github_project": "xeus",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "jupyterlite-xeus"
}
        
Elapsed time: 0.39092s