elixir-nbc


Nameelixir-nbc JSON
Version 7.1.0.dev0 PyPI version JSON
download
home_page
SummaryConverting Elixir Notebooks
upload_time2022-12-27 10:05:43
maintainer
docs_urlNone
author
requires_python>=3.7
license# Licensing terms This project is licensed under the terms of the Modified BSD License (also known as New or Revised or 3-Clause BSD), as follows: - Copyright (c) 2001-2015, IPython Development Team - Copyright (c) 2015-, Jupyter Development Team All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 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. Neither the name of the Jupyter Development Team 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 OWNER 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. ## About the Jupyter Development Team The Jupyter Development Team is the set of all contributors to the Jupyter project. This includes all of the Jupyter subprojects. The core team that coordinates development on GitHub can be found here: https://github.com/jupyter/. ## Our Copyright Policy Jupyter uses a shared copyright model. Each contributor maintains copyright over their contributions to Jupyter. But, it is important to note that these contributions are typically only changes to the repositories. Thus, the Jupyter source code, in its entirety is not the copyright of any single person or institution. Instead, it is the collective copyright of the entire Jupyter Development Team. If individual contributors want to maintain a record of what changes/contributions they have specific copyright on, they should indicate their copyright in the commit message of the change, when they commit the change to one of the Jupyter repositories. With this in mind, the following banner should be used in any source code file to indicate the copyright and license terms: # Copyright (c) Jupyter Development Team. # Distributed under the terms of the Modified BSD License.
keywords interactive interpreter shell web
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # ElixirNBC

