{ "info": { "author": "Marius Gedminas", "author_email": "marius@gedmin.as", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Intended Audience :: Developers", "Intended Audience :: End Users/Desktop", "License :: OSI Approved :: GNU General Public License (GPL)", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Documentation", "Topic :: Internet :: WWW/HTTP :: Dynamic Content", "Topic :: Internet :: WWW/HTTP :: HTTP Servers", "Topic :: Software Development :: Documentation", "Topic :: Text Processing :: Markup" ], "description": "========\nrestview\n========\n\n|buildstatus|_ |appveyor|_ |coverage|_\n\nA viewer for ReStructuredText documents that renders them on the fly.\n\nPass the name of a ReStructuredText document to ``restview``, and it will\nlaunch a web server on localhost:random-port and open a web browser.\nEvery time you reload the page, restview will reload the document from\ndisk and render it. This is very convenient for previewing a document\nwhile you're editing it.\n\nYou can also pass the name of a directory, and restview will recursively\nlook for files that end in .txt or .rst and present you with a list.\n\nFinally, you can make sure your Python package has valid ReStructuredText\nin the long_description field by using ::\n\n restview --long-description\n\n\nSynopsis\n========\n\nUsage: ``restview [options] filename-or-directory [...]``\n\n-h, --help show this help message and exit\n--version show program's version number and exit\n-l PORT, --listen=PORT\n listen on a given port (or interface:port, e.g.\n \\*:8080) [default: random port on localhost]\n--allowed-hosts HOSTS\n allowed values for the Host header (default: localhost\n only, unless you specify -l \\*:port, in which case any\n Host: is accepted by default)\n-b, --browser open a web browser [default: only if -l was not\n specified]\n-B, --no-browser don't open a web browser\n-e COMMAND, --execute=COMMAND\n run a command to produce ReStructuredText on stdout\n-w FILENAME, --watch=FILENAME\n reload the page when a file changes (use with\n --execute); can be specified multiple times\n--long-description run \"python setup.py --long-description\" to produce\n ReStructuredText; also enables --pypi-strict and watches\n the usual long description sources (setup.py, README.rst,\n CHANGES.rst)\n--css=URL-or-FILENAME\n use the specified stylesheet; can be specified multiple\n times [default: html4css1.css,restview.css]\n--report-level REPORT_LEVEL\n set the \"report_level\" option of docutils; restview\n will report system messages at or above this level\n (1=info, 2=warnings, 3=errors, 4=severe)\n--halt-level HALT_LEVEL\n set the \"halt_level\" option of docutils; restview will\n stop processing the document when a system message at\n or above this level (1=info, 2=warnings, 3=errors,\n 4=severe) is logged\n--strict halt at the slightest problem; equivalent to --halt-\n level=2\n--pypi-strict enable additional restrictions that PyPI performs\n\n\nInstallation\n============\n\nOn .deb based systems (e.g. Ubuntu) ::\n\n sudo apt-get install python-pip\n sudo pip install restview\n\nOn .rpm based systems (e.g. Fedora) ::\n\n su\n yum install python-pip\n pip install restview\n\n\n.. |buildstatus| image:: https://api.travis-ci.org/mgedmin/restview.svg?branch=master\n.. _buildstatus: https://travis-ci.org/mgedmin/restview\n\n.. |appveyor| image:: https://ci.appveyor.com/api/projects/status/github/mgedmin/restview?branch=master&svg=true\n.. _appveyor: https://ci.appveyor.com/project/mgedmin/restview\n\n.. |coverage| image:: https://coveralls.io/repos/mgedmin/restview/badge.svg?branch=master\n.. _coverage: https://coveralls.io/r/mgedmin/restview\n\n\nChangelog\n=========\n\n2.9.2 (2019-04-23)\n------------------\n\n- Claim Python 3.7 support.\n\n- Drop Python 3.4 support.\n\n\n2.9.1 (2018-05-18)\n------------------\n\n- Ignore stderr from external commands that successfully produce stdout\n (like warnings printed by setup.py --long-description).\n Fixes `#55 `_.\n\n- Cope with readme_renderer.clean.clean() returning None on failure.\n\n\n2.9.0 (2018-05-03)\n------------------\n\n- Added ``__main__.py`` module to allow package to be executable with\n ``python -m restview``. - SimplyKnownAsG\n\n\n2.8.1 (2018-01-28)\n------------------\n\n- Protect against DNS rebinding attacks. See `#51\n `_.\n\n\n2.8.0 (2017-12-07)\n------------------\n\n- Claim Python 3.6 support.\n\n- Drop Python 3.3 support.\n\n- New option ``--report-level`` that defaults to 2 (previously this was\n hardcoded to 0). See `#49 `_.\n\n- Relax ``--strict`` to mean ``--halt-level=2`` (previously it meant\n ``--halt-level=1``). See `#49`_.\n\n\n2.7.0 (2016-09-15)\n------------------\n\n- New option ``--halt-level`` (`#44\n `_), contributed by Kunshan\n Wang.\n\n- New option ``-B``/``--no-browser`` (`#46\n `_).\n\n\n2.6.1 (2016-01-05)\n------------------\n\n- The ``readme`` dependency was renamed ``readme_renderer`` (fixes\n `#30 `_,\n `#41 `_).\n\n\n2.6.0 (2015-12-31)\n------------------\n\n- Implement ``restview --version`` (`#37\n `_).\n\n- Highlight the bad source line when rendering fails completely due to an\n error, e.g. in ``--strict`` mode (`#40\n `_).\n\n\n2.5.2 (2015-11-20)\n------------------\n\n- Use the right content type for SVG images (`#36\n `_).\n\n\n2.5.1 (2015-11-17)\n------------------\n\n- Support SVG images (`#36 `_).\n\n\n2.5.0 (2015-10-27)\n------------------\n\n- Fix HTML cleaning code in --pypi-strict mode (`#33\n `_).\n\n- Drop Python 2.6 support.\n\n- Claim Python 3.5 support.\n\n\n2.4.0 (2015-05-27)\n------------------\n\n- Drop Python 3.2 support.\n\n- Stop dynamic computation of install_requires in setup.py, this doesn't work\n well in the presence of the pip 7 wheel cache.\n\n\n2.3.0 (2015-01-26)\n------------------\n\n- Follow PyPI's lead and rely on `readme\n `__ for rendering in --pypi-strict mode.\n Fixes https://github.com/mgedmin/restview/issues/28.\n\n\n2.2.1 (2015-01-06)\n------------------\n\n- Fix style loss on autoreloading.\n Fixes https://github.com/mgedmin/restview/issues/25.\n\n\n2.2.0 (2014-12-10)\n------------------\n\n- Reload the page using AJAX to preserve scroll position.\n Fixes https://github.com/mgedmin/restview/issues/22.\n\n- Use the default docutils CSS instead of replacing it wholesale.\n Drop some of our styles, including:\n\n - left-aligned document title\n - sans-serif font override for document text\n - fully-justified text\n - bold terms in definition lists\n - custom table rendering with just horizontal rules (issue #23)\n\n Keep other custom style overrides:\n\n - custom footnote rendering (I really like it)\n - white background for code blocks\n - prettier system error messages\n - unified alignment of code blocks, block quotes and doctests\n\n Fixes https://github.com/mgedmin/restview/issues/23.\n\n- The ``--css`` option can be provided multiple times and can refer to\n standard stylesheets (the ones provided by docutils as well as the ones\n provided by restview) without specifying the full path.\n\n For example, if you want to go back to the style used by restview before\n version 2.2.0, you can use ::\n\n restview --css oldrestview.css ...\n\n If you want your own custom style on top of the standard docutils\n styles, use ::\n\n restview --css html4css1.css --css ./path/to/my.css\n\n And if you want to completely override the stylesheet, use ::\n\n restview --css ./path/to/my.css\n\n- New option: ``--watch``. Reloads pages when a given file changes. Mostly\n useful with ``-e``, but can also come in handy when you're developing your\n CSS. Can be specified multiple times, e.g. ::\n\n restview --css my.css -e 'cat one.rst two.rst' -w my.css -w one.rst -w two.rst\n\n- ``restview --long-description`` watches setup.py, README.rst and CHANGES.rst\n for updates and reloads the description automatically.\n\n- Error pages will also reload automatically if the source file changes.\n\n- Error pages in strict mode will mention the filename instead of ````.\n\n- File watching now pays attention to fractional seconds.\n\n\n2.1.1 (2014-09-28)\n------------------\n\n- Fix TypeError on Python 3 when reporting ReST errors (typically in strict\n mode).\n Fixes https://github.com/mgedmin/restview/issues/21.\n\n- Fix TypeError on Python 3 when using ``--pypi-strict``.\n\n\n2.1.0 (2014-09-02)\n------------------\n\n- ``--pypi-strict`` mode to catch additional problems that break rendering\n on the Python Packaging Index. ``--long-description`` enables this\n automatically.\n Fixes https://github.com/mgedmin/restview/issues/18.\n\n- Added installation section to the README.\n Fixes https://github.com/mgedmin/restview/issues/19.\n\n\n2.0.5 (2014-06-09)\n------------------\n\n- Avoid Unicode errors on Python 3 when the ReStructuredText file is in an\n encoding that doesn't match the locale.\n Fixes https://github.com/mgedmin/restview/issues/16.\n\n- Avoid Unicode errors on Python 3when there are filenames in an encoding that\n doesn't match the locale.\n Fixes https://github.com/mgedmin/restview/issues/17.\n\n\n2.0.4 (2014-04-28)\n------------------\n\n- Show a clear error when external command fails.\n Fixes https://github.com/mgedmin/restview/issues/14.\n\n- Stop mangling document titles.\n Fixes https://github.com/mgedmin/restview/issues/15.\n\n\n2.0.3 (2014-02-01)\n------------------\n\n- Distinguish document title from section titles with a larger font.\n Fixes https://github.com/mgedmin/restview/issues/12.\n\n- Minor tweaks and fixes to make restview work better on Windows (e.g. all\n tests now pass).\n\n\n2.0.2 (2013-10-02)\n------------------\n\n- Suppress errors when file disappears while restview is polling for changes.\n Fixes https://github.com/mgedmin/restview/issues/11.\n\n- Added a favicon. Fixes https://github.com/mgedmin/restview/issues/8.\n\n\n2.0.1 (2013-05-01)\n------------------\n\n- Always require Pygments. Fixes https://github.com/mgedmin/restview/issues/9.\n\n\n2.0 (2013-04-04)\n----------------\n\n- Python 3 support (LP#1093098). Patch by Steven Myint (git@stevenmyint.com).\n\n- Moved to Github.\n\n- 100% test coverage.\n\n- Automatically reload the web page when the source file changes (LP#965746).\n Patch by speq (sp@bsdx.org), with modifications by Eric Knibbe and Marius\n Gedminas.\n\n- New option: restview --long-description (shows the output of python setup.py\n --long-description).\n\n- New option: restview --strict. Patch by Steven Myint (git@stevenmyint.com).\n\n- Improve auto-linkification of local file names:\n\n * allow subdirectories\n * recognize .rst extensions\n\n- Many improvements by Eric Knibbe:\n\n * ``restview dirname`` now ignores hidden subdirectories.\n * files in directory listings are sorted case-insensitively.\n * allow serving gif and jpg images.\n * CSS rules for rubric, sidebars, and many other things.\n * syntax highlighting for code blocks.\n * improved HTTP error messages.\n * HTTP headers to prevent browser caching of dynamic content.\n\n\n1.2.2 (2010-09-14)\n------------------\n\n- setup.py no longer requires docutils (LP#637423).\n\n\n1.2.1 (2010-09-12)\n------------------\n\n- Handle spaces and other special characters in URLs (LP#616335).\n\n- Don't linkify filenames inside external references (LP#634827).\n\n\n1.2 (2010-08-06)\n----------------\n\n- \"SEVERE\" docutils errors now display a message and unformatted file in\n the browser, instead of a traceback on the console.\n- New command-line option, -e COMMAND.\n- Added styles for admonitions; many other important styles are still missing.\n\n\n1.1.3 (2009-10-25)\n------------------\n\n- Spell 'extras_require' correctly in setup.py (LP#459840).\n- Add a MANIFEST.in for complete source distributions (LP#459845).\n\n\n1.1.2 (2009-10-14)\n------------------\n\n- Fix for 'localhost' name resolution error on Mac OS X.\n\n\n1.1.1 (2009-07-13)\n------------------\n\n- Launches the web server in the background.\n\n\n1.1.0 (2008-08-26)\n------------------\n\n- Accepts any number of files and directories on the command line.\n\n\n1.0.1 (2008-07-26)\n------------------\n\n- New option: --css. Accepts a filename or an HTTP/HTTPS URL.\n\n\n1.0.0 (2008-07-26)\n------------------\n\n- Bumped version number to reflect the stability.\n- Minor CSS tweaks.\n\n\n0.0.5 (2007-09-29)\n------------------\n\n- Create links to other local files referenced by name.\n- Use pygments (if available) to syntax-highlight doctest blocks.\n- Handle JPEG images.\n\n\n0.0.4 (2007-09-28)\n------------------\n\n- Remove the unstable Gtk+ version.\n\n\n0.0.3 (2007-09-28)\n------------------\n\n- Use setuptools for packaging.\n\n\n0.0.2 (2007-01-21)\n------------------\n\n- Browser-based version.\n- Command line options -l, -b (thanks to Charlie Shepherd).\n- CSS tweaks.\n- Unicode bugfix.\n- Can browse directory trees.\n- Can serve images.\n\n\n0.0.1 (2005-12-06)\n------------------\n\n- PyGtk+ version with GtkMozEmbed. Not very stable.\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://mg.pov.lt/restview/", "keywords": "rst restructuredtext preview", "license": "GPL", "maintainer": "", "maintainer_email": "", "name": "restview", "package_url": "https://pypi.org/project/restview/", "platform": "", "project_url": "https://pypi.org/project/restview/", "project_urls": { "Homepage": "https://mg.pov.lt/restview/", "Source": "https://github.com/mgedmin/restview" }, "release_url": "https://pypi.org/project/restview/2.9.2/", "requires_dist": [ "docutils", "pygments", "readme-renderer" ], "requires_python": "", "summary": "ReStructuredText viewer", "version": "2.9.2" }, "last_serial": 5178637, "releases": { "0.0.3": [ { "comment_text": "", "digests": { "md5": "ef51cc9cf311fac10f28c0e3c1deb761", "sha256": "5698795b7e04c87d975b7176e5c135296de71d170c72aa62c93e4aff7770b913" }, "downloads": -1, "filename": "restview-0.0.3.tar.gz", "has_sig": false, "md5_digest": "ef51cc9cf311fac10f28c0e3c1deb761", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6586, "upload_time": "2007-09-28T16:24:51", "url": "https://files.pythonhosted.org/packages/1e/19/3a3e72946de2500efcb860faaf8d38ba555a1cb4413236ab412cc47874d7/restview-0.0.3.tar.gz" } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "3b0a4d351d9d3b535d7b64c4cdda23d3", "sha256": "dfa15ec68a118fe994fa3ed5ce74bf55e30b2346245f57133eb9f23c8157f7df" }, "downloads": -1, "filename": "restview-0.0.4.tar.gz", "has_sig": false, "md5_digest": "3b0a4d351d9d3b535d7b64c4cdda23d3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5506, "upload_time": "2007-09-28T16:32:07", "url": "https://files.pythonhosted.org/packages/b8/0b/cc23e435a2de56396cdde380551c48d51dc0c1fffd264daa5fa84afe9edf/restview-0.0.4.tar.gz" } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "3c08b844e43d977c62e36d219bdf9c25", "sha256": "c1188b51eaf80f9cefe49cd72b67ab7d13f9da4e99721e0cc202d709018e1c1e" }, "downloads": -1, "filename": "restview-0.0.5.tar.gz", "has_sig": false, "md5_digest": "3c08b844e43d977c62e36d219bdf9c25", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5707, "upload_time": "2007-09-28T22:57:16", "url": "https://files.pythonhosted.org/packages/f6/66/c7d92fd5de6b196435976a8c54484220fa735374930b5f3472478d4b107a/restview-0.0.5.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "b4dc84494fe127a6c82433d18a111cd1", "sha256": "9a2ab5402343b456eac7d4550a7f73472e9bce1626e3a807ffc299c0fbee536f" }, "downloads": -1, "filename": "restview-1.0.0.tar.gz", "has_sig": false, "md5_digest": "b4dc84494fe127a6c82433d18a111cd1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5766, "upload_time": "2008-07-25T23:37:43", "url": "https://files.pythonhosted.org/packages/b6/85/df9629f0894b46bac64ff6f748749bda3539e90768b01ee846252bfcd347/restview-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "0715aec3a2cf54421a96514d2fab7441", "sha256": "b4cd5d22daca39b1e6dae368ca3a56352e21df21640a633ea4ea4e125b3b8fc3" }, "downloads": -1, "filename": "restview-1.0.1.tar.gz", "has_sig": false, "md5_digest": "0715aec3a2cf54421a96514d2fab7441", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6466, "upload_time": "2008-07-26T11:23:32", "url": "https://files.pythonhosted.org/packages/b2/63/9483f6e8436096f721aa3fc45dcbc5086b57b0923876702403733edf0460/restview-1.0.1.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "4f3f3082c1302151599136e021b926d8", "sha256": "bc3067039405e1432bc546843cecc3acd21b6e79d4eb01ba1b54ef8ce0185da2" }, "downloads": -1, "filename": "restview-1.1.0.tar.gz", "has_sig": false, "md5_digest": "4f3f3082c1302151599136e021b926d8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6728, "upload_time": "2008-08-27T00:07:14", "url": "https://files.pythonhosted.org/packages/db/7e/561663a7682a68254d5bedb8fc722667075979700466ff5183182d98157d/restview-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "2c4ebee4e02f89b4968401d9c4e6230a", "sha256": "c75cdb3ee672b8d3e7576246ab0090e3101a86d7dd80ca65f3d268bfd6ee985a" }, "downloads": -1, "filename": "restview-1.1.1.tar.gz", "has_sig": false, "md5_digest": "2c4ebee4e02f89b4968401d9c4e6230a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6892, "upload_time": "2009-07-13T13:57:27", "url": "https://files.pythonhosted.org/packages/b6/51/f582d187d4d7c693c9ba898df31edfd7a8b6f38ef71432b7178a7227b86f/restview-1.1.1.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "ee24f1f7e544e1c7019a17a3e2b5aa32", "sha256": "bd1b6163e4d615c6ea24849be781c8c485ba90022c09c52c3cf3e85ecb773075" }, "downloads": -1, "filename": "restview-1.1.2.tar.gz", "has_sig": false, "md5_digest": "ee24f1f7e544e1c7019a17a3e2b5aa32", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5846, "upload_time": "2009-10-14T17:19:41", "url": "https://files.pythonhosted.org/packages/f7/36/3840977725e7625eb5f604190982d97e3a351605e887ba83a13d4df946fe/restview-1.1.2.tar.gz" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "dbb716d11ac58f398c33269d1ac692d5", "sha256": "de60ba194cd48091c6ab16c9a0f6c375caa5ae3bc2785460d256efced66efde9" }, "downloads": -1, "filename": "restview-1.1.3.tar.gz", "has_sig": false, "md5_digest": "dbb716d11ac58f398c33269d1ac692d5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7181, "upload_time": "2009-10-25T12:39:37", "url": "https://files.pythonhosted.org/packages/a4/13/d8c1354348375329d6a8701d193f4a376358c4bad8ab73ad8a37561d4dbb/restview-1.1.3.tar.gz" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "cd50b392aa35808ba17af0ceac93e49b", "sha256": "be28b13fb31af5a27d8a45ce52d796d0de7e160479712a5cb81e46628610a453" }, "downloads": -1, "filename": "restview-1.2.tar.gz", "has_sig": false, "md5_digest": "cd50b392aa35808ba17af0ceac93e49b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9296, "upload_time": "2010-08-06T04:26:01", "url": "https://files.pythonhosted.org/packages/7a/ca/c1e49bc57cbce7698060f209a38acc841ec151067afce1f180c049db85a2/restview-1.2.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "8e1ee4a096874a9aa8b5266abc403cc9", "sha256": "bf02832f5d09efb8dd033169b668e5e6550524076aa4eedc641c29d333ad7505" }, "downloads": -1, "filename": "restview-1.2.1.tar.gz", "has_sig": false, "md5_digest": "8e1ee4a096874a9aa8b5266abc403cc9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9581, "upload_time": "2010-09-12T00:31:06", "url": "https://files.pythonhosted.org/packages/c2/62/5ab731c79944eaf1ae6d646d45f26c895ed9e1806270f479b9607695fe5d/restview-1.2.1.tar.gz" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "ab75ba37005f8b917a0a33eca58dfe15", "sha256": "8d4592b5f3c462b7ef0287d185e72fc90df543aff852b14a600f52b693a1e6a8" }, "downloads": -1, "filename": "restview-1.2.2.tar.gz", "has_sig": false, "md5_digest": "ab75ba37005f8b917a0a33eca58dfe15", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9667, "upload_time": "2010-09-14T11:42:24", "url": "https://files.pythonhosted.org/packages/1e/f1/f13c2d0b88bc8a4685e5916e1f1c1402622b16c60bafa90bdacc124c537e/restview-1.2.2.tar.gz" } ], "2.0": [ { "comment_text": "", "digests": { "md5": "59feeb4e082c2500d5213a34aaf3f3f7", "sha256": "f36015be20dc8f74424e695587e37b05004780844fdc4b8001de6725c11f192c" }, "downloads": -1, "filename": "restview-2.0.tar.gz", "has_sig": false, "md5_digest": "59feeb4e082c2500d5213a34aaf3f3f7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19328, "upload_time": "2013-04-04T11:39:09", "url": "https://files.pythonhosted.org/packages/07/10/0cfff7fc3086d7232d4acf65bc0341c4f197d6e11c82c64a4ae3be12dc21/restview-2.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "fc07e4c477107ace286a3b36ea5c66f5", "sha256": "62eaed20e683854392ea8f63b4931d4434ae5efdefd381aeb70dbf52e3399f6d" }, "downloads": -1, "filename": "restview-2.0.1.tar.gz", "has_sig": false, "md5_digest": "fc07e4c477107ace286a3b36ea5c66f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19531, "upload_time": "2013-05-01T07:37:04", "url": "https://files.pythonhosted.org/packages/46/ae/182670e62226c4be10a6bac4d3769655d8b35022306d3cdc3931388c4ac9/restview-2.0.1.tar.gz" } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "2600c1e0863bf82a2e682528ea3031a2", "sha256": "e8114ad7a19a7da8ff53aca996f6ba286f08bcc6551007eff1caf620bfe52c7a" }, "downloads": -1, "filename": "restview-2.0.2.tar.gz", "has_sig": false, "md5_digest": "2600c1e0863bf82a2e682528ea3031a2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21019, "upload_time": "2013-10-02T17:13:34", "url": "https://files.pythonhosted.org/packages/3f/d4/5936a3e7f26e30aedae5f0609dcd12341de75586dbc1a9bc0bba8d2f1b87/restview-2.0.2.tar.gz" } ], "2.0.3": [ { "comment_text": "", "digests": { "md5": "f60f9ae5a70e6d627d2b298b9dbf05a2", "sha256": "91defa89dac2106c77e4e465acc17627d3d6c303a28e75b224c37fbf188fc942" }, "downloads": -1, "filename": "restview-2.0.3-py27-none-any.whl", "has_sig": false, "md5_digest": "f60f9ae5a70e6d627d2b298b9dbf05a2", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 22169, "upload_time": "2014-02-01T08:55:07", "url": "https://files.pythonhosted.org/packages/f1/a0/6129fa1fad622748adb4eb8d8d5fb3493123f673c107197b08b4529d67cf/restview-2.0.3-py27-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9a96036101cf4d7f21de348ee7c6b871", "sha256": "779b94a79a3f5dfddd09f8913d6d950ce70a38cb1d29e78fc1bb9f6fe1112a8a" }, "downloads": -1, "filename": "restview-2.0.3.tar.gz", "has_sig": false, "md5_digest": "9a96036101cf4d7f21de348ee7c6b871", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21444, "upload_time": "2014-02-01T08:54:59", "url": "https://files.pythonhosted.org/packages/82/fc/0fb5798a5bb26d198cec7427128e049b04352660fc521a7ea15a2fa95d69/restview-2.0.3.tar.gz" } ], "2.0.4": [ { "comment_text": "", "digests": { "md5": "41c02217fc6c506733c144ab03606109", "sha256": "3a3f806156ccf399615b3c3db31fbbf90eb32a8a084f74f9084dd6b891f88bce" }, "downloads": -1, "filename": "restview-2.0.4.tar.gz", "has_sig": false, "md5_digest": "41c02217fc6c506733c144ab03606109", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21906, "upload_time": "2014-04-28T12:34:35", "url": "https://files.pythonhosted.org/packages/38/7a/a227856382d2ea0f8fc109eec72d1e40003af1cb34ef07f8a9970e7598c8/restview-2.0.4.tar.gz" } ], "2.0.5": [ { "comment_text": "", "digests": { "md5": "08b92eae3b36f92e71649c409b99c227", "sha256": "d706031e0d0cea6090f1a952fabfbd52a2f77f8696b7e45e80ad541bf82d1612" }, "downloads": -1, "filename": "restview-2.0.5.tar.gz", "has_sig": false, "md5_digest": "08b92eae3b36f92e71649c409b99c227", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22099, "upload_time": "2014-06-09T07:36:06", "url": "https://files.pythonhosted.org/packages/2d/8f/c20969895b59e5c6b389fb0a2fb33fd202c9c22871369f0ebb86f721fd50/restview-2.0.5.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "0c850ddd965a7ed448deec20d8934e97", "sha256": "b4818f83ca86c9fef305c01458a41249264b7871a486a94dc1004779789ba152" }, "downloads": -1, "filename": "restview-2.1.0.tar.gz", "has_sig": false, "md5_digest": "0c850ddd965a7ed448deec20d8934e97", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24699, "upload_time": "2014-09-02T11:02:23", "url": "https://files.pythonhosted.org/packages/30/36/b231f3b5f698a0f0d710155e8455d290fe8756179655deee48a1a82c4fb7/restview-2.1.0.tar.gz" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "2297d82666f312b66eb3740f73b1bba6", "sha256": "1bf9e845078d05e7cda31bba6fed24a74ffe46f4f466b7b28c39650801724c1f" }, "downloads": -1, "filename": "restview-2.1.1.tar.gz", "has_sig": false, "md5_digest": "2297d82666f312b66eb3740f73b1bba6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24948, "upload_time": "2014-09-28T18:38:13", "url": "https://files.pythonhosted.org/packages/ea/6a/a98695c5ee640fc35e03554be6699ad130fc70009a12cd113821111f69d8/restview-2.1.1.tar.gz" } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "aa46e7efa16ffbdc57c8fc1dc09d8dca", "sha256": "1dbb06eaccf6ad4703e1483f3faac583f176b1df34c2f4da488e369c8dcad404" }, "downloads": -1, "filename": "restview-2.2.0.tar.gz", "has_sig": false, "md5_digest": "aa46e7efa16ffbdc57c8fc1dc09d8dca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28910, "upload_time": "2014-12-10T17:06:23", "url": "https://files.pythonhosted.org/packages/78/50/ea1dcd8d2161be868045013a7049895351be3561b432e5f807be27ce0ea7/restview-2.2.0.tar.gz" } ], "2.2.1": [ { "comment_text": "", "digests": { "md5": "d9895236b03dd3894e784409cbff4abc", "sha256": "da182e03b19850abd1b66bc55addded892acf69602d5fc8eb162de4592e9181c" }, "downloads": -1, "filename": "restview-2.2.1.tar.gz", "has_sig": false, "md5_digest": "d9895236b03dd3894e784409cbff4abc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29162, "upload_time": "2015-01-06T18:38:23", "url": "https://files.pythonhosted.org/packages/06/22/9faaa00dd6016ad45bc6fb6823f2de027e6252060fee494315e458754c0d/restview-2.2.1.tar.gz" } ], "2.3.0": [ { "comment_text": "", "digests": { "md5": "b77ca97383a3e7c07f1d1226b50ba882", "sha256": "3127fb13b78bdc7e06f85831bd2d64db593dd2154068d45fccac14b064573b54" }, "downloads": -1, "filename": "restview-2.3.0.tar.gz", "has_sig": false, "md5_digest": "b77ca97383a3e7c07f1d1226b50ba882", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27315, "upload_time": "2015-01-26T08:02:32", "url": "https://files.pythonhosted.org/packages/99/b7/7c16d6cfd26d4a516f7311b67e54fecbe302f427b818cddd2276e5c99949/restview-2.3.0.tar.gz" } ], "2.4.0": [ { "comment_text": "", "digests": { "md5": "9eb25a92cde334e58bee825b42f325d4", "sha256": "89900686a7a51c74968e70e123ddcb1792c9b1808ab663e79f1898d0f0b93420" }, "downloads": -1, "filename": "restview-2.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9eb25a92cde334e58bee825b42f325d4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 26956, "upload_time": "2015-05-27T06:08:35", "url": "https://files.pythonhosted.org/packages/57/e4/2d5075fab14ce9607cccac9e3c484c2fce3656ee2a5edfc9d08b0ee27482/restview-2.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5a1b5d90741097aaab8b0f168c3ba216", "sha256": "52eed1a9ce2bc31d6b4269c8c4ba8c5c1cf7c989b465e9a62bfa6357fc0da965" }, "downloads": -1, "filename": "restview-2.4.0.tar.gz", "has_sig": false, "md5_digest": "5a1b5d90741097aaab8b0f168c3ba216", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27644, "upload_time": "2015-05-27T06:08:40", "url": "https://files.pythonhosted.org/packages/3c/b1/23d454b847e0650663d7621966d91421eed5364db87f9b79ce0957f89de5/restview-2.4.0.tar.gz" } ], "2.5.0": [ { "comment_text": "", "digests": { "md5": "686468299d6301a284ad33ce15d409b4", "sha256": "6dec2f06f1d11ff10373dd0d912e116f821b279c75ee7b22a6bd02e3024bb780" }, "downloads": -1, "filename": "restview-2.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "686468299d6301a284ad33ce15d409b4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 27156, "upload_time": "2015-10-27T14:35:56", "url": "https://files.pythonhosted.org/packages/16/f2/803f7f11933958279b969b12c1166c871a6764e5eabdd72edbcb76750c48/restview-2.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d67375167fc754c0153f9d5ed4fd66b7", "sha256": "abfd251ed05364f1d569a58903ec385e9842b6d047f15d598de6f36d60c5b1a1" }, "downloads": -1, "filename": "restview-2.5.0.tar.gz", "has_sig": false, "md5_digest": "d67375167fc754c0153f9d5ed4fd66b7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27991, "upload_time": "2015-10-27T14:36:01", "url": "https://files.pythonhosted.org/packages/a3/a3/2ffb7fc4d483a51de1f133a2bdda669be692c4eb813359309215968e7ce3/restview-2.5.0.tar.gz" } ], "2.5.1": [ { "comment_text": "", "digests": { "md5": "43ae806495ad79571ee15bdf9da53166", "sha256": "0f31d4b331a7a43a38211d34fd5dab0232c4a1060e5e9840a49163bf50874ff6" }, "downloads": -1, "filename": "restview-2.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "43ae806495ad79571ee15bdf9da53166", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 27239, "upload_time": "2015-11-17T07:05:40", "url": "https://files.pythonhosted.org/packages/17/6c/ff156b0a3e7392474fcb1ae984150548d4826b71c489f864c674e2083760/restview-2.5.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f7e086e27a9b73da641e7d13c6523ab0", "sha256": "827d14c12212d42a5a4777ae77fe287cbbda1c6a2bcb8b1b1531507eb25b0347" }, "downloads": -1, "filename": "restview-2.5.1.tar.gz", "has_sig": false, "md5_digest": "f7e086e27a9b73da641e7d13c6523ab0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28085, "upload_time": "2015-11-17T07:05:50", "url": "https://files.pythonhosted.org/packages/36/fb/2e8b322721a87a779b15256a0f2b13ae90b646493f492c8a3806e19fe4e3/restview-2.5.1.tar.gz" } ], "2.5.2": [ { "comment_text": "", "digests": { "md5": "3bc1abe731b51e4258be01e5382676ad", "sha256": "ce31ec148112ecc5f202919546c5ce1551d3045740a604d74fd4f2942a9de564" }, "downloads": -1, "filename": "restview-2.5.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3bc1abe731b51e4258be01e5382676ad", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 27298, "upload_time": "2015-11-20T06:49:05", "url": "https://files.pythonhosted.org/packages/35/7f/01eef4b67d9645564d029e74013a46ea70bc8873f5997ccf5394c608cdbd/restview-2.5.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "06d1feacdc4e378b5fa97ab1221cf419", "sha256": "a5ad94898b9de765b9840ea46e9e99909c21c2f851d513e253d4f808a9adad3e" }, "downloads": -1, "filename": "restview-2.5.2.tar.gz", "has_sig": false, "md5_digest": "06d1feacdc4e378b5fa97ab1221cf419", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28230, "upload_time": "2015-11-20T06:49:10", "url": "https://files.pythonhosted.org/packages/73/e9/5d09f32d45cac4a8cf3d8b478d120cc0d855f513410876b4aa2c57321f44/restview-2.5.2.tar.gz" } ], "2.6.0": [ { "comment_text": "", "digests": { "md5": "e01997f47e6187597454040508873805", "sha256": "3fe47346a6966ec698fe3ba0662fd02d433f3c8f161c8d77f07bb4c05430a84b" }, "downloads": -1, "filename": "restview-2.6.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e01997f47e6187597454040508873805", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 28525, "upload_time": "2015-12-31T08:09:52", "url": "https://files.pythonhosted.org/packages/27/4c/a71f0343a0e261dc3a34a2fa9c86a6875071e0c73cb1853d27be2b2180a9/restview-2.6.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f2a1ff474a2178c8dccdc8a768da8fd0", "sha256": "01230cdcecd4a7c4ee6dff760cbf09fbeb6fbf902735faf580048b8689401713" }, "downloads": -1, "filename": "restview-2.6.0.tar.gz", "has_sig": false, "md5_digest": "f2a1ff474a2178c8dccdc8a768da8fd0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29654, "upload_time": "2015-12-31T08:10:22", "url": "https://files.pythonhosted.org/packages/8b/c6/42a716f22ba6ac364d21ddc03abe3a71e919ef26155774d55cfb17baec4f/restview-2.6.0.tar.gz" } ], "2.6.1": [ { "comment_text": "", "digests": { "md5": "cad40533a5dbc8f46d9213a7b54e8806", "sha256": "3c64db4b287630ea32017fd785ea2e554b66f1c97705b497fe5f08ac2a0d5a1f" }, "downloads": -1, "filename": "restview-2.6.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cad40533a5dbc8f46d9213a7b54e8806", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 28673, "upload_time": "2016-01-05T06:14:26", "url": "https://files.pythonhosted.org/packages/f4/10/8cdcb3fb9c7ceaf331e26eb46d8c95e7d373bfde9a155f423bde9b8f67ce/restview-2.6.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ac8b70e15b8f1732d1733d674813666b", "sha256": "14d261ee0edf30e0ebc1eb320428ef4898e97422b00337863556966b851fb5af" }, "downloads": -1, "filename": "restview-2.6.1.tar.gz", "has_sig": false, "md5_digest": "ac8b70e15b8f1732d1733d674813666b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29797, "upload_time": "2016-01-05T06:14:57", "url": "https://files.pythonhosted.org/packages/e9/01/7e42d25d24d85533ecc6f6d1622b7b7e8368872a820c4289852fdb2483c1/restview-2.6.1.tar.gz" } ], "2.7.0": [ { "comment_text": "", "digests": { "md5": "69206b0957172b7c3cde101e244f4f78", "sha256": "10535557b8422530449952ebebae7a1e91b14e94ebe206094b53efe86d563551" }, "downloads": -1, "filename": "restview-2.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "69206b0957172b7c3cde101e244f4f78", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 29176, "upload_time": "2016-09-15T06:28:30", "url": "https://files.pythonhosted.org/packages/e0/63/d6a8758c2099cd9deebeeea457a642b681bd6f8441332dc22d8eb3c2b13b/restview-2.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "101e9434303b13125759400a2946a706", "sha256": "e7842100f3de179c68cfe7c2cf56c61509cd6068bc6dd58ab42c0ade5d5f97ec" }, "downloads": -1, "filename": "restview-2.7.0.tar.gz", "has_sig": false, "md5_digest": "101e9434303b13125759400a2946a706", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29448, "upload_time": "2016-09-15T06:28:32", "url": "https://files.pythonhosted.org/packages/9a/ca/8561e769a38a851ef9bcab88d85e8c5c7b93e81bef4403487527af23fc3f/restview-2.7.0.tar.gz" } ], "2.8.0": [ { "comment_text": "", "digests": { "md5": "f7c07dffb888a4ba78b6be83ea8c810b", "sha256": "72703908bc91836cb67a7fd28037bd1ddff8dd25685742c22b99a80e8fc139d5" }, "downloads": -1, "filename": "restview-2.8.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f7c07dffb888a4ba78b6be83ea8c810b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 29686, "upload_time": "2017-12-07T16:25:45", "url": "https://files.pythonhosted.org/packages/cb/61/a20e79a9a50a836f1cb9438c2c07e3ae94e42c353e47191a77ec36eb7ffb/restview-2.8.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "687e6dc0576062a30a9eda04b9b30b6f", "sha256": "5f6f1523228eab3269f59dd03ac560f7d370cd81df6fdbcb4914b5e6bd896a11" }, "downloads": -1, "filename": "restview-2.8.0.tar.gz", "has_sig": false, "md5_digest": "687e6dc0576062a30a9eda04b9b30b6f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44577, "upload_time": "2017-12-07T16:25:47", "url": "https://files.pythonhosted.org/packages/dd/15/569798ca153982fd8c607e841cfa4639c7afa94213fa382c27a2dc130c6c/restview-2.8.0.tar.gz" } ], "2.8.1": [ { "comment_text": "", "digests": { "md5": "d9daf981b66868058f04d11d2a7c15a7", "sha256": "1c0ae74d91e86ba20ddde4c445bbf4b1ca77bd545f88c690bb3e1c9d51e11055" }, "downloads": -1, "filename": "restview-2.8.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d9daf981b66868058f04d11d2a7c15a7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 30415, "upload_time": "2018-01-28T09:50:55", "url": "https://files.pythonhosted.org/packages/aa/7f/9f243c49299b6fc35605bfca48627b5967862822444936748f8b0e3b693d/restview-2.8.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "93538a645e57c719932218fe3dd34751", "sha256": "45320b4e52945d23b3f1aeacc7ff97a3b798204fe625f8b81ed5322326d5bcd1" }, "downloads": -1, "filename": "restview-2.8.1.tar.gz", "has_sig": false, "md5_digest": "93538a645e57c719932218fe3dd34751", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46103, "upload_time": "2018-01-28T09:50:57", "url": "https://files.pythonhosted.org/packages/a3/05/dcf645d4d176bb3229a8dd1bc449867a6f6af773a861f758b163d677c6eb/restview-2.8.1.tar.gz" } ], "2.9.0": [ { "comment_text": "", "digests": { "md5": "aafb02347263e0809d4fb7636ebbfea1", "sha256": "5348058d964b94f79e7f71f01a134861873f1b4c786ef463dec1ed0bb79e1ae3" }, "downloads": -1, "filename": "restview-2.9.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "aafb02347263e0809d4fb7636ebbfea1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 25036, "upload_time": "2018-05-03T07:54:22", "url": "https://files.pythonhosted.org/packages/f5/7b/a282c1143458695cd2578edfdd15fcd2c3b28ab8dfbd7e202ed3f9d4ed89/restview-2.9.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c4ebe125672f0f1698afc283c3d996bd", "sha256": "d33748440af00ba4434c13c095ccfbde6e3237c3bd661198cf74066c0c027e7a" }, "downloads": -1, "filename": "restview-2.9.0.tar.gz", "has_sig": false, "md5_digest": "c4ebe125672f0f1698afc283c3d996bd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46330, "upload_time": "2018-05-03T07:54:24", "url": "https://files.pythonhosted.org/packages/cc/6d/55fc55b828d8f3aa1d6ebf503e57031cb978a3d5d1cd82bb301a1336fcc8/restview-2.9.0.tar.gz" } ], "2.9.1": [ { "comment_text": "", "digests": { "md5": "431223b5c0cbfc451e09882f4425a5a1", "sha256": "6ac3a4a931e9c772812e952be96ca90d5006d01acad1e60a5ef77ce11dd4678c" }, "downloads": -1, "filename": "restview-2.9.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "431223b5c0cbfc451e09882f4425a5a1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 25388, "upload_time": "2018-05-18T07:39:42", "url": "https://files.pythonhosted.org/packages/03/8f/1aacd95066379a704ffc38adc12243e6ae66303964f8aed4feeb5b5974ec/restview-2.9.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "164fbe58d5616ffefa082770ab9d6e7f", "sha256": "de87c84f19526bd4a76505f6d40b51b7bb03ca43b6067c93f82f1c7237ac9e84" }, "downloads": -1, "filename": "restview-2.9.1.tar.gz", "has_sig": false, "md5_digest": "164fbe58d5616ffefa082770ab9d6e7f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46817, "upload_time": "2018-05-18T07:39:43", "url": "https://files.pythonhosted.org/packages/f7/8d/a85b6ccb4e2bce5541f7c08455dd958662c8f8f9da3ec52a94d524e6ef5b/restview-2.9.1.tar.gz" } ], "2.9.2": [ { "comment_text": "", "digests": { "md5": "e8cad0cc782547f199b8daebfb1ffb1a", "sha256": "47929bae12e7cf39cbb93a5a5a16f970941e39301c05cbb4ea398df8c113b1e2" }, "downloads": -1, "filename": "restview-2.9.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e8cad0cc782547f199b8daebfb1ffb1a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 37845, "upload_time": "2019-04-23T18:09:00", "url": "https://files.pythonhosted.org/packages/2d/ae/6b45c750edad3ab3c01e1966d6ef929009688b23c7a35908974552d35f8a/restview-2.9.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a7894f16ca90a1aec9deffe757d4c234", "sha256": "790097eb587c0465126dde73ca06c7a22c5007ce1be4a1de449a13c0767b32dc" }, "downloads": -1, "filename": "restview-2.9.2.tar.gz", "has_sig": false, "md5_digest": "a7894f16ca90a1aec9deffe757d4c234", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47181, "upload_time": "2019-04-23T18:09:02", "url": "https://files.pythonhosted.org/packages/e6/40/b4ef5c90297b9d37248090b9fde3a9aa1ef25e87ebd17b363760fec39a78/restview-2.9.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "e8cad0cc782547f199b8daebfb1ffb1a", "sha256": "47929bae12e7cf39cbb93a5a5a16f970941e39301c05cbb4ea398df8c113b1e2" }, "downloads": -1, "filename": "restview-2.9.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e8cad0cc782547f199b8daebfb1ffb1a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 37845, "upload_time": "2019-04-23T18:09:00", "url": "https://files.pythonhosted.org/packages/2d/ae/6b45c750edad3ab3c01e1966d6ef929009688b23c7a35908974552d35f8a/restview-2.9.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a7894f16ca90a1aec9deffe757d4c234", "sha256": "790097eb587c0465126dde73ca06c7a22c5007ce1be4a1de449a13c0767b32dc" }, "downloads": -1, "filename": "restview-2.9.2.tar.gz", "has_sig": false, "md5_digest": "a7894f16ca90a1aec9deffe757d4c234", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47181, "upload_time": "2019-04-23T18:09:02", "url": "https://files.pythonhosted.org/packages/e6/40/b4ef5c90297b9d37248090b9fde3a9aa1ef25e87ebd17b363760fec39a78/restview-2.9.2.tar.gz" } ] }