{ "info": { "author": "Jonathan Stoppani", "author_email": "jonathan@stoppani.name", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "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 :: Libraries :: Python Modules" ], "description": "sphinx-autobuild\n================\n\nWatch a Sphinx directory and rebuild the documentation when a change is\ndetected. Also includes a livereload enabled web server.\n\n\n.. image:: https://img.shields.io/travis/GaretJax/sphinx-autobuild.svg\n :target: https://travis-ci.org/GaretJax/sphinx-autobuild\n.. image:: https://img.shields.io/pypi/v/sphinx-autobuild.svg\n :target: https://pypi.python.org/pypi/sphinx-autobuild\n.. image:: https://img.shields.io/coveralls/GaretJax/sphinx-autobuild/develop.svg\n :target: https://coveralls.io/r/GaretJax/sphinx-autobuild?branch=develop\n.. image:: https://img.shields.io/badge/docs-latest-brightgreen.svg\n :target: http://sphinx-autobuild.readthedocs.org/en/latest/\n.. image:: https://img.shields.io/pypi/l/sphinx-autobuild.svg\n :target: https://github.com/GaretJax/sphinx-autobuild/blob/develop/LICENSE\n\n\nInstallation\n------------\n\nYou can use ``pip`` to install the package along with its requirements::\n\n pip install sphinx-autobuild\n\n\nUsage\n-----\n\nThe package installs a single executable script, named ``sphinx-autobuild``.\nThe script takes the same arguments as the ``sphinx-build`` command installed\nby Sphinx plus the following options:\n\n* ``-p``/``--port`` option to specify the port on which the documentation shall\n be served (default 8000)\n* ``-H``/``--host`` option to specify the host on which the documentation shall\n be served (default 127.0.0.1)\n* ``-i``/``--ignore`` multiple allowed, option to specify file ignore glob\n expression when watching changes, for example: `*.tmp`\n* ``-B``/``--open-browser`` automatically open a web browser with the URL for\n this document\n* ``--no-initial`` disable initial build\n* ``-s``/``--delay`` delay in seconds before opening browser if\n ``--open-browser`` was selected (default 5)\n* ``-z``/``--watch`` multiple allowed, option to specify additional directories\n to watch, for example: `some/extra/dir`\n* ``--poll`` force polling, useful for Vagrant or VirtualBox which do not \n trigger file updates in `shared folders`_\n\n.. _shared folders: https://www.virtualbox.org/ticket/10660\n\nTo build a classical Sphinx documentation set, issue the following command::\n\n sphinx-autobuild docs docs/_build/html\n\nAnd then visit the webpage served at http://127.0.0.1:8000. Each time a change\nto the documentation source is detected, the HTML is rebuilt and the browser\nautomatically reloaded.\n\nTo stop the server simply press ``^C``.\n\n\nMakefile integration\n--------------------\n\nTo integrate the sphinx-autobuild command in the Makefile generated by Sphinx,\nadd the following target::\n\n livehtml:\n sphinx-autobuild -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html\n\nThen run with::\n\n make livehtml\n\n\nAutomatically starting a browser\n--------------------------------\n\nIf you work on multiple Sphinx document repositories at one time (e.g., when\nworking with related documents that have cross-referencing intersphinx links),\nmanaging multiple browser windows and manually selecting port numbers becomes\ndifficult and tedious. By selecting ``--port 0`` on the command line,\nsphinx-autobuild will use `port-for`_ to generate a random high-numbered\nport that is not currently being used.\n\nTo further simplify life, use the ``-B`` (``--open-browser``) option\nto trigger livereload's capability of automatically opening a browser\nwindow. Use ``-s`` (``--delay``) to change the number of seconds to\ndelay before starting the browser, and you may need to do something\nlike the following to ensure that all cached content is removed\nbefore sphinx-autobuild starts watching files to fully render the\ndocument properly::\n\n # Clean out any cached content before starting.\n make clean 2>/dev/null\n\n # Background a trigger for initial build of all files.\n (sleep 1 && touch source/*.rst) &\n\n sphinx-autobuild -q \\\n\t -p 0 \\\n\t --open-browser \\\n\t --delay 5 \\\n\t --ignore \"*.swp\" \\\n\t --ignore \"*.pdf\" \\\n\t --ignore \"*.log\" \\\n\t --ignore \"*.out\" \\\n\t --ignore \"*.toc\" \\\n\t --ignore \"*.aux\" \\\n\t --ignore \"*.idx\" \\\n\t --ignore \"*.ind\" \\\n\t --ignore \"*.ilg\" \\\n\t --ignore \"*.tex\" \\\n\t source \\\n\t build/html\n\n.. _port-for: https://pypi.python.org/pypi/port-for/\n\n\nChangelog\n=========\n\n0.7.1 - 2017/07/05\n------------------\n\n* Remove spurious virtualenv directory from published packages.\n\n\n0.7.0 - 2017/07/05\n------------------\n\n* Add support for python 3.5, 3.6 and deprecate official python 2.6 support.\n* Add ``__main__`` module for python 3.\n* Add a ``--version`` argument.\n\n\n0.6.0 \u2013 2016/02/14\n------------------\n\n* Support ``-p 0``, ``--port=0`` to automatically chose an available port.\n* Added ``-B``, ``--open-browser`` to automatically open the documentation upon\n build.\n* Added Kate swap files to the list of files ignored by default\n* Automatically build docs on startup (can be disabled with ``--no-initial``).\n* Added ``--poll`` to force polling the FS for changes (useful for\n networked/virtualized mountpoints).\n* Compatibility with livereload >= 2.4.1.\n\n\n0.5.2 \u2013 2015/04/10\n------------------\n\n* Added ``-r``, ``--re-ignore`` command line argumet to exclude paths using\n regexes.\n\n\n0.5.0 \u2013 2015/01/28\n------------------\n\n* Added ``-z``, ``--watch`` command line argument to watch arbitrary folders.\n\n\n0.4.0 \u2013 2014/12/23\n------------------\n* Added ``-i``, ``--ignore`` command line argument to ignore files by the glob\n expression.\n* Added basic tests for the entry point script.\n* PEP 257 improvements.\n* Automated tests on travis integration and coverage reporting.\n* Compatibility with livereload >= 2.3.0.\n* Compatibility with Python 2.6 and 2.7.\n* Provisional compatibility with Python 3.3 and 3.4.\n\n\n0.3.0 \u2013 2014/08/21\n------------------\n\n\n0.2.3 \u2013 2013/12/25\n------------------\n* Ignore the paths indicated by the ``-w`` and ``-d`` arguments when watching\n for changes to the documentation.\n\n\n0.2.1 \u2013 2013/12/25\n------------------\n* Catch subprocess PTY reading errors.\n\n\n0.2.0 \u2013 2013/12/25\n------------------\n* Explicitly parse sphinx-build arguments for better compatibility.\n\n\n0.1.0 \u2013 2013/12/25\n------------------\n* Initial release.\n", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/GaretJax/sphinx-autobuild", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "sphinx-autobuild", "package_url": "https://pypi.org/project/sphinx-autobuild/", "platform": "", "project_url": "https://pypi.org/project/sphinx-autobuild/", "project_urls": { "Homepage": "https://github.com/GaretJax/sphinx-autobuild" }, "release_url": "https://pypi.org/project/sphinx-autobuild/0.7.1/", "requires_dist": null, "requires_python": "", "summary": "Watch a Sphinx directory and rebuild the documentation when a change is detected. Also includes a livereload enabled web server.", "version": "0.7.1" }, "last_serial": 3000865, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "9dbbe43ca20d1a6679f9e4e6c28ef8c6", "sha256": "f76c96c1bb1b381f2df5542fc411a43d1a3f40e13dbbcb3a8d05a13d781a2bfb" }, "downloads": -1, "filename": "sphinx-autobuild-0.1.0.tar.gz", "has_sig": false, "md5_digest": "9dbbe43ca20d1a6679f9e4e6c28ef8c6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9818, "upload_time": "2013-12-25T17:14:07", "url": "https://files.pythonhosted.org/packages/33/37/6ff9e2a34961cb7130bfb1e135a9cd0273338b6efdb588c7c16f99b22193/sphinx-autobuild-0.1.0.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "8a77ef34b0373c3ff653236e3db5df12", "sha256": "6d22fc7530ff1d00f3c57a1f67e7da200e2e66c7e895ab1044812ab054585e93" }, "downloads": -1, "filename": "sphinx_autobuild-0.2.0-py27-none-any.whl", "has_sig": false, "md5_digest": "8a77ef34b0373c3ff653236e3db5df12", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 6114, "upload_time": "2013-12-25T17:58:22", "url": "https://files.pythonhosted.org/packages/00/89/790781bcafda830daa4bd7a7951676bcb5b6be8376aa9ffcf7d6343fe382/sphinx_autobuild-0.2.0-py27-none-any.whl" }, { "comment_text": "", "digests": { "md5": "927dc56198987f16f74078d1275bd38e", "sha256": "94f613a6def43da475ac0dc160b335cc28aa905db3737c670c24d88453838950" }, "downloads": -1, "filename": "sphinx-autobuild-0.2.0.tar.gz", "has_sig": false, "md5_digest": "927dc56198987f16f74078d1275bd38e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10159, "upload_time": "2013-12-25T17:58:20", "url": "https://files.pythonhosted.org/packages/76/3c/9ea246cc442b8d2f9352955a9b3ec88d5442f01db7c0ce155abae4dfb1c5/sphinx-autobuild-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "c9eb9ae65a98c36cf39b0eb3f76675e9", "sha256": "cd439ffec36a7bab7549d681a59d10165e7ddac6c00aa7a8c6f4dae7202527fe" }, "downloads": -1, "filename": "sphinx_autobuild-0.2.1-py27-none-any.whl", "has_sig": false, "md5_digest": "c9eb9ae65a98c36cf39b0eb3f76675e9", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 6196, "upload_time": "2013-12-25T18:10:05", "url": "https://files.pythonhosted.org/packages/37/22/d60ecb0adc9b9ee870c7ae483842a8773a46008d02e214677e0055ca798f/sphinx_autobuild-0.2.1-py27-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b30ba6899ada73b90e7e5560198eb29c", "sha256": "b3adae8af4e457a9bf99c708dee9c1875e06b6797a5db4947a7c36e0d188473a" }, "downloads": -1, "filename": "sphinx-autobuild-0.2.1.tar.gz", "has_sig": false, "md5_digest": "b30ba6899ada73b90e7e5560198eb29c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10212, "upload_time": "2013-12-25T18:10:02", "url": "https://files.pythonhosted.org/packages/dc/e0/754d4583d86e9e0f226a156ab97af543e424ee3b1061807ef6dc8f3e038c/sphinx-autobuild-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "2c85c23604277a78721bd3a9a4e696c4", "sha256": "fbabcaa0c1147daab9e8aa8579c1f8153777fe971a0dbf0548bd9eb5403ae3fc" }, "downloads": -1, "filename": "sphinx_autobuild-0.2.2-py27-none-any.whl", "has_sig": false, "md5_digest": "2c85c23604277a78721bd3a9a4e696c4", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 6394, "upload_time": "2013-12-25T18:21:38", "url": "https://files.pythonhosted.org/packages/d0/b3/59b9481c555a65d1ba5054d0cd5fb3bd3d5679dcbd7765e20dc8e23aa159/sphinx_autobuild-0.2.2-py27-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e17710cbaa87343061a32a9a509294e4", "sha256": "30b8043c422f4b26cc02fc6e9d927fdf2abd9a86d0fd0cf87f0ea295c83531a3" }, "downloads": -1, "filename": "sphinx-autobuild-0.2.2.tar.gz", "has_sig": false, "md5_digest": "e17710cbaa87343061a32a9a509294e4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10363, "upload_time": "2013-12-25T18:21:35", "url": "https://files.pythonhosted.org/packages/9b/38/d23f9a5c647844afcf8c14fb611cc914e8de9b21b97d98a315eb3c834962/sphinx-autobuild-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "4729835e192c3b69c3286f6e57fa4343", "sha256": "260725ed62e6d550f6e7f5001c581b2a40225f49d297df4c263827f43603f33e" }, "downloads": -1, "filename": "sphinx_autobuild-0.2.3-py27-none-any.whl", "has_sig": false, "md5_digest": "4729835e192c3b69c3286f6e57fa4343", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 6400, "upload_time": "2013-12-25T18:23:59", "url": "https://files.pythonhosted.org/packages/7a/e9/648d692518e83d4396af0d8315ccb7dcaca17c73a4427b80fe99b3346fce/sphinx_autobuild-0.2.3-py27-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a4b842348c55fd5405cb55363ac5fedb", "sha256": "0c85c6a144e16f8b9053130e23fcf1aed8dbb1383d3612c51f7015491ea9a210" }, "downloads": -1, "filename": "sphinx-autobuild-0.2.3.tar.gz", "has_sig": false, "md5_digest": "a4b842348c55fd5405cb55363ac5fedb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10364, "upload_time": "2013-12-25T18:23:56", "url": "https://files.pythonhosted.org/packages/cb/1c/778939503a022288048c1329208d8be9575c3034552174a64fb10191a517/sphinx-autobuild-0.2.3.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "cc4c55677d8c792ad8875b2977887633", "sha256": "5e29ceb2f64a63e1ce301af4c74beb27b5a661e5863d00454f59940ba24d739d" }, "downloads": -1, "filename": "sphinx_autobuild-0.3.0-py27-none-any.whl", "has_sig": false, "md5_digest": "cc4c55677d8c792ad8875b2977887633", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 8606, "upload_time": "2014-08-21T13:24:51", "url": "https://files.pythonhosted.org/packages/19/76/ce18442a7e8b8ed5034be6303bd7c5831d1753cef220158d0ea61868f6cd/sphinx_autobuild-0.3.0-py27-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3e647e7c46ce09614a2dd6dce543ef21", "sha256": "3900cab64bb18b661891280045501e3f1a05a1ec99a75aeb2ed02691d07825c2" }, "downloads": -1, "filename": "sphinx-autobuild-0.3.0.tar.gz", "has_sig": false, "md5_digest": "3e647e7c46ce09614a2dd6dce543ef21", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10713, "upload_time": "2014-08-21T13:24:48", "url": "https://files.pythonhosted.org/packages/6a/fd/f5b97a8b51e103c0716fe96e4f53b4caac3235662b45b60e4f84567e2d5e/sphinx-autobuild-0.3.0.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "1b502710180dd974e84b38070c9c36bf", "sha256": "2a5a3aaff19c53400d45ced01cebcf13a548256da5dcd19c185e59746edfed0d" }, "downloads": -1, "filename": "sphinx_autobuild-0.4.0-py27-none-any.whl", "has_sig": false, "md5_digest": "1b502710180dd974e84b38070c9c36bf", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 8466, "upload_time": "2014-12-23T11:00:28", "url": "https://files.pythonhosted.org/packages/fd/98/6c9774c0d47bc23599d3cb745783179a865d2fa0d828e2b1898efa5999d3/sphinx_autobuild-0.4.0-py27-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0a20147623238e562195e098ebadc89f", "sha256": "f60976e0b5ed8ccb3fcbe591582b2c9cdec018083762f5d493babd186dbd5b85" }, "downloads": -1, "filename": "sphinx-autobuild-0.4.0.tar.gz", "has_sig": false, "md5_digest": "0a20147623238e562195e098ebadc89f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11807, "upload_time": "2014-12-23T11:00:24", "url": "https://files.pythonhosted.org/packages/5e/4c/152d7eaaece568bbb5afb7c54eb07bf233dcb38a113c300e351f14ee63f4/sphinx-autobuild-0.4.0.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "9f7c2aec48a07e97b7bda23aa026b194", "sha256": "b2fa3145299e2b722c4ab08cfce9392643b3c7713fa10b694fdd263159c9afab" }, "downloads": -1, "filename": "sphinx_autobuild-0.5.0-py27-none-any.whl", "has_sig": false, "md5_digest": "9f7c2aec48a07e97b7bda23aa026b194", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 9048, "upload_time": "2015-01-28T07:09:46", "url": "https://files.pythonhosted.org/packages/09/3d/f684f9c178f3322c17b646de7b92a456efea3d6b3b8f91dc6a7f57712edc/sphinx_autobuild-0.5.0-py27-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9eb6726e055749ba509eb58405cba300", "sha256": "ba763b703ccf0da7a066cf041b1a9ba24c903b336cbe5eedde6eb72f5f26cc91" }, "downloads": -1, "filename": "sphinx-autobuild-0.5.0.tar.gz", "has_sig": false, "md5_digest": "9eb6726e055749ba509eb58405cba300", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12314, "upload_time": "2015-01-28T07:09:44", "url": "https://files.pythonhosted.org/packages/07/ef/10826130c8e11df55483195318968fb9bf689b4f583287f26ec3f7b89f25/sphinx-autobuild-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "db48221883e730eaf2b3e527efed2786", "sha256": "1941d9d0c4f9b3065387ffb0a536633e96b64652646285be3347c5712095c4a6" }, "downloads": -1, "filename": "sphinx_autobuild-0.5.1-py2-none-any.whl", "has_sig": false, "md5_digest": "db48221883e730eaf2b3e527efed2786", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 9449, "upload_time": "2015-04-10T15:28:26", "url": "https://files.pythonhosted.org/packages/59/3a/f1eef8da46618cc879e3fc3c9ccfb34c9d6652174062a7757bd00615e494/sphinx_autobuild-0.5.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "40c477a40b246b345e0e40a5592de432", "sha256": "d074587b286eee22515c470363dec7109b2b7938d90fc97a2260bc5b4feeddea" }, "downloads": -1, "filename": "sphinx-autobuild-0.5.1.tar.gz", "has_sig": false, "md5_digest": "40c477a40b246b345e0e40a5592de432", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13395, "upload_time": "2015-04-10T15:28:24", "url": "https://files.pythonhosted.org/packages/c1/63/c33a0f4c708a925df9740e64964121d48c42217ca69224f8ef237dc6c87b/sphinx-autobuild-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "7d27d267b0012815ed6f5437c0111351", "sha256": "08cc655bec25bac3e660ab2d1c51471d4532ef393fc40fafbd250140263516bb" }, "downloads": -1, "filename": "sphinx_autobuild-0.5.2-py2-none-any.whl", "has_sig": false, "md5_digest": "7d27d267b0012815ed6f5437c0111351", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 9564, "upload_time": "2015-04-10T15:39:33", "url": "https://files.pythonhosted.org/packages/4e/ee/99512748bee5718de6a84f878f1784f9999586243d116f7217da037adbaa/sphinx_autobuild-0.5.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "701fa0f5d01183eeac8bb0a160aa6161", "sha256": "120af8b893061ec72be4aa91b93455e6d0d4a80175c07a53819910c4d8974830" }, "downloads": -1, "filename": "sphinx-autobuild-0.5.2.tar.gz", "has_sig": false, "md5_digest": "701fa0f5d01183eeac8bb0a160aa6161", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13492, "upload_time": "2015-04-10T15:39:30", "url": "https://files.pythonhosted.org/packages/3d/7f/a0ebb30e44e44827a91c32e56e1e09eaa953b1aaef3925b7f4ebb34b135a/sphinx-autobuild-0.5.2.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "d5a708f79fc3999642c2637cb8ab1d3d", "sha256": "e98473cdf26287cc81393841b293b516d078f6e475062a35ceb9fe3d739ac5f3" }, "downloads": -1, "filename": "sphinx_autobuild-0.6.0-py2-none-any.whl", "has_sig": false, "md5_digest": "d5a708f79fc3999642c2637cb8ab1d3d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 11486, "upload_time": "2016-02-13T23:12:11", "url": "https://files.pythonhosted.org/packages/83/67/45618a27d060739769de21aa9d237654232a3e2ce45e1ca264d108e74fb9/sphinx_autobuild-0.6.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7331bb8e14b537b871ab8e6e09ff4713", "sha256": "2f9262d7a35f80a18c3bcb03b2bf5a83f0a5e88b75ad922b3b1cee512c7e5cd2" }, "downloads": -1, "filename": "sphinx-autobuild-0.6.0.tar.gz", "has_sig": false, "md5_digest": "7331bb8e14b537b871ab8e6e09ff4713", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15306, "upload_time": "2016-02-13T23:12:01", "url": "https://files.pythonhosted.org/packages/85/cf/25b65781e6d2a4a89a431260daf1e0d53a81c52d27c98245481d46f3df2a/sphinx-autobuild-0.6.0.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "d8db631519d2305c50f9b501aa3e2589", "sha256": "08642c64253fa498f7a935b1c06d6081ccda3d530aeea0a02aeda78dafa03a19" }, "downloads": -1, "filename": "sphinx_autobuild-0.7.0-py2-none-any.whl", "has_sig": false, "md5_digest": "d8db631519d2305c50f9b501aa3e2589", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 12143, "upload_time": "2017-07-05T08:35:40", "url": "https://files.pythonhosted.org/packages/5e/9a/72008c6406c13e02b4eef10b71f8425af1df0e627231b4755f41f355d510/sphinx_autobuild-0.7.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f6c6b532b0b4d80b9748fa123785bddf", "sha256": "dee6bccd995cd9d699af002e6a35dde447fc6942ad7cefc82f28b366187684e8" }, "downloads": -1, "filename": "sphinx-autobuild-0.7.0.tar.gz", "has_sig": false, "md5_digest": "f6c6b532b0b4d80b9748fa123785bddf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10462527, "upload_time": "2017-07-05T08:35:33", "url": "https://files.pythonhosted.org/packages/42/29/087a37b30b38a41aee52e0d7a20370812d13ac7004466dc0541ec157ef10/sphinx-autobuild-0.7.0.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "b628b0c13a6dbbc9f11359ae13c9db53", "sha256": "e60aea0789cab02fa32ee63c7acae5ef41c06f1434d9fd0a74250a61f5994692" }, "downloads": -1, "filename": "sphinx_autobuild-0.7.1-py2-none-any.whl", "has_sig": false, "md5_digest": "b628b0c13a6dbbc9f11359ae13c9db53", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 12221, "upload_time": "2017-07-05T10:52:36", "url": "https://files.pythonhosted.org/packages/0c/ea/8639fd0b5726a8788adc058f08690acae913d18b5042a15a05042e240d37/sphinx_autobuild-0.7.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "00cc13230f39f5dd10db6bfa5e6f3f2f", "sha256": "66388f81884666e3821edbe05dd53a0cfb68093873d17320d0610de8db28c74e" }, "downloads": -1, "filename": "sphinx-autobuild-0.7.1.tar.gz", "has_sig": false, "md5_digest": "00cc13230f39f5dd10db6bfa5e6f3f2f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14861, "upload_time": "2017-07-05T10:52:34", "url": "https://files.pythonhosted.org/packages/41/21/d7407dd6258ca4f4dfe6b3edbd076702042c02bfcdd82b6f71cb58a359d2/sphinx-autobuild-0.7.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "b628b0c13a6dbbc9f11359ae13c9db53", "sha256": "e60aea0789cab02fa32ee63c7acae5ef41c06f1434d9fd0a74250a61f5994692" }, "downloads": -1, "filename": "sphinx_autobuild-0.7.1-py2-none-any.whl", "has_sig": false, "md5_digest": "b628b0c13a6dbbc9f11359ae13c9db53", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 12221, "upload_time": "2017-07-05T10:52:36", "url": "https://files.pythonhosted.org/packages/0c/ea/8639fd0b5726a8788adc058f08690acae913d18b5042a15a05042e240d37/sphinx_autobuild-0.7.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "00cc13230f39f5dd10db6bfa5e6f3f2f", "sha256": "66388f81884666e3821edbe05dd53a0cfb68093873d17320d0610de8db28c74e" }, "downloads": -1, "filename": "sphinx-autobuild-0.7.1.tar.gz", "has_sig": false, "md5_digest": "00cc13230f39f5dd10db6bfa5e6f3f2f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14861, "upload_time": "2017-07-05T10:52:34", "url": "https://files.pythonhosted.org/packages/41/21/d7407dd6258ca4f4dfe6b3edbd076702042c02bfcdd82b6f71cb58a359d2/sphinx-autobuild-0.7.1.tar.gz" } ] }