[![Google Group](https://img.shields.io/badge/-Google%20Group-lightgrey.svg)](https://groups.google.com/forum/#!forum/jupyter)
[![Build Status](https://travis-ci.org/jupyter/nbconvert.svg?branch=main)](https://travis-ci.org/jupyter/nbconvert)
[![Documentation Status](https://readthedocs.org/projects/nbconvert/badge/?version=latest)](https://nbconvert.readthedocs.io/en/latest/?badge=latest)
[![Documentation Status](https://readthedocs.org/projects/nbconvert/badge/?version=stable)](https://nbconvert.readthedocs.io/en/stable/?badge=stable)
[![codecov.io](https://codecov.io/github/jupyter/nbconvert/coverage.svg?branch=main)](https://codecov.io/github/jupyter/nbconvert?branch=main)

The **nbconvert** tool, `elixir nbconvert`, converts notebooks to various other
formats via Jinja templates. The nbconvert tool allows you to convert an
`.ipynb` notebook file into various static formats including:

- HTML
- LaTeX
- PDF
- Reveal JS
- Markdown (md)
- ReStructured Text (rst)
- executable script

## Usage

From the command line, use nbconvert to convert a Jupyter notebook (_input_) to a
a different format (_output_). The basic command structure is:

    $ elixir-nbconvert --to <output format> <input notebook>

where `<output format>` is the desired output format and `<input notebook>` is the
filename of the Jupyter notebook.

Convert notebook file, `sample.ipynb`, to HTML using:

    $ elixir-nbconvert --to html sample.ipynb

This command creates an HTML output file named `mynotebook.html`.

## Dev Install

Check if pandoc is installed (`pandoc --version`); if needed, install:

```
sudo apt-get install pandoc
```

Or

```
brew install pandoc
```

Install elixirnbc for development using:

```
git clone git@github.com:ElixirNote/elixirnbc.git
cd elixirnbc
pip install -e .
```

## Documentation

- [Documentation for Elixir Nbc](https://ciusji.gitbook.io/elixirnote/guides/elixirnote-nbc)
- [Examples of Elixir Nbc](https://ciusji.gitbook.io/elixirnote/guides/elixirnote-nbc)

## Technical Support

- [Issues and Bug Reports](https://github.com/ElixirNote/elixirnbc/issues): A place to report
  bugs or regressions found for nbconvert
- [Community Technical Support and Discussion](https://github.com/orgs/ElixirNote/discussions): A place for
  installation, configuration, and troubleshooting assistannce by the Elixir community.
  As a non-profit project and maintainers who are primarily volunteers, we encourage you
  to ask questions and share your knowledge on Discourse.


            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "elixir-nbc",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "Interactive,Interpreter,Shell,Web",
    "author": "",
    "author_email": "ciusji <bqjimaster@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/fe/ac/fbc7aa93e5f723e32b6c72b2123496dd3c78d23133109f0dd2ca304694ec/elixir_nbc-7.1.0.dev0.tar.gz",
    "platform": null,
    "description": "# ElixirNBC\n\n[![Google Group](https://img.shields.io/badge/-Google%20Group-lightgrey.svg)](https://groups.google.com/forum/#!forum/jupyter)\n[![Build Status](https://travis-ci.org/jupyter/nbconvert.svg?branch=main)](https://travis-ci.org/jupyter/nbconvert)\n[![Documentation Status](https://readthedocs.org/projects/nbconvert/badge/?version=latest)](https://nbconvert.readthedocs.io/en/latest/?badge=latest)\n[![Documentation Status](https://readthedocs.org/projects/nbconvert/badge/?version=stable)](https://nbconvert.readthedocs.io/en/stable/?badge=stable)\n[![codecov.io](https://codecov.io/github/jupyter/nbconvert/coverage.svg?branch=main)](https://codecov.io/github/jupyter/nbconvert?branch=main)\n\nThe **nbconvert** tool, `elixir nbconvert`, converts notebooks to various other\nformats via Jinja templates. The nbconvert tool allows you to convert an\n`.ipynb` notebook file into various static formats including:\n\n- HTML\n- LaTeX\n- PDF\n- Reveal JS\n- Markdown (md)\n- ReStructured Text (rst)\n- executable script\n\n## Usage\n\nFrom the command line, use nbconvert to convert a Jupyter notebook (_input_) to a\na different format (_output_). The basic command structure is:\n\n    $ elixir-nbconvert --to <output format> <input notebook>\n\nwhere `<output format>` is the desired output format and `<input notebook>` is the\nfilename of the Jupyter notebook.\n\nConvert notebook file, `sample.ipynb`, to HTML using:\n\n    $ elixir-nbconvert --to html sample.ipynb\n\nThis command creates an HTML output file named `mynotebook.html`.\n\n## Dev Install\n\nCheck if pandoc is installed (`pandoc --version`); if needed, install:\n\n```\nsudo apt-get install pandoc\n```\n\nOr\n\n```\nbrew install pandoc\n```\n\nInstall elixirnbc for development using:\n\n```\ngit clone git@github.com:ElixirNote/elixirnbc.git\ncd elixirnbc\npip install -e .\n```\n\n## Documentation\n\n- [Documentation for Elixir Nbc](https://ciusji.gitbook.io/elixirnote/guides/elixirnote-nbc)\n- [Examples of Elixir Nbc](https://ciusji.gitbook.io/elixirnote/guides/elixirnote-nbc)\n\n## Technical Support\n\n- [Issues and Bug Reports](https://github.com/ElixirNote/elixirnbc/issues): A place to report\n  bugs or regressions found for nbconvert\n- [Community Technical Support and Discussion](https://github.com/orgs/ElixirNote/discussions): A place for\n  installation, configuration, and troubleshooting assistannce by the Elixir community.\n  As a non-profit project and maintainers who are primarily volunteers, we encourage you\n  to ask questions and share your knowledge on Discourse.\n\n",
    "bugtrack_url": null,
    "license": "# Licensing terms  This project is licensed under the terms of the Modified BSD License (also known as New or Revised or 3-Clause BSD), as follows:  - Copyright (c) 2001-2015, IPython Development Team - Copyright (c) 2015-, Jupyter Development Team  All rights reserved.  Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:  Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.  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.  Neither the name of the Jupyter Development Team 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 OWNER 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.  ## About the Jupyter Development Team  The Jupyter Development Team is the set of all contributors to the Jupyter project. This includes all of the Jupyter subprojects.  The core team that coordinates development on GitHub can be found here: https://github.com/jupyter/.  ## Our Copyright Policy  Jupyter uses a shared copyright model. Each contributor maintains copyright over their contributions to Jupyter. But, it is important to note that these contributions are typically only changes to the repositories. Thus, the Jupyter source code, in its entirety is not the copyright of any single person or institution.  Instead, it is the collective copyright of the entire Jupyter Development Team.  If individual contributors want to maintain a record of what changes/contributions they have specific copyright on, they should indicate their copyright in the commit message of the change, when they commit the change to one of the Jupyter repositories.  With this in mind, the following banner should be used in any source code file to indicate the copyright and license terms:  # Copyright (c) Jupyter Development Team. # Distributed under the terms of the Modified BSD License.",
    "summary": "Converting Elixir Notebooks",
    "version": "7.1.0.dev0",
    "split_keywords": [
        "interactive",
        "interpreter",
        "shell",
        "web"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "51c68db871d97b71f5167d4bc5050f4d",
                "sha256": "63439f2a6fb0c68335db6807c6c72c046c01eeaf20085fc691a547a595beb787"
            },
            "downloads": -1,
            "filename": "elixir_nbc-7.1.0.dev0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "51c68db871d97b71f5167d4bc5050f4d",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 254810,
            "upload_time": "2022-12-27T10:05:38",
            "upload_time_iso_8601": "2022-12-27T10:05:38.185714Z",
            "url": "https://files.pythonhosted.org/packages/87/01/7f11a13134b8c9d66a6cd096db146867eebb9c953223b8eccc1a55c914c0/elixir_nbc-7.1.0.dev0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "663819a2c5642cca07fb36536ff1306f",
                "sha256": "01bd414189eaa550e3c78902b975d48557e0b14dd3b09be726f954ed6eb70bc7"
            },
            "downloads": -1,
            "filename": "elixir_nbc-7.1.0.dev0.tar.gz",
            "has_sig": false,
            "md5_digest": "663819a2c5642cca07fb36536ff1306f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 836372,
            "upload_time": "2022-12-27T10:05:43",
            "upload_time_iso_8601": "2022-12-27T10:05:43.450034Z",
            "url": "https://files.pythonhosted.org/packages/fe/ac/fbc7aa93e5f723e32b6c72b2123496dd3c78d23133109f0dd2ca304694ec/elixir_nbc-7.1.0.dev0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-12-27 10:05:43",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "lcname": "elixir-nbc"
}
        
Elapsed time: 0.02482s