{ "info": { "author": "Min RK", "author_email": "benjaminrk@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Other Environment", "Framework :: IPython", "Intended Audience :: Developers", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Software Development :: Version Control" ], "description": ".. image:: https://travis-ci.org/kynan/nbstripout.svg?branch=master\n :target: https://travis-ci.org/kynan/nbstripout\n.. image:: https://img.shields.io/pypi/dm/nbstripout.svg\n :target: https://pypi.python.org/pypi/nbstripout\n.. image:: https://img.shields.io/pypi/v/nbstripout.svg\n :target: https://pypi.python.org/pypi/nbstripout\n.. image:: https://img.shields.io/badge/license-MIT-blue.svg\n :target: https://raw.githubusercontent.com/kynan/nbstripout/master/LICENSE.txt\n.. image:: https://img.shields.io/pypi/pyversions/nbstripout.svg\n :target: https://pypi.python.org/pypi/nbstripout\n\nnbstripout: strip output from Jupyter and IPython notebooks\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nOpens a notebook, strips its output, and writes the outputless version to the\noriginal file.\n\nUseful mainly as a git filter or pre-commit hook for users who don't want to\ntrack output in VCS.\n\nThis does mostly the same thing as the `Clear All Output` command in the\nnotebook UI.\n\nBased on https://gist.github.com/minrk/6176788.\n\nScreencast\n==========\n\nThis screencast demonstrates the use and working principles behind the\nnbstripout utility and how to use it as a Git filter:\n\n.. image:: http://i.imgur.com/7oQHuJ5.png\n :target: https://www.youtube.com/watch?v=BEMP4xacrVc\n\nInstallation\n============\n\nYou can download and install the latest version of ``nbstripout`` from PyPI_,\nthe Python package index, as follows: ::\n\n pip install --upgrade nbstripout\n\nWhen using the Anaconda_ Python distribution, install ``nbstripout`` via the\nconda_ package manager from conda-forge_: ::\n\n conda install -c conda-forge nbstripout\n\nUsage\n=====\n\nStrip output from IPython / Jupyter notebook (modifies the files in-place): ::\n\n nbstripout FILE.ipynb [FILE2.ipynb ...]\n\nForce processing of non ``.ipynb`` files: ::\n\n nbstripout -f FILE.ipynb.bak\n\nWrite to stdout e.g. to use as part of a shell pipeline: ::\n\n cat FILE.ipynb | nbstripout > OUT.ipynb\n\nor ::\n\n nbstripout -t FILE.ipynb | other-command\n\nSet up the git filter and attributes as described in the manual installation\ninstructions below: ::\n\n nbstripout --install\n\nSet up the git filter using ``.gitattributes`` ::\n\n nbstripout --install --attributes .gitattributes\n\nSet up the git filter in your global ``~/.gitconfig`` ::\n\n nbstripout --install --global\n\nRemove the git filter and attributes: ::\n\n nbstripout --uninstall\n\nRemove the git filter from your global ``~/.gitconfig`` and attributes ::\n\n nbstripout --install --global\n\nRemove the git filter and attributes from ``.gitattributes``: ::\n\n nbstripout --uninstall --attributes .gitattributes\n\nCheck if ``nbstripout`` is installed in the current repository\n(exits with code 0 if installed, 1 otherwise): ::\n\n nbstripout --is-installed\n\nPrint status of ``nbstripout`` installation in the current repository and\nconfiguration summary of filter and attributes if installed\n(exits with code 0 if installed, 1 otherwise): ::\n\n nbstripout --status\n\nPrint the version: ::\n\n nbstripout --version\n\nShow this help page: ::\n\n nbstripout --help\n\nConfiguration files\n+++++++++++++++++++\n\nThe following table shows in which files the ``nbstripout`` filter and\nattribute configuration is written to for given extra flags to ``--install``\nand ``--uninstall``:\n\n======================================== ================ ========================\nflags filters attributes\n======================================== ================ ========================\nnone ``.git/config`` ``.git/info/attributes``\n``--global`` ``~/.gitconfig`` ``.git/info/attributes``\n``--attributes=.gitattributes`` ``.git/config`` ``.gitattributes``\n``--global --attributes=.gitattributes`` ``~/.gitconfig`` ``.gitattributes``\n======================================== ================ ========================\n\nInstall globally\n++++++++++++++++\n\nUsually, ``nbstripout`` is installed per repository so you can choose where to\nuse it or not. You can choose to set the attributes in ``.gitattributes`` and\ncommit this file to your repository, however there is no way to have git set up\nthe filters automatically when someone clones a repository. This is by design,\nto prevent you from executing arbitrary and potentially malicious code when\ncloning a repository.\n\nTo install ``nbstripout`` for all your repositories such that you no longer\nneed to run the installation once per repository, install as follows: ::\n\n mkdir -p ~/.config/git # This folder may not exist\n nbstripout --install --global --attributes=~/.config/git/attributes\n\nThis will set up the filters and diff driver in your ``~/.gitconfig`` and\ninstruct git to apply them to any ``.ipynb`` file in any repository.\n\nNote that you need to uninstall with the same flags: ::\n\n nbstripout --uninstall --global --attributes=~/.config/git/attributes\n\nApply retroactively\n+++++++++++++++++++\n\n``nbstripout`` can be used to rewrite an existing Git repository using\n``git filter-branch`` to strip output from existing notebooks. This invocation\nuses ``--index-filter`` and operates on all ipynb-files in the repo: ::\n\n git filter-branch -f --index-filter '\n git checkout -- :*.ipynb\n find . -name \"*.ipynb\" -exec nbstripout \"{}\" +\n git add . --ignore-removal\n '\n\nIf the repository is large and the notebooks are in a subdirectory it will run\nfaster with ``git checkout -- :/*.ipynb``. You will get a warning for\ncommits that do not contain any notebooks, which can be suppressed by piping\nstderr to ``/dev/null``.\n\nThis is a potentially slower but simpler invocation using ``--tree-filter``: ::\n\n git filter-branch -f --tree-filter 'find . -name \"*.ipynb\" -exec nbstripout \"{}\" +'\n\nKeeping some output\n+++++++++++++++++++\n\nDo not strip the execution count/prompt number ::\n\n nbstripout --keep-count\n\nDo not strip the output ::\n\n nbstripout --keep-output\n\nTo mark special cells so that the output is not striped, set the\n``\"keep_output\": true`` metadata on the cell. To do this, select the\n\"Edit Metadata\" Cell Toolbar, and then use the \"Edit Metadata\" button\non the desired cell to enter something like::\n\n {\n \"keep_output\": true,\n }\n\nAnother use-case is to preserve initialization cells that might load\ncustomized CSS etc. critical for the display of the notebook. To\nsupport this, we also keep output for cells with::\n\n {\n \"init_cell\": true,\n }\n\nThis is the same metadata used by the `init_cell nbextension`__.\n\n__ https://github.com/ipython-contrib/jupyter_contrib_nbextensions/tree/master/src/jupyter_contrib_nbextensions/nbextensions/init_cell\n\nStripping metadata\n++++++++++++++++++\n\nThis is configurable via ``git config (--global) filter.nbstripout.extrakeys``.\nAn example would be: ::\n\n git config --global filter.nbstripout.extrakeys '\n metadata.celltoolbar metadata.kernel_spec.display_name\n metadata.kernel_spec.name metadata.language_info.codemirror_mode.version\n metadata.language_info.pygments_lexer metadata.language_info.version\n metadata.toc metadata.notify_time metadata.varInspector\n cell.metadata.heading_collapsed cell.metadata.hidden\n cell.metadata.code_folding cell.metadata.tags cell.metadata.init_cell'\n\nExcluding folders\n+++++++++++++++++\n\nTo exclude a certain folder from being processed by the ``nbstripout`` filter,\nadd the following line to your ``.git/info/attributes`` (or ``.gitattributes``\nif you choose to use that): ::\n\n docs/** filter= diff=\n\nThis will disable ``nbstripout`` for any file in the ``docs`` directory.\n\nTo check which attributes a given file has with the current config, run ::\n\n git check-attr -a -- path/to/file\n\nFor a file to which the filter applies you will see the following: ::\n\n $ git check-attr -a -- foo.ipynb\n foo.ipynb: diff: ipynb\n foo.ipynb: filter: nbstripout\n\nFor a file in your excluded folder you will see the following: ::\n\n $ git check-attr -a -- docs/foo.ipynb\n foo.ipynb: diff:\n foo.ipynb: filter:\n\nManual filter installation\n==========================\n\nSet up a git filter and diff driver using nbstripout as follows: ::\n\n git config filter.nbstripout.clean '/path/to/nbstripout'\n git config filter.nbstripout.smudge cat\n git config filter.nbstripout.required true\n git config diff.ipynb.textconv '/path/to/nbstripout -t'\n\nThis will add a section to the ``.git/config`` file of the current repository.\n\nIf you want the filter to be installed globally for your user, add the\n``--global`` flag to the ``git config`` invocations above to have the\nconfiguration written to your ``~/.gitconfig`` and apply to all repositories.\n\nCreate a file ``.gitattributes`` (if you want it versioned with the repository)\nor ``.git/info/attributes`` (to apply it only to the current repository) with\nthe following content: ::\n\n *.ipynb filter=nbstripout\n *.ipynb diff=ipynb\n\nThis instructs git to use the filter named _nbstripout_ and the diff driver\nnamed _ipynb_ set up in the git config above for every ``.ipynb`` file in the\nrepository.\n\nIf you want the attributes be set for ``.ipynb`` files in any of your git\nrepositories, add those two lines to ``~/.config/git/attributes``. Note that\nthis file and the ``~/.config/git`` directory may not exist.\n\nMercurial usage\n===============\n\nMercurial does not have the equivalent of smudge filters. One can use\nan encode/decode hook but this has some issues. An alternative\nsolution is to provide a set of commands that first run ``nbstripout``,\nthen perform these operations. This is the approach of the `mmf-setup`_\npackage.\n\n.. _mmf-setup: http://bitbucket.org/mforbes/mmf_setup\n.. _Anaconda: https://www.continuum.io/anaconda-overview\n.. _conda: http://conda.pydata.org\n.. _conda-forge: http://conda-forge.github.io\n.. _PyPI: https://pypi.io\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/kynan/nbstripout", "keywords": "", "license": "License :: OSI Approved :: MIT License", "maintainer": "Florian Rathgeber, Michael McNeil Forbes", "maintainer_email": "florian.rathgeber@gmail.com, michael.forbes+python@gmail.com", "name": "nbstripout", "package_url": "https://pypi.org/project/nbstripout/", "platform": "", "project_url": "https://pypi.org/project/nbstripout/", "project_urls": { "Homepage": "https://github.com/kynan/nbstripout" }, "release_url": "https://pypi.org/project/nbstripout/0.3.6/", "requires_dist": [ "nbformat" ], "requires_python": "", "summary": "Strips outputs from Jupyter and IPython notebooks", "version": "0.3.6" }, "last_serial": 5548154, "releases": { "0.2.0": [ { "comment_text": "", "digests": { "md5": "1c167c85d67a012398df5b5bff324399", "sha256": "358aa26bde760b456f3ba040b1fabc01dec8bbc3c615b29fe6519c57194108e7" }, "downloads": -1, "filename": "nbstripout-0.2.0.tar.gz", "has_sig": false, "md5_digest": "1c167c85d67a012398df5b5bff324399", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3219, "upload_time": "2016-01-19T00:30:43", "url": "https://files.pythonhosted.org/packages/77/85/23267c7bb8015308fc276f7f307bf8284e65a0d024d180c875db914c28c1/nbstripout-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "d427a6c44a7d25fd9cf65691c781a25c", "sha256": "d60929e62078f036a29eebbf48e272ad71bda916f3e8516d9b5f479a44ed4bb0" }, "downloads": -1, "filename": "nbstripout-0.2.1.tar.gz", "has_sig": false, "md5_digest": "d427a6c44a7d25fd9cf65691c781a25c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6483, "upload_time": "2016-02-04T23:31:29", "url": "https://files.pythonhosted.org/packages/77/69/63c5228a1dc9d405db1d1826aeac5391992fd9c8d5f493865b8154cce335/nbstripout-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "25495309afc8bb5e0766b0daaf5f32aa", "sha256": "b4b33ee67b7b2970defe4c5137866e57974e4efacc7a4e2776fdcc90865742de" }, "downloads": -1, "filename": "nbstripout-0.2.2.tar.gz", "has_sig": false, "md5_digest": "25495309afc8bb5e0766b0daaf5f32aa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6634, "upload_time": "2016-02-04T23:30:14", "url": "https://files.pythonhosted.org/packages/e0/3a/0e52b9901fbb229150f309930a9c171881aa22dff99b6cbaeb7bd33a20f1/nbstripout-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "949eee7de9e5999b41e14ed4313f7909", "sha256": "b4d3cfed6326175f91e04dcfd6f5109fd4e4e943884d004b18387cf0e3e7077e" }, "downloads": -1, "filename": "nbstripout-0.2.3.tar.gz", "has_sig": false, "md5_digest": "949eee7de9e5999b41e14ed4313f7909", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7321, "upload_time": "2016-02-15T21:40:03", "url": "https://files.pythonhosted.org/packages/72/56/dde88fbc23cb424c9363b883d25eeefdec6f583feba7795e21851c321572/nbstripout-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "7f0e14ded432c5437a44cbb3f277bf2a", "sha256": "d333aa9650d9600c66dacb0f0e90b98f12bca4601ba4497de5853344dbb9f0be" }, "downloads": -1, "filename": "nbstripout-0.2.4.tar.gz", "has_sig": false, "md5_digest": "7f0e14ded432c5437a44cbb3f277bf2a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7817, "upload_time": "2016-02-15T23:56:28", "url": "https://files.pythonhosted.org/packages/47/e8/42e01125f624ef33bd6b745bf0be57198b8a65f110c711eff54e08617f3e/nbstripout-0.2.4.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "998fb96e349f873566f8354263eb5b7f", "sha256": "4ee9401f406cc2394dfed00f4e4a07e462294eef41950fd222ce2a84a99d8535" }, "downloads": -1, "filename": "nbstripout-0.2.5.tar.gz", "has_sig": false, "md5_digest": "998fb96e349f873566f8354263eb5b7f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8184, "upload_time": "2016-03-03T23:32:43", "url": "https://files.pythonhosted.org/packages/4d/1a/f2b2aca37f46f516d0cd9474a70b6811e7c957e48eefadf022ae7f130570/nbstripout-0.2.5.tar.gz" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "09e86f12b7a211d4a4040ed939d905a7", "sha256": "1c2990338ff9bc0d3283425c5c15dfd2c2371e41fac4cb7ee034d07ec390b1b7" }, "downloads": -1, "filename": "nbstripout-0.2.6.tar.gz", "has_sig": false, "md5_digest": "09e86f12b7a211d4a4040ed939d905a7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7723, "upload_time": "2016-03-13T11:50:07", "url": "https://files.pythonhosted.org/packages/44/5c/746c418bc46e9160fda5f1318a89e4c4543e6dac68a59d05a170543e5d5c/nbstripout-0.2.6.tar.gz" } ], "0.2.7": [ { "comment_text": "", "digests": { "md5": "7fc52278697c89820d3e6138582b73f5", "sha256": "d8721fb6591283eeec869334cd7dd0bc8a5a19a34b9d0965e74d95beef23a9bc" }, "downloads": -1, "filename": "nbstripout-0.2.7.tar.gz", "has_sig": false, "md5_digest": "7fc52278697c89820d3e6138582b73f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10171, "upload_time": "2016-07-29T23:43:49", "url": "https://files.pythonhosted.org/packages/f2/a4/dd2c60d9c7541ac64694502beb475751da2636f0f6e05f899740c7f0e490/nbstripout-0.2.7.tar.gz" } ], "0.2.8": [ { "comment_text": "", "digests": { "md5": "9dc411a00f53a7137c9de606f1acd881", "sha256": "8ca27ab35204b8352b376c071ed4543696d1dbb5088ab93dd282b134fdffd8fb" }, "downloads": -1, "filename": "nbstripout-0.2.8.tar.gz", "has_sig": false, "md5_digest": "9dc411a00f53a7137c9de606f1acd881", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10972, "upload_time": "2016-09-19T22:56:09", "url": "https://files.pythonhosted.org/packages/30/8c/51b4f74f4d55a31e283c0eec3e6865e58a86abb6df009f0bf9d454211842/nbstripout-0.2.8.tar.gz" } ], "0.2.9": [ { "comment_text": "", "digests": { "md5": "74968b4c03d385732d08df0fa149258f", "sha256": "d3ce7889d3de82b88e6c3ac2f8f9460bc82c925c0f513023aa6f638273022fa9" }, "downloads": -1, "filename": "nbstripout-0.2.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "74968b4c03d385732d08df0fa149258f", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 8944, "upload_time": "2016-11-25T19:55:52", "url": "https://files.pythonhosted.org/packages/55/e1/a185c837be75b567c3781804fe984aba159c306d678d9384f92e476aab5c/nbstripout-0.2.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "977e8d947936eee9b5606f979eb6d3e3", "sha256": "13572992e60e76103de19d505c6198f61cc3f568c9d823cec895abb3e6b3ecb7" }, "downloads": -1, "filename": "nbstripout-0.2.9.tar.gz", "has_sig": false, "md5_digest": "977e8d947936eee9b5606f979eb6d3e3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11601, "upload_time": "2016-11-23T23:44:24", "url": "https://files.pythonhosted.org/packages/4f/74/7983fc46c9b06eec04a1c02a9937068517d417f277b4221403874f47ef2c/nbstripout-0.2.9.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "7758001eaa729d7f0a608b84374bcc95", "sha256": "fdcf8beceb0905234283760bb98040ee22e2f48b9c5a2e2b221898028ebd39fb" }, "downloads": -1, "filename": "nbstripout-0.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7758001eaa729d7f0a608b84374bcc95", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 9821, "upload_time": "2017-02-24T06:44:14", "url": "https://files.pythonhosted.org/packages/22/8d/8db0f7abeb7a75e976d87b9c985e5d7ab5ba1801b51846b2e26803e68e9c/nbstripout-0.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "29459cf526eadc24271b3970cdf13838", "sha256": "9b1801e81c59e2fad03bff2b738a0251e5b1207d784154f03b1328a2aa84dd88" }, "downloads": -1, "filename": "nbstripout-0.3.0.tar.gz", "has_sig": false, "md5_digest": "29459cf526eadc24271b3970cdf13838", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10990, "upload_time": "2017-02-24T06:44:10", "url": "https://files.pythonhosted.org/packages/25/7d/fbc6300cafd3e7372854e5e8726da27ad540891cc80a5007c11cb3a7a809/nbstripout-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "ca84223ebf2342968dc904254b3913ed", "sha256": "62a05ba0f4b04f512e14796b05fbe8a7c3f4978e69591e04dd8361946227c91f" }, "downloads": -1, "filename": "nbstripout-0.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ca84223ebf2342968dc904254b3913ed", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 10661, "upload_time": "2017-07-30T19:44:23", "url": "https://files.pythonhosted.org/packages/9b/21/12eedfba07e25ffc3d88e909f2b3737fe69296cf70750bbf3f77eccd1054/nbstripout-0.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "50a490c76c2f07a9ba882ac6efa3d8d5", "sha256": "b997c99b8bbb865988202d2f005cdaabb2598b07dad891c302a147a5871a4a95" }, "downloads": -1, "filename": "nbstripout-0.3.1.tar.gz", "has_sig": false, "md5_digest": "50a490c76c2f07a9ba882ac6efa3d8d5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6558, "upload_time": "2017-07-30T19:33:06", "url": "https://files.pythonhosted.org/packages/01/32/855e34565baa3546b3f7ca320784f58cfdd0eae138fb3920c0e9964e4ab3/nbstripout-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "19c9a262da58e56e14c1f4477d877425", "sha256": "f2306da86db209c8fa7db44dd2a421beb123dfba47d72d394fb8b27336db1d32" }, "downloads": -1, "filename": "nbstripout-0.3.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "19c9a262da58e56e14c1f4477d877425", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11474, "upload_time": "2018-07-09T19:39:19", "url": "https://files.pythonhosted.org/packages/38/34/9b4e47b711c8312189ea69b762154e4b0a42f73793443a5ca61c9842c2d3/nbstripout-0.3.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6978ba2cd8bbf41885ad5bd95792942b", "sha256": "e2151c878e44b504443c53af2a3f09264ef30470f92c3b7a01b08df25367bffb" }, "downloads": -1, "filename": "nbstripout-0.3.2.tar.gz", "has_sig": false, "md5_digest": "6978ba2cd8bbf41885ad5bd95792942b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7950, "upload_time": "2018-07-09T19:39:20", "url": "https://files.pythonhosted.org/packages/54/df/5b1f4324d6e701a3d6a1e2a278836c5206f736ada319d18a088ff3ba3e71/nbstripout-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "25741b330cf2b8a703541cc2122d4c3c", "sha256": "392d55bc915a1501f5f4180ef7ddfd3061a1d5a2575ed38f5f2f2f5ee0bb0364" }, "downloads": -1, "filename": "nbstripout-0.3.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "25741b330cf2b8a703541cc2122d4c3c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11499, "upload_time": "2018-08-04T13:38:46", "url": "https://files.pythonhosted.org/packages/1c/37/2de0322bffacece7f4519486287020a00c0f9887a45c46e43606193b05fb/nbstripout-0.3.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "265d8520a4db4d4cbd8eefd27b3ccf58", "sha256": "d84659e2778ee2f90c16664e93ba0749ef414149cb607f5f36f2a91deba2ace4" }, "downloads": -1, "filename": "nbstripout-0.3.3.tar.gz", "has_sig": false, "md5_digest": "265d8520a4db4d4cbd8eefd27b3ccf58", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12581, "upload_time": "2018-08-04T13:38:47", "url": "https://files.pythonhosted.org/packages/59/5e/71f7268bbda113db94d8733cfe5d00a820daaf5e0d9df308bdd83c1fbca2/nbstripout-0.3.3.tar.gz" } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "bf9a20dea6757ed3a15b7ef214ec68e4", "sha256": "77e0f1dcc5c57eaa6f86d5035293f7d940cccccd7b00ba4e139ef1b53ddf8a5c" }, "downloads": -1, "filename": "nbstripout-0.3.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bf9a20dea6757ed3a15b7ef214ec68e4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 16848, "upload_time": "2019-03-26T22:50:03", "url": "https://files.pythonhosted.org/packages/44/49/6763010c14d02b03858206d21079056f2c6d59d465e0070bdd707864aade/nbstripout-0.3.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5d7ce3549b5e0e73f9733643cd4b4457", "sha256": "25048d1eb7b1f24f2598added54c562171ede87c61a8a942d145a0199856d75c" }, "downloads": -1, "filename": "nbstripout-0.3.4.tar.gz", "has_sig": false, "md5_digest": "5d7ce3549b5e0e73f9733643cd4b4457", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14020, "upload_time": "2019-03-26T22:50:05", "url": "https://files.pythonhosted.org/packages/b4/21/c126f3f77b0f9e319f7f4b0a83135b1e1aa14a6412599e5602058b4ecc07/nbstripout-0.3.4.tar.gz" } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "503bd79a49819998388390860fca0a7f", "sha256": "8f085e26e60e9d9c0710748510d1c763c8f63905cb16df7658b35a2936e8ca2b" }, "downloads": -1, "filename": "nbstripout-0.3.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "503bd79a49819998388390860fca0a7f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13611, "upload_time": "2019-04-02T22:48:31", "url": "https://files.pythonhosted.org/packages/22/4c/c80719f5ca9c8b138d7d26f07f15e254a22cce47bce0e8afe6f809eb3448/nbstripout-0.3.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "34c055f713f8efeed688584fb9da931e", "sha256": "814efbe00988445b2c3f3d1944c9f296a556e2b14a060f7b25372881c2e497d4" }, "downloads": -1, "filename": "nbstripout-0.3.5.tar.gz", "has_sig": false, "md5_digest": "34c055f713f8efeed688584fb9da931e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14215, "upload_time": "2019-04-02T22:48:33", "url": "https://files.pythonhosted.org/packages/22/e2/2c698158489cd4a7b05416a2ff8513ef181e060dae80c5b68e21f3332ecf/nbstripout-0.3.5.tar.gz" } ], "0.3.6": [ { "comment_text": "", "digests": { "md5": "67c5e43a7cf3f2abfe295f03c4349265", "sha256": "d35c553f724d3fb7ec9e9602c6e55a75101064a6bbec4f8c28e8c84d6e3dd060" }, "downloads": -1, "filename": "nbstripout-0.3.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "67c5e43a7cf3f2abfe295f03c4349265", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15006, "upload_time": "2019-07-17T23:44:23", "url": "https://files.pythonhosted.org/packages/49/fb/3e2f9fa82cfbebf0e609352fe594bb2681d713106777129638c686618f49/nbstripout-0.3.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "545bd50dab363dd3d2ea36b7acb8fd24", "sha256": "1960caf7d1c1e281126c6c5cb98053db89eca8aaa616b58eed381e3e1508c0f4" }, "downloads": -1, "filename": "nbstripout-0.3.6.tar.gz", "has_sig": false, "md5_digest": "545bd50dab363dd3d2ea36b7acb8fd24", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16511, "upload_time": "2019-07-17T23:44:25", "url": "https://files.pythonhosted.org/packages/63/44/2aa5458b940ae7cb8986c5cec29946dbbd51ed35efed7515fff09e350ec2/nbstripout-0.3.6.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "67c5e43a7cf3f2abfe295f03c4349265", "sha256": "d35c553f724d3fb7ec9e9602c6e55a75101064a6bbec4f8c28e8c84d6e3dd060" }, "downloads": -1, "filename": "nbstripout-0.3.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "67c5e43a7cf3f2abfe295f03c4349265", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15006, "upload_time": "2019-07-17T23:44:23", "url": "https://files.pythonhosted.org/packages/49/fb/3e2f9fa82cfbebf0e609352fe594bb2681d713106777129638c686618f49/nbstripout-0.3.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "545bd50dab363dd3d2ea36b7acb8fd24", "sha256": "1960caf7d1c1e281126c6c5cb98053db89eca8aaa616b58eed381e3e1508c0f4" }, "downloads": -1, "filename": "nbstripout-0.3.6.tar.gz", "has_sig": false, "md5_digest": "545bd50dab363dd3d2ea36b7acb8fd24", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16511, "upload_time": "2019-07-17T23:44:25", "url": "https://files.pythonhosted.org/packages/63/44/2aa5458b940ae7cb8986c5cec29946dbbd51ed35efed7515fff09e350ec2/nbstripout-0.3.6.tar.gz" } ] }