{ "info": { "author": "Olivier Breuleux", "author_email": "breuleux@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9" ], "description": "# hrepr\n\n`hrepr` outputs HTML/pretty representations for Python objects.\n\n\u2705 Nice, colourful representations of lists, dicts, dataclasses, booleans...
\n\u2705 Ridiculously extensible and configurable
\n\u2705 Handles recursive data structures
\n\u2705 Compatible with Jupyter notebooks
\n\u2705 Also pretty-prints to the terminal
\n\n\n\nI suggest studying the two example files to learn `hrepr`:\n\n* `python examples/exhibit.py > exhibit.html` (and then view the HTML file)\n* `python examples/pretty.py`\n\nAlso see the Jupyter notebook at `examples/Basics.ipynb`, but keep in mind that GitHub can't display it properly because of the injected styles/scripts.\n\n\n## Install\n\n```python\npip install hrepr\n```\n\n\n## Usage\n\n```python\nfrom hrepr import hrepr\nobj = {'potatoes': [1, 2, 3], 'bananas': {'cantaloups': 8}}\n\n# Print the HTML representation of obj\nprint(hrepr(obj))\n\n# Wrap the representation in tags and embed the default\n# css style files in a standalone page, which is saved to obj.html\nhrepr.page(obj, file=\"obj.html\")\n```\n\nIn a Jupyter Notebook, you can return `hrepr(obj)` from any cell and it will show its representation for you. You can also write `display_html(hrepr(obj))`.\n\n\n## Custom representations\n\nA custom representation for an object can be defined using the following three methods (it is not necessary to define all of them, only those that are relevant to your case):\n\n* `__hrepr__(self, H, hrepr)` returns the normal HTML representation.\n * Use `H.span[\"some-class\"](some-content, some_attr=some_value)` to generate HTML.\n * Use `hrepr(self.x)` to generate the representation for some subfield `x`.\n * `hrepr.config` contains any keyword arguments given in the top level call to `hrepr`. For instance, if you call `hrepr(obj, blah=3)`, then `hrepr.config.blah == 3` in all calls to `__hrepr__` down the line (the default value for all keys is `None`).\n* `__hrepr_short__(self, H, hrepr)` returns a *short* representation, ideally of a constant size.\n * The output of this method is used when we hit max depth, or for repeated references.\n * Only include bare minimum information. Short means short.\n* `__hrepr_resources__(cls, H)` is a **classmethod** that returns resources common to all instances of the class (typically a stylesheet or a script).\n * When generating a page, the resources will go in ``.\n * You can return a list of resources.\n\nNo dependency on `hrepr` is necessary.\n\nFor example:\n\n```python\nclass Person:\n def __init__(self, name, age, job):\n self.name = name\n self.age = age\n self.job = job\n\n @classmethod\n def __hrepr_resources__(cls, H):\n # Note: you might need to add \"!important\" next to some rules if\n # they conflict with defaults from hrepr's own CSS.\n return H.style(\"\"\"\n .person {\n background: magenta !important;\n border-color: magenta !important;\n }\n .person-short { font-weight: bold; color: green; }\n \"\"\")\n\n def __hrepr__(self, H, hrepr):\n # H.instance is a special kind of tag to format data like an instance.\n # Notice how we call the hrepr parameter on self.age and self.job to\n # format them.\n return H.instance[\"person\"](\n H.pair(\"age\", hrepr(self.age), delimiter=\" \u21a6 \"),\n H.pair(\"job\", hrepr(self.job), delimiter=\" \u21a6 \"),\n # The \"type\" represents the header for the \"instance\"\n type=self.name,\n # \"vertical=True\" means we'll display the pairs as a table with\n # the delimiters aligned, instead of sticking them horizontally\n # next to each other\n vertical=True,\n )\n\n def __hrepr_short__(self, H, hrepr):\n # H.atom is really mostly like H.span, but the textual representation\n # of H.atom(x) through pprint is \"x\" whereas H.span(x) would be \n # \"x\".\n return H.atom[\"person-short\"](self.name)\n```\n\n\n\nNote how this also gave us a textual representation *for free*, using `hrepr.pprint`. This feature requires using special tags like `H.instance`, `H.bracketed`, `H.pair` or `H.atom` -- other ones will pretty-print like HTML -- but it's neat regardless!\n\n\n## References\n\n`hrepr` (and `hrepr.pprint` for that matter) can handle circular references. Furthermore, if an object is found at several places in a structure, only the first occurrence will be printed in full, and any other will be a numeric reference mapped to the short representation for the object. It looks like this:\n\n\n\nThe `shortrefs` and `norefs` configuration keys control the representation of references:\n\n\n\n`norefs` is ignored when there are circular references.\n\n\n## HTML generation\n\nGenerate HTML using the `H` parameter to `__hrepr__`, or import it and use it directly:\n\n```python\nfrom hrepr import H\nhtml = H.span[\"bear\"](\n \"Only \", H.b(\"YOU\"), \" can prevent forest fires!\",\n style=\"color: brown;\"\n)\nprint(html)\n# Only YOU can prevent forest fires!\n```\n\n`H` can be built incrementally: if you have an element, you can call it to add children, index it to add classes, and so on. For instance:\n\n```python\nfrom hrepr import H\nhtml = H.span()\nhtml = html(\"Only \")\nhtml = html(style=\"color: brown;\")[\"bear\"]\nhtml = html(H.b(\"YOU\"), \" can prevent forest fires!\")\nprint(html)\n# Only YOU can prevent forest fires!\n```\n\nThis can be handy if you want to tweak generated HTML a little. For example, `hrepr(obj)[\"fox\"]` will tack on the class `fox` to the representation of the object.\n\n\n### Special tags\n\nStandard tags like `H.span`, `H.div`, `H.strong`, etc. are handled according to standards. But there are some special tags which are postprocessed by the hrepr \"backend\". The HTML backend will reduce them to standard tags, whereas the pprint backend will display them like Python data structures.\n\n* `H.instance(*children, type=, delimiter=, short=, horizontal=, vertical=)`\n * Represents some kind of object\n * `type`: the name of the object (or class name)\n * It is not *necessarily* a string, it can also be a tag.\n * `delimiter`: the delimiter between elements, defaults to a comma. The HTML formatter ignores this.\n * `short/horizontal/vertical`: the layout/style\n* `H.bracketed(*children, type=, open=, close=, delimiter=, short=, horizontal=, vertical=)`\n * `type`: the name of the object (or class name), which is NOT displayed. Instead, the class `hreprt-` is given to the element.\n * `open/close`: the opening and closing brackets.\n * `delimiter`: the delimiter between elements, defaults to a comma. The HTML formatter ignores this.\n * `short/horizontal/vertical`: the layout/style. Lists use horizontal, dicts use vertical, and the short representations use short.\n* `H.pair(x, y, delimiter=)`: a key -> value mapping. They are handled specially inside of `bracketed` and `instance` so that the delimiters are aligned.\n* `H.atom(element, type=)`: essentially equivalent to `H.span[\"hreprt-\"](element)`, or `repr(element)` for pprint.\n\n\n### Including JavaScript libraries\n\nTo make it a bit easier to include and use JavaScript libraries, there is a new tag called `H.javascript` that uses RequireJS under the hood:\n\n* `H.javascript(export=, src=)` declares an import of the script at the given path (you can use a CDN link) and exports it under the given name.\n* `H.javascript(, require=, export=)` will wait for the required modules (the names in the require list are the ones given in the export field of other javascript tags) and will provide them to your script.\n\nOptionally you can name a variable as the export, so that it can be required by other scripts.\n\n\n### Constructed elements\n\nEach element gains a new attribute, `constructor`, which must name a function exported using a `javascript` tag. If provided, the function is called with the element as the first argument, and the `options` attribute as the second element.\n\nTo illustrate, here's an example of requiring and using Plotly:\n\n```python\nclass Plot:\n def __init__(self, data):\n self.data = data\n\n @classmethod\n def __hrepr_resources__(cls, H):\n return [\n H.javascript(\n export=\"plotly\",\n src=\"https://cdn.plot.ly/plotly-latest.min.js\",\n ),\n H.javascript(\n \"\"\"\n function PlotlyPlot(element, data) {\n plotly.newPlot(element, data);\n }\n \"\"\",\n require=\"plotly\",\n export=\"PlotlyPlot\",\n ),\n ]\n\n def __hrepr__(self, H, hrepr):\n return H.div(\n constructor=\"PlotlyPlot\",\n options=[{\"x\": list(range(len(self.data))), \"y\": list(self.data)}],\n )\n```\n\n* `__hrepr_resources__` declares two resources:\n * The plotly library, loaded from a CDN, and exported as `plotly`.\n * A small snippet of code that requires `plotly` and declares a `PlotlyPlot` function that takes an element and some data.\n* `__hrepr__` returns a div that has `PlotlyPlot` as the constructor. It will be called as `new PlotlyPlot(element, options)` (this is so it may equally be defined as an ES6 class if you wish). The options serialized as JSON and dumped into the call -- they are the \"data\" argument in make_plot.\n\nWe can then test it:\n\n\n\nAlternatively, you can define custom elements using the [custom element API](https://developer.mozilla.org/en-US/docs/Web/Web_Components/Using_custom_elements). You can put the definition in a `` tag that requires the library you want to use, and then simply use `H.my_element(...)` to instantiate it. The underscore in the Python attribute will become a dash, so hrepr will generate `...`.\n\n## Customize hrepr\n\n### Mixins\n\nIf you want to *really* customize hrepr, you can use mixins. They look like a bit of black magic, but they're simple enough:\n\n```python\n# ovld is one of the dependencies of hrepr\nfrom ovld import ovld, extend_super, has_attribute\nfrom hrepr import hrepr, Hrepr\n\nclass MyMixin(Hrepr):\n # Change the representation of integers\n\n @extend_super\n def hrepr_resources(self, cls: int):\n # Note: in hrepr_resources, cls is the int type, not an integer\n return self.H.style(\".my-integer { color: fuchsia; }\")\n\n @extend_super\n def hrepr(self, n: int):\n return self.H.span[\"my-integer\"](\"The number \", str(n))\n\n # Specially handle any object with a \"quack\" method\n\n def hrepr(self, duck: has_attribute(\"quack\")):\n return self.H.span(\"\ud83e\udd86\")\n```\n\n\n\nThe annotation for a rule can either be a type, `ovld.has_attribute`, or pretty much any function wrapped with the `ovld.meta` decorator, as long as the function operates on classes. See the documentation for [ovld](https://github.com/breuleux/ovld#other-features) for more information.\n\nAnd yes, you can define `hrepr` multiple times inside the class, as long as they have distinct annotations and you inherit from `Hrepr`. You can also define `hrepr_short` or `hrepr_resources` the same way.\n\n### Postprocessors\n\n`hrepr` can be given a postprocessor that is called on the representation of any object. You can use this to do things like highlighting specific objects:\n\n```python\nfrom hrepr import H\n\nstyle = H.style(\".highlight { border: 3px solid red !important; }\")\n\ndef highlight(x):\n def postprocess(element, obj, hrepr):\n if obj == x:\n # Adds the \"highlight\" class and attaches a style\n return element[\"highlight\"].fill(resources=style)\n else:\n return element\n\n return postprocess\n\nhrepr([1, 2, [3, 4, 2]], postprocess=highlight(2))\n```\n\n\n\n\n### hrepr variants\n\nTo put this all together, you can create a *variant* of `hrepr`:\n\n```python\nhrepr2 = hrepr.variant(mixins=MyMixin, postprocess=highlight(2))\nhrepr2([1, 2, 3]) # Will use the mixins and postprocessor\n```\n\n\n### Configure the hrepr function itself\n\nAlternatively, you can configure the main `hrepr`:\n\n```python\nhrepr.configure(mixins=MyMixin, postprocess=highlight(2))\n```\n\nBut keep in mind that unlike the variant, the above will modify `hrepr` for everything else as well.\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/breuleux/hrepr", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "hrepr", "package_url": "https://pypi.org/project/hrepr/", "platform": "", "project_url": "https://pypi.org/project/hrepr/", "project_urls": { "Homepage": "https://github.com/breuleux/hrepr", "Repository": "https://github.com/breuleux/hrepr" }, "release_url": "https://pypi.org/project/hrepr/0.4.0/", "requires_dist": [ "ovld (>=0.3.1,<0.4.0)", "dataclasses (>=0.8,<0.9); python_version >= \"3.6\" and python_version < \"3.7\"" ], "requires_python": ">=3.6,<4.0", "summary": "Extensible HTML representation for Python objects.", "version": "0.4.0", "yanked": false, "yanked_reason": null }, "last_serial": 10706728, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "b0a815ab7ead6348dbd92d467598b951", "sha256": "97854170b89401e2c11670865c040d9641794ba3a0b33f834901d3007d412675" }, "downloads": -1, "filename": "hrepr-0.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "b0a815ab7ead6348dbd92d467598b951", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 10433, "upload_time": "2017-07-20T21:29:25", "upload_time_iso_8601": "2017-07-20T21:29:25.721009Z", "url": "https://files.pythonhosted.org/packages/ea/70/b87adc92208a01a145116e1e05d28ca07f260f2b749cb3b99bd5845558ce/hrepr-0.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3336956ceeb5d629ff52e13e34e32394", "sha256": "33665192b16ab98d94854572a8d73ada8c43389c9c547cd4fb5edcf7dd23202e" }, "downloads": -1, "filename": "hrepr-0.1.0.tar.gz", "has_sig": false, "md5_digest": "3336956ceeb5d629ff52e13e34e32394", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 7416, "upload_time": "2017-07-20T21:29:26", "upload_time_iso_8601": "2017-07-20T21:29:26.698283Z", "url": "https://files.pythonhosted.org/packages/dd/51/5d09ea7ad07c3536d8d35f4eb89d6fe420f4a32380151f4810bc8543f3fa/hrepr-0.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "1b75e2215cad2dccc97c7dc8a67af088", "sha256": "5fc182d100eb8c2c57f59e6edcdacce5e715c739b4c05008f53b4e23615f3b67" }, "downloads": -1, "filename": "hrepr-0.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "1b75e2215cad2dccc97c7dc8a67af088", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 10948, "upload_time": "2017-08-01T20:35:46", "upload_time_iso_8601": "2017-08-01T20:35:46.706167Z", "url": "https://files.pythonhosted.org/packages/c6/77/7f8f2d818cc66f2176b450879764a514a2c1bdd23ab85b66d6341e314858/hrepr-0.1.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c96f6b9452d46c223d7401cb0c399a8a", "sha256": "e97e9d629cf0443a4dbdd05c9fd5ea5e88d6f5efc7bf263ff9be31ebb75a26d6" }, "downloads": -1, "filename": "hrepr-0.1.1.tar.gz", "has_sig": false, "md5_digest": "c96f6b9452d46c223d7401cb0c399a8a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 7879, "upload_time": "2017-08-01T20:35:47", "upload_time_iso_8601": "2017-08-01T20:35:47.745930Z", "url": "https://files.pythonhosted.org/packages/de/2e/1057255be07f00902002223a93e53b8bc8283fbd7cdeca31d04f1813ac96/hrepr-0.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "7f4f6fdf7289f1d853cc8753532c1191", "sha256": "0a114257e76aed63b370f18646646f5979a6cbcb61a31b884ba8a3c360738ad3" }, "downloads": -1, "filename": "hrepr-0.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "7f4f6fdf7289f1d853cc8753532c1191", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 11015, "upload_time": "2017-08-14T20:52:15", "upload_time_iso_8601": "2017-08-14T20:52:15.250688Z", "url": "https://files.pythonhosted.org/packages/8f/77/96d5472595af5a8297ac8a983d7d5fb5715aab40ae0370d3efab628664b9/hrepr-0.1.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d554ab9f0263a5a3ddac85730d0433ea", "sha256": "28af93d27d0ba0ec11425e65e452c3fbdbd6a0ee32a5dd3ab9ccab3c8a20a2bb" }, "downloads": -1, "filename": "hrepr-0.1.2.tar.gz", "has_sig": false, "md5_digest": "d554ab9f0263a5a3ddac85730d0433ea", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 7941, "upload_time": "2017-08-14T20:52:17", "upload_time_iso_8601": "2017-08-14T20:52:17.096122Z", "url": "https://files.pythonhosted.org/packages/89/77/86ba1e9755a7ddd95c5d1a10fbdd58f542c98b228cb89db33988d85c94aa/hrepr-0.1.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "443187f3638ff4279092e6876d8faa95", "sha256": "d70ac9030fb82188e4846cc62da327b87ea522d6b5ac7cf8d798ae3e83a35c0c" }, "downloads": -1, "filename": "hrepr-0.1.3-py3-none-any.whl", "has_sig": false, "md5_digest": "443187f3638ff4279092e6876d8faa95", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 11032, "upload_time": "2017-09-20T18:15:01", "upload_time_iso_8601": "2017-09-20T18:15:01.075277Z", "url": "https://files.pythonhosted.org/packages/a4/85/eba1f2833477afa20f9a722458f9672a6e3c629eb33af5ce5bcf867e6d54/hrepr-0.1.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f5549da62d002fd61f4a7f7b69523ad4", "sha256": "a92829c607f0e29925eeeb2f7e9580bab48432f3c38ef3fb06edfde77a821e52" }, "downloads": -1, "filename": "hrepr-0.1.3.tar.gz", "has_sig": false, "md5_digest": "f5549da62d002fd61f4a7f7b69523ad4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 7951, "upload_time": "2017-09-20T18:15:05", "upload_time_iso_8601": "2017-09-20T18:15:05.017938Z", "url": "https://files.pythonhosted.org/packages/8f/81/0dab2f6146eb12c0cfc3e416368df5ff90e1f68dc6376dde5a3d9720b8ae/hrepr-0.1.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "87a25dd6980be342c9a67f2ea9f9c4c5", "sha256": "d44e3a6e88cc2cbbdabc7a99cc0ae948f2352bf1e408239be0a32b4361b9bdac" }, "downloads": -1, "filename": "hrepr-0.1.4-py3-none-any.whl", "has_sig": false, "md5_digest": "87a25dd6980be342c9a67f2ea9f9c4c5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 13426, "upload_time": "2017-10-04T19:38:34", "upload_time_iso_8601": "2017-10-04T19:38:34.529733Z", "url": "https://files.pythonhosted.org/packages/94/98/25e3f6d3c864ff58f41498d8e16854e65575b7d7b53bbdf645931d962a88/hrepr-0.1.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7b6a32bb2089ba44d9af5bbc6d55fce8", "sha256": "fa19c593a37481318d07da82132f248202a0905e46dcf454d3bc094cdf3e805e" }, "downloads": -1, "filename": "hrepr-0.1.4.tar.gz", "has_sig": false, "md5_digest": "7b6a32bb2089ba44d9af5bbc6d55fce8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 10320, "upload_time": "2017-10-04T19:38:36", "upload_time_iso_8601": "2017-10-04T19:38:36.029248Z", "url": "https://files.pythonhosted.org/packages/0c/f3/815ef5c64e990ed40fdff6eaed792f2c298f0703ea81bfd92f3c6b8f82a1/hrepr-0.1.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "a647ac9bca0d41985d3e2934592ac1ce", "sha256": "fff377301123c3304cb737ddd4c12c5b17981ee8b880d1f2246040dd9a8d5712" }, "downloads": -1, "filename": "hrepr-0.1.5-py3-none-any.whl", "has_sig": false, "md5_digest": "a647ac9bca0d41985d3e2934592ac1ce", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 15269, "upload_time": "2017-11-14T23:07:51", "upload_time_iso_8601": "2017-11-14T23:07:51.097404Z", "url": "https://files.pythonhosted.org/packages/ea/22/15658c472ffbf239320b34b58eff7ab60800f0464e6def00e10499db8e6e/hrepr-0.1.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "283e84dc4a6c4e97a04ed80a2436def6", "sha256": "74e1e22867d08aae063ebf3b22f17b213f94620f3d005611313d6a323cbb25f3" }, "downloads": -1, "filename": "hrepr-0.1.5.tar.gz", "has_sig": false, "md5_digest": "283e84dc4a6c4e97a04ed80a2436def6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 11490, "upload_time": "2017-11-14T23:07:52", "upload_time_iso_8601": "2017-11-14T23:07:52.482111Z", "url": "https://files.pythonhosted.org/packages/0b/74/2d72227acc6cead40bcf557aaa259d2d9aa6a973dd5718fc4653e4f74116/hrepr-0.1.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "562ee905f93c5b6830678f31c1f092cb", "sha256": "50a9911696d17546058ab3353fc0416daf8091c1466ecc0b000d9e4ba84cf244" }, "downloads": -1, "filename": "hrepr-0.1.6-py3-none-any.whl", "has_sig": false, "md5_digest": "562ee905f93c5b6830678f31c1f092cb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 15286, "upload_time": "2018-04-09T15:50:58", "upload_time_iso_8601": "2018-04-09T15:50:58.239648Z", "url": "https://files.pythonhosted.org/packages/c3/f7/f548aabc1d19602b23a1305af548b9738a72a5dad5f0a4135aedb324d143/hrepr-0.1.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e1eb4e305b043172d4c1b94cd460d46e", "sha256": "d88a7258301c49f4c03327af1011ecf53a58e72b903508b3f1ed6f75aaafaf9c" }, "downloads": -1, "filename": "hrepr-0.1.6.tar.gz", "has_sig": false, "md5_digest": "e1eb4e305b043172d4c1b94cd460d46e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 13203, "upload_time": "2018-04-09T15:50:59", "upload_time_iso_8601": "2018-04-09T15:50:59.925762Z", "url": "https://files.pythonhosted.org/packages/a3/2a/81d4675e342ce65a75dca8eadc2bf7d9cf426c8a437949b35146c95ca02e/hrepr-0.1.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "464a86ef02a0b7bf7cd8106d33fc2ba7", "sha256": "f5050d470c1780987bac5b586d3e47526125bd95eab2e618f207a2211b53ccd2" }, "downloads": -1, "filename": "hrepr-0.1.7-py3-none-any.whl", "has_sig": false, "md5_digest": "464a86ef02a0b7bf7cd8106d33fc2ba7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 11980, "upload_time": "2018-08-24T15:45:15", "upload_time_iso_8601": "2018-08-24T15:45:15.242292Z", "url": "https://files.pythonhosted.org/packages/53/eb/5a385a6619b40965444c891e4a9a5285f2011f6bd5810ec732a56632d50e/hrepr-0.1.7-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7b0830ab1daf8815600e128df353427d", "sha256": "634133ba29250e6dacef1d04cb167ecafa9183d5def20c30cf66e26352483328" }, "downloads": -1, "filename": "hrepr-0.1.7.tar.gz", "has_sig": false, "md5_digest": "7b0830ab1daf8815600e128df353427d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 13853, "upload_time": "2018-08-24T15:45:16", "upload_time_iso_8601": "2018-08-24T15:45:16.471895Z", "url": "https://files.pythonhosted.org/packages/4b/26/5d6935397a2fcf832e8d3c5fbaaaf3faeed0453b6606845b70c612c29c5a/hrepr-0.1.7.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "a2095a5e4a45442b3daac545fb8fe5d2", "sha256": "24a89f29f64e4b1f3573ffbc36edeb582102d983e3d354f6119eaec60356be67" }, "downloads": -1, "filename": "hrepr-0.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "a2095a5e4a45442b3daac545fb8fe5d2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 33391, "upload_time": "2019-10-25T16:36:08", "upload_time_iso_8601": "2019-10-25T16:36:08.463285Z", "url": "https://files.pythonhosted.org/packages/b7/3d/92503ff1a9a9aaf9154e8f9be70b515ba98ad95555bd24a704dfb6fbbaf8/hrepr-0.2.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3dd72ee6a0cc7006439482cca390223d", "sha256": "cc0cbfeb5e132bd6c4ee2d82e84be14ad29a860d75cd26150b3636a7603879c9" }, "downloads": -1, "filename": "hrepr-0.2.0.tar.gz", "has_sig": false, "md5_digest": "3dd72ee6a0cc7006439482cca390223d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 201891, "upload_time": "2019-10-25T16:36:41", "upload_time_iso_8601": "2019-10-25T16:36:41.913769Z", "url": "https://files.pythonhosted.org/packages/f1/29/0818f727f4a07f59e35d1143bc0510ca3df4b4f24d228df8627d8722c8c0/hrepr-0.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "b64a42e72b43b1f37fbc87b5b642675b", "sha256": "de97b35756dd1a0474a5599fff57db4c0f2e17d5d964276f6efc8d12322c63d7" }, "downloads": -1, "filename": "hrepr-0.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "b64a42e72b43b1f37fbc87b5b642675b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 12755, "upload_time": "2019-10-25T19:00:21", "upload_time_iso_8601": "2019-10-25T19:00:21.483722Z", "url": "https://files.pythonhosted.org/packages/b6/4a/18b67739f773ac56e8db501d9ebdb3c9c6551390ff2513ff9465fa28e81c/hrepr-0.2.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7afc9f18ef081e1cf8632afad979307d", "sha256": "a39f8d650b76c5a6b7829e1a1dd3c172e1a06b7e0cbb4e1389a9b78eb8a1d721" }, "downloads": -1, "filename": "hrepr-0.2.1.tar.gz", "has_sig": false, "md5_digest": "7afc9f18ef081e1cf8632afad979307d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 14386, "upload_time": "2019-10-25T19:00:23", "upload_time_iso_8601": "2019-10-25T19:00:23.287658Z", "url": "https://files.pythonhosted.org/packages/16/f3/ebf3ed7cd2b8b182776f36384c48278acf069c942ffc23aec43c9d685c0c/hrepr-0.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "140f76c3b453494d39ba1d3ea9aa1555", "sha256": "f2ee1fb570ac2e461475856eb8557de1881a1dfc23c7a737566152914a537f12" }, "downloads": -1, "filename": "hrepr-0.2.2-py3-none-any.whl", "has_sig": false, "md5_digest": "140f76c3b453494d39ba1d3ea9aa1555", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 12761, "upload_time": "2019-10-25T19:10:49", "upload_time_iso_8601": "2019-10-25T19:10:49.419587Z", "url": "https://files.pythonhosted.org/packages/77/14/5ec1dc1d52e0a3c4e6ba33a26e364f5a10d2ce8a108cef8e6c41098cc6c4/hrepr-0.2.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cc441b18f4fa3f0686b2cab884a28621", "sha256": "fb376d122d86781859b3159bdcf7eb7508cd0bbee8b4be1d6dc7027fc002aef0" }, "downloads": -1, "filename": "hrepr-0.2.2.tar.gz", "has_sig": false, "md5_digest": "cc441b18f4fa3f0686b2cab884a28621", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 14431, "upload_time": "2019-10-25T19:10:51", "upload_time_iso_8601": "2019-10-25T19:10:51.435966Z", "url": "https://files.pythonhosted.org/packages/3e/bd/896726e743796694ae3944f0dd2aa918dab625505e43490c9793b003912d/hrepr-0.2.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "2f8d1d8d59b973225cb49d2f405cbaf6", "sha256": "4bcd5324827a16673c284962d10c6aafdb304388de04db23d0f17c07241dff15" }, "downloads": -1, "filename": "hrepr-0.2.3-py3-none-any.whl", "has_sig": false, "md5_digest": "2f8d1d8d59b973225cb49d2f405cbaf6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 12860, "upload_time": "2019-11-14T19:35:11", "upload_time_iso_8601": "2019-11-14T19:35:11.679261Z", "url": "https://files.pythonhosted.org/packages/e0/b3/a736bee678c0bec4a86bbea0c25635e8f8437ce38b6a6924b8d6a11b981e/hrepr-0.2.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a22362cdd5e51832c042b19eb1b26f2b", "sha256": "8e6c2497f5663b3bc8db5de1f3a2377f201251f5b50583671442d6b3ab0f914a" }, "downloads": -1, "filename": "hrepr-0.2.3.tar.gz", "has_sig": false, "md5_digest": "a22362cdd5e51832c042b19eb1b26f2b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 14493, "upload_time": "2019-11-14T19:35:13", "upload_time_iso_8601": "2019-11-14T19:35:13.501285Z", "url": "https://files.pythonhosted.org/packages/9a/4a/60000c907c0948429c798455b37ad5c5ba27d5aa6003969f9d28cbacaacb/hrepr-0.2.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "57b3288c4a2c3676109e831523278ad8", "sha256": "abf088e45ba5418d144a9c785186d1cdb18b19fa4448251f280005744da6c224" }, "downloads": -1, "filename": "hrepr-0.2.4-py3-none-any.whl", "has_sig": false, "md5_digest": "57b3288c4a2c3676109e831523278ad8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 12880, "upload_time": "2020-03-14T23:59:52", "upload_time_iso_8601": "2020-03-14T23:59:52.067824Z", "url": "https://files.pythonhosted.org/packages/4b/91/78d3bcaf77bb1ece50d63766ed806a735d06235bbde35bd182d93b5909b8/hrepr-0.2.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "21d862ed27483bc77cb2e26edf37553d", "sha256": "ba404f37af92f767815aedb864c1424c883c42328caf87e7c3cfc3574bea8478" }, "downloads": -1, "filename": "hrepr-0.2.4.tar.gz", "has_sig": false, "md5_digest": "21d862ed27483bc77cb2e26edf37553d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 14494, "upload_time": "2020-03-14T23:59:53", "upload_time_iso_8601": "2020-03-14T23:59:53.674227Z", "url": "https://files.pythonhosted.org/packages/f7/17/8721d86eb69197ce8a5e8357a62293ff3706f2ef52bd8f9d964c25f8ec73/hrepr-0.2.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "8e515792bbf5e2a6c3b465237ef61e48", "sha256": "27552e79de2f1aa370d8f9f722e6d420f8f7abbb396c3c6cfa99f2bfe9218f3e" }, "downloads": -1, "filename": "hrepr-0.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "8e515792bbf5e2a6c3b465237ef61e48", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 20187, "upload_time": "2020-11-30T17:13:12", "upload_time_iso_8601": "2020-11-30T17:13:12.797836Z", "url": "https://files.pythonhosted.org/packages/2b/be/10de4b1b7b5c4d35c6d35990176de98d9a479b54257311248dd112d8838f/hrepr-0.3.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b7b73b3e89622e97a51c54fd33c5b8af", "sha256": "300705ff52008d75b3d61b9d573c1a766bd71536da34de832d2c62c797f98ba2" }, "downloads": -1, "filename": "hrepr-0.3.0.tar.gz", "has_sig": false, "md5_digest": "b7b73b3e89622e97a51c54fd33c5b8af", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 21947, "upload_time": "2020-11-30T17:13:13", "upload_time_iso_8601": "2020-11-30T17:13:13.963135Z", "url": "https://files.pythonhosted.org/packages/f1/6c/5d510fa70750757912abee52c52a228b7ee6e28923d694aeea1f59ef1132/hrepr-0.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "e35937cabdd95abf7c178b90bba94ef7", "sha256": "573de385386d711441b88078eaec46d0c88932e033690f29bec1db9a62907fb5" }, "downloads": -1, "filename": "hrepr-0.3.1-py3-none-any.whl", "has_sig": false, "md5_digest": "e35937cabdd95abf7c178b90bba94ef7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 20242, "upload_time": "2020-12-02T03:32:11", "upload_time_iso_8601": "2020-12-02T03:32:11.168337Z", "url": "https://files.pythonhosted.org/packages/6d/51/86cb64461fdd03aa4cd70a95c7fa0dccac19babc6b5a5b06f98a9a97ccdd/hrepr-0.3.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "abf6c3c6798cc8f2ccc5d513d1a2000a", "sha256": "a608f334d431923605dde58dbafa508df9900fa7a3f6e2a00b36c3b29b07d7dc" }, "downloads": -1, "filename": "hrepr-0.3.1.tar.gz", "has_sig": false, "md5_digest": "abf6c3c6798cc8f2ccc5d513d1a2000a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 22020, "upload_time": "2020-12-02T03:32:12", "upload_time_iso_8601": "2020-12-02T03:32:12.942720Z", "url": "https://files.pythonhosted.org/packages/13/d4/355233b2bd394e3f63615e27f411537e283931427f8edebe234df412154d/hrepr-0.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.10": [ { "comment_text": "", "digests": { "md5": "511fed3736ae6114698971cea138e39d", "sha256": "2cdbe3c8deb3f3612e6deeec5ab5539227ebf51c5a506415d715976d648f6711" }, "downloads": -1, "filename": "hrepr-0.3.10-py3-none-any.whl", "has_sig": false, "md5_digest": "511fed3736ae6114698971cea138e39d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 21153, "upload_time": "2021-04-15T22:26:56", "upload_time_iso_8601": "2021-04-15T22:26:56.620164Z", "url": "https://files.pythonhosted.org/packages/a9/b1/74a5c011ccb98f97dd3835593809ab1b2edc4cc64d14f80038d44ac72bf2/hrepr-0.3.10-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e439e521d4c889567dee069431bcc906", "sha256": "547bda259cbdb1286d9d6ba019048bd61d416ae5e2aecd7fe3d485d204fb1f25" }, "downloads": -1, "filename": "hrepr-0.3.10.tar.gz", "has_sig": false, "md5_digest": "e439e521d4c889567dee069431bcc906", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 24226, "upload_time": "2021-04-15T22:26:58", "upload_time_iso_8601": "2021-04-15T22:26:58.692508Z", "url": "https://files.pythonhosted.org/packages/bc/32/6898aed2629877315207b41b8685989e0d059dcc3958ec00525d037eecf1/hrepr-0.3.10.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.11": [ { "comment_text": "", "digests": { "md5": "e51796d1e72a9712e8e339fc263a4a96", "sha256": "16827a2d54e47e6e01f4d5d98a05e2ee13a31334aae45d11224d13b8a27ef860" }, "downloads": -1, "filename": "hrepr-0.3.11-py3-none-any.whl", "has_sig": false, "md5_digest": "e51796d1e72a9712e8e339fc263a4a96", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 21274, "upload_time": "2021-04-16T20:22:49", "upload_time_iso_8601": "2021-04-16T20:22:49.882436Z", "url": "https://files.pythonhosted.org/packages/dc/19/c9b864500c7a86ac9884e94e6e3ee0827915bf7ab534fa1c55cccc72c884/hrepr-0.3.11-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "decf5af9c1ba89260816f25ccf8be982", "sha256": "c45f062916719817931e621b00b75bf8c61d2c269902a046b862c1fef4e39fe6" }, "downloads": -1, "filename": "hrepr-0.3.11.tar.gz", "has_sig": false, "md5_digest": "decf5af9c1ba89260816f25ccf8be982", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 24338, "upload_time": "2021-04-16T20:22:51", "upload_time_iso_8601": "2021-04-16T20:22:51.257611Z", "url": "https://files.pythonhosted.org/packages/e7/7c/b83a099f9ba5fd78c87f2f2cfeae4eb165cd73c87d9df36278269f0444cf/hrepr-0.3.11.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "162c597c0810d9a0da9b13d451593b54", "sha256": "90aa636c4d07fccbb70b018e1127b66cf5bd116fe24a89ec483f6eb4ceeea826" }, "downloads": -1, "filename": "hrepr-0.3.2-py3-none-any.whl", "has_sig": false, "md5_digest": "162c597c0810d9a0da9b13d451593b54", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 21675, "upload_time": "2020-12-06T02:47:54", "upload_time_iso_8601": "2020-12-06T02:47:54.584991Z", "url": "https://files.pythonhosted.org/packages/f6/ac/e03a6737f036239730ce48c573a79dff5b3ba812f9a5a661596d174f7ce5/hrepr-0.3.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5c2ce774eb4bca828176c5bf5cc02fc2", "sha256": "284d5a055571b76393c562b676495c6d58cf52fcd3b61a4d8f2564127313cae2" }, "downloads": -1, "filename": "hrepr-0.3.2.tar.gz", "has_sig": false, "md5_digest": "5c2ce774eb4bca828176c5bf5cc02fc2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 23764, "upload_time": "2020-12-06T02:47:55", "upload_time_iso_8601": "2020-12-06T02:47:55.603062Z", "url": "https://files.pythonhosted.org/packages/57/3b/ee63b0d10fa87300464d640ea4a9f347a7c70190f2a49f71a9cec59144b7/hrepr-0.3.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "abd67472484ba1b3facf00a228b4be78", "sha256": "6132ca87f1323693a6fa31c0d63400de432e813e17c7d46749268921eaa6b421" }, "downloads": -1, "filename": "hrepr-0.3.3-py3-none-any.whl", "has_sig": false, "md5_digest": "abd67472484ba1b3facf00a228b4be78", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 21664, "upload_time": "2020-12-06T04:19:37", "upload_time_iso_8601": "2020-12-06T04:19:37.928176Z", "url": "https://files.pythonhosted.org/packages/e5/f1/4de0d1697eda959ce00e0d63f320806b4d01983d3d35934f4c1eb30924b4/hrepr-0.3.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f48f858bd047cb550a8e097c50b37dcf", "sha256": "fc51cdc81f80fd287296ca0df45af0a8b70e6a1fac8c713826e1d5ff62be76ec" }, "downloads": -1, "filename": "hrepr-0.3.3.tar.gz", "has_sig": false, "md5_digest": "f48f858bd047cb550a8e097c50b37dcf", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 23800, "upload_time": "2020-12-06T04:19:39", "upload_time_iso_8601": "2020-12-06T04:19:39.107859Z", "url": "https://files.pythonhosted.org/packages/13/d2/5106dc5f3980a60f1d86bada85553b68199a2f1fe5cc88f9e8dc995e67c0/hrepr-0.3.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "b9007c7d490651c9031f696bde0ed2fa", "sha256": "d48b3217fb06d6116c682569cd4cd23a9cd1c8ae8931778c46fbd7487b0ec5ed" }, "downloads": -1, "filename": "hrepr-0.3.4-py3-none-any.whl", "has_sig": false, "md5_digest": "b9007c7d490651c9031f696bde0ed2fa", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 20053, "upload_time": "2020-12-07T19:38:28", "upload_time_iso_8601": "2020-12-07T19:38:28.268145Z", "url": "https://files.pythonhosted.org/packages/ed/7c/0ffd42464b9d456fc24534cc0734cde110cac859302687cae1d2c0d93672/hrepr-0.3.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9fe640ab09129a90c700dd15831d0f50", "sha256": "0ac1351f24e9061bdbecc222db2ffb32190f7d8f88c0cc9b239042ee920fa0c7" }, "downloads": -1, "filename": "hrepr-0.3.4.tar.gz", "has_sig": false, "md5_digest": "9fe640ab09129a90c700dd15831d0f50", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 23223, "upload_time": "2020-12-07T19:38:29", "upload_time_iso_8601": "2020-12-07T19:38:29.499000Z", "url": "https://files.pythonhosted.org/packages/e0/2f/fa8cb2513368c65d5912c319b18af80c4ef6232b8ccbc4633b5e19812754/hrepr-0.3.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "7af854cd14a18bf4ee920c5249cf3fdb", "sha256": "97d7f358db79ec5ab95bfa566f0bbb8a50a1679cc051c4b5c5f790e40a48ebe7" }, "downloads": -1, "filename": "hrepr-0.3.5-py3-none-any.whl", "has_sig": false, "md5_digest": "7af854cd14a18bf4ee920c5249cf3fdb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 20227, "upload_time": "2020-12-14T01:30:43", "upload_time_iso_8601": "2020-12-14T01:30:43.094740Z", "url": "https://files.pythonhosted.org/packages/d0/07/4ca7255405543603fcfdd1f1489e451842b16a8cf819469b414ee8dac98a/hrepr-0.3.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6fa7dabafc9fb92b930e6d1e423ffb16", "sha256": "b94552b777d7a12e0bb446e14281b9e0d55cbc58a9ed48a61c974cdbf07d714a" }, "downloads": -1, "filename": "hrepr-0.3.5.tar.gz", "has_sig": false, "md5_digest": "6fa7dabafc9fb92b930e6d1e423ffb16", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 23425, "upload_time": "2020-12-14T01:30:44", "upload_time_iso_8601": "2020-12-14T01:30:44.371498Z", "url": "https://files.pythonhosted.org/packages/d7/98/3e7bb7922dda834b7dcdb46935f71ba259778c07f53968d60f9f3d9e1080/hrepr-0.3.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.6": [ { "comment_text": "", "digests": { "md5": "3a92d659e52f4ed101e5e62947308966", "sha256": "d2fbed2648149b2b387a40bd1383b8ae1c0ffa5a526aa468f90826ce815ddacb" }, "downloads": -1, "filename": "hrepr-0.3.6-py3-none-any.whl", "has_sig": false, "md5_digest": "3a92d659e52f4ed101e5e62947308966", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 20239, "upload_time": "2020-12-14T20:48:19", "upload_time_iso_8601": "2020-12-14T20:48:19.783337Z", "url": "https://files.pythonhosted.org/packages/29/04/011f75ecacf765837ff2f9dc08e5171a190b4c00df09195c648edb45f627/hrepr-0.3.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "448fcca455c83e30bd2b35de8a8db035", "sha256": "19e1845ee45985f6b323eaa95e8b1680a82c36c46a7f73a5d69613b4df2d2a0e" }, "downloads": -1, "filename": "hrepr-0.3.6.tar.gz", "has_sig": false, "md5_digest": "448fcca455c83e30bd2b35de8a8db035", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 23442, "upload_time": "2020-12-14T20:48:21", "upload_time_iso_8601": "2020-12-14T20:48:21.047433Z", "url": "https://files.pythonhosted.org/packages/e4/06/72cd3684242a885b2aae860b6088074fa5c2f07593ac5f712bb36c77f3a3/hrepr-0.3.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.7": [ { "comment_text": "", "digests": { "md5": "3cc000e0bbe8d96ab785d25d0b7de723", "sha256": "82e96d6ae5470aafefd3dd4522311c519d293d9ad2d59bf8294064dcf2c88c54" }, "downloads": -1, "filename": "hrepr-0.3.7-py3-none-any.whl", "has_sig": false, "md5_digest": "3cc000e0bbe8d96ab785d25d0b7de723", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 20784, "upload_time": "2020-12-21T00:18:12", "upload_time_iso_8601": "2020-12-21T00:18:12.924291Z", "url": "https://files.pythonhosted.org/packages/cf/93/cab825da35e14adc06739343c61f9b83ac0084c8790afdc2f024d3eb02e8/hrepr-0.3.7-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eeec05b9785920223557da3d6271df36", "sha256": "6b6d59305be0686a4719fb64e4a26b8773bf58570c8fe9b01d7753e3e1f4cfd3" }, "downloads": -1, "filename": "hrepr-0.3.7.tar.gz", "has_sig": false, "md5_digest": "eeec05b9785920223557da3d6271df36", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 24054, "upload_time": "2020-12-21T00:18:14", "upload_time_iso_8601": "2020-12-21T00:18:14.614481Z", "url": "https://files.pythonhosted.org/packages/f6/1e/4429f00708a1d5ff3524492076904d254df664afcde43ed54d00de5c3c21/hrepr-0.3.7.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.8": [ { "comment_text": "", "digests": { "md5": "b7318dcb71ecd02c1f7a60d21c84569f", "sha256": "53e9c2d9e033a0441590eadca4346c5ae01a809bfbc527abc52d6e728ef60c48" }, "downloads": -1, "filename": "hrepr-0.3.8-py3-none-any.whl", "has_sig": false, "md5_digest": "b7318dcb71ecd02c1f7a60d21c84569f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 20829, "upload_time": "2021-02-14T03:46:55", "upload_time_iso_8601": "2021-02-14T03:46:55.201988Z", "url": "https://files.pythonhosted.org/packages/0c/c8/0c69cbf267dbbb2376ea89205eebffb2ee42f4e8bce97661d90fd26ae40c/hrepr-0.3.8-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6da898a5a387584175dff7fd56f9d2f4", "sha256": "9b8db0f1390ed7ea4aa2dad79b4cab2ce78b87be5c827bbb1706779825effa6c" }, "downloads": -1, "filename": "hrepr-0.3.8.tar.gz", "has_sig": false, "md5_digest": "6da898a5a387584175dff7fd56f9d2f4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 24084, "upload_time": "2021-02-14T03:46:56", "upload_time_iso_8601": "2021-02-14T03:46:56.236887Z", "url": "https://files.pythonhosted.org/packages/c9/46/9c1a39bbfe0c82557e57528d897d51ed73d7a44c0052cb57a2124f4ff78c/hrepr-0.3.8.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.9": [ { "comment_text": "", "digests": { "md5": "d40fe97bdb9640dcce2e75c786a014c4", "sha256": "3836352ca64a06605d9b4fc7ed6948eaa4400333447f5b26cbd69e813bf44b02" }, "downloads": -1, "filename": "hrepr-0.3.9-py3-none-any.whl", "has_sig": false, "md5_digest": "d40fe97bdb9640dcce2e75c786a014c4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 20835, "upload_time": "2021-02-14T20:12:41", "upload_time_iso_8601": "2021-02-14T20:12:41.807649Z", "url": "https://files.pythonhosted.org/packages/83/70/c2143e569e8bb87e0e168f0f66372bc302f15df90f237afd448e9acda5fa/hrepr-0.3.9-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "af10f473663a70223544084ac412471e", "sha256": "1c10f75a08d7bf88c0b479011a02357d44a8f09ca22cd57bc46b3fd5e4d1110c" }, "downloads": -1, "filename": "hrepr-0.3.9.tar.gz", "has_sig": false, "md5_digest": "af10f473663a70223544084ac412471e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 24085, "upload_time": "2021-02-14T20:12:42", "upload_time_iso_8601": "2021-02-14T20:12:42.887502Z", "url": "https://files.pythonhosted.org/packages/b7/99/e05009678150201bdea4a8c3e31257957701e2da6917697eec09ebd9995b/hrepr-0.3.9.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "ff1e3774b00495038f2a14bd9bbb1ade", "sha256": "0df69a0ba51cb85e44ca0a2740583bd446e5bdf596efe6d431d0ef7990ee1efa" }, "downloads": -1, "filename": "hrepr-0.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "ff1e3774b00495038f2a14bd9bbb1ade", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 21395, "upload_time": "2021-06-21T21:55:52", "upload_time_iso_8601": "2021-06-21T21:55:52.383251Z", "url": "https://files.pythonhosted.org/packages/ee/04/194709eec1f9794539e3469a389db77d85fd7f82472d46bc59b7ba35764d/hrepr-0.4.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "13c94147ac35d64440b88fa1019f8811", "sha256": "c113c661a6c693a5178f92685165a799ffdb93080bef510fa939a29f1677bb18" }, "downloads": -1, "filename": "hrepr-0.4.0.tar.gz", "has_sig": false, "md5_digest": "13c94147ac35d64440b88fa1019f8811", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 24473, "upload_time": "2021-06-21T21:55:53", "upload_time_iso_8601": "2021-06-21T21:55:53.965502Z", "url": "https://files.pythonhosted.org/packages/dc/73/ff5ae3b9153668097bfe160ea0cfdfe4f0ae5c397968af9063a4d8550b44/hrepr-0.4.0.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "ff1e3774b00495038f2a14bd9bbb1ade", "sha256": "0df69a0ba51cb85e44ca0a2740583bd446e5bdf596efe6d431d0ef7990ee1efa" }, "downloads": -1, "filename": "hrepr-0.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "ff1e3774b00495038f2a14bd9bbb1ade", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 21395, "upload_time": "2021-06-21T21:55:52", "upload_time_iso_8601": "2021-06-21T21:55:52.383251Z", "url": "https://files.pythonhosted.org/packages/ee/04/194709eec1f9794539e3469a389db77d85fd7f82472d46bc59b7ba35764d/hrepr-0.4.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "13c94147ac35d64440b88fa1019f8811", "sha256": "c113c661a6c693a5178f92685165a799ffdb93080bef510fa939a29f1677bb18" }, "downloads": -1, "filename": "hrepr-0.4.0.tar.gz", "has_sig": false, "md5_digest": "13c94147ac35d64440b88fa1019f8811", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 24473, "upload_time": "2021-06-21T21:55:53", "upload_time_iso_8601": "2021-06-21T21:55:53.965502Z", "url": "https://files.pythonhosted.org/packages/dc/73/ff5ae3b9153668097bfe160ea0cfdfe4f0ae5c397968af9063a4d8550b44/hrepr-0.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }