{"id":16284486,"url":"https://github.com/derthorsten/xeus-pywrap","last_synced_at":"2025-04-09T00:05:38.543Z","repository":{"id":222485519,"uuid":"757306566","full_name":"DerThorsten/xeus-pywrap","owner":"DerThorsten","description":"create jupyter kernels with the help of xeus and python","archived":false,"fork":false,"pushed_at":"2024-05-27T09:10:19.000Z","size":95,"stargazers_count":0,"open_issues_count":1,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-14T18:49:04.557Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/DerThorsten.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-02-14T08:18:23.000Z","updated_at":"2024-02-14T11:19:51.000Z","dependencies_parsed_at":"2024-11-05T11:14:43.749Z","dependency_job_id":null,"html_url":"https://github.com/DerThorsten/xeus-pywrap","commit_stats":null,"previous_names":["derthorsten/xeus-pywrap"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DerThorsten%2Fxeus-pywrap","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DerThorsten%2Fxeus-pywrap/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DerThorsten%2Fxeus-pywrap/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DerThorsten%2Fxeus-pywrap/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DerThorsten","download_url":"https://codeload.github.com/DerThorsten/xeus-pywrap/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247947859,"owners_count":21023066,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-10T19:19:43.263Z","updated_at":"2025-04-09T00:05:38.481Z","avatar_url":"https://github.com/DerThorsten.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ![xeus-pywrap](docs/source/xeus-logo.svg)\n\n[![Build Status](https://github.com/DerThorsten/xeus-pywrap/actions/workflows/main.yml/badge.svg)](https://github.com/DerThorsten/xeus-pywrap/actions/workflows/main.yml)\n\n[![Documentation Status](http://readthedocs.org/projects/xeus-pywrap/badge/?version=latest)](https://xeus-pywrapreadthedocs.io/en/latest/?badge=latest)\n[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/DerThorsten/xeus-pywrap/main?urlpath=/lab/tree/notebooks/xeus-pywrap.ipynb)\n\n`xeus-pywrap` is a Jupyter kernel for python based on the native implementation of the\nJupyter protocol [xeus](https://github.com/jupyter-xeus/xeus).\n\n## Installation\n\nxeus-pywrap has not been packaged for the mamba (or conda) package manager.\n\nTo ensure that the installation works, it is preferable to install `xeus-pywrap` in a\nfresh environment. It is also needed to use a\n[miniforge](https://github.com/conda-forge/miniforge#mambaforge) or\n[miniconda](https://conda.io/miniconda.html) installation because with the full\n[anaconda](https://www.anaconda.com/) you may have a conflict with the `zeromq` library\nwhich is already installed in the anaconda distribution.\n\nThe safest usage is to create an environment named `xeus-pywrap`\n\n```bash\nmamba create -n  `xeus-pywrap`\nsource activate  `xeus-pywrap`\n```\n\n\u003c!-- ### Installing from conda-forge\n\nThen you can install in this environment `xeus-pywrap` and its dependencies\n\n```bash\nmamba install`xeus-pywrap` notebook -c conda-forge\n``` --\u003e\n\n### Installing from source\n\nOr you can install it from the sources, you will first need to install dependencies\n\n```bash\nmamba install cmake cxx-compiler xeus-zmq nlohmann_json cppzmq xtl jupyterlab -c conda-forge\n```\n\nThen you can compile the sources (replace `$CONDA_PREFIX` with a custom installation\nprefix if need be)\n\n```bash\nmkdir build \u0026\u0026 cd build\ncmake .. -D CMAKE_PREFIX_PATH=$CONDA_PREFIX -D CMAKE_INSTALL_PREFIX=$CONDA_PREFIX -D CMAKE_INSTALL_LIBDIR=lib\nmake \u0026\u0026 make install\n```\n\n\u003c!-- ## Trying it online\n\nTo try out xeus-pywrap interactively in your web browser, just click on the binder link:\n(Once Conda Package is Ready)\n\n[![Binder](binder-logo.svg)](https://mybinder.org/v2/gh/DerThorsten/xeus-pywrap/main?urlpath=/lab/tree/notebooks/xeus-pywrap.ipynb) --\u003e\n\n\n\n## Documentation\n\nTo get started with using `xeus-pywrap`, check out the full documentation\n\nhttp://xeus-pywrap.readthedocs.io\n\n\n## Dependencies\n\n`xeus-pywrap` depends on\n\n- [xeus-zmq](https://github.com/jupyter-xeus/xeus-zmq)\n- [xtl](https://github.com/xtensor-stack/xtl)\n- [nlohmann_json](https://github.com/nlohmann/json)\n- [cppzmq](https://github.com/zeromq/cppzmq)\n\n## Contributing\n\nSee [CONTRIBUTING.md](./CONTRIBUTING.md) to know how to contribute and set up a\ndevelopment environment.\n\n## License\n\nThis software is licensed under the `BSD 3-Clause License`. See the [LICENSE](LICENSE)\nfile for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fderthorsten%2Fxeus-pywrap","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fderthorsten%2Fxeus-pywrap","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fderthorsten%2Fxeus-pywrap/lists"}