{ "info": { "author": "Oliver Berger", "author_email": "diefans@gmail.com", "bugtrack_url": null, "classifiers": [ "Framework :: AsyncIO", "License :: OSI Approved :: Apache Software License", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8" ], "description": "B\u00fav\u00e1r\n=====\n\nThis is heavily inspired by `Pyramid`_ and my daily needs to fastly create and\nmaintain microservice like applications.\n\n\na plugin mechanic\n-----------------\n\n- plugin may depend on other plugins\n\n- plugins yield tasks to run\n\n- a context registry serves as a store for application components created by plugins\n\n- a dependency injection creates intermediate components\n\n- a config source is mapped to plugin specific configuration and may be fully\n overridden by environment vars\n\n- structlog boilerplate for json/tty logging\n\n- fork the process and share bound sockets\n\n- pytest fixtures to reduce testing boilerplate\n\n\nYou bootstrap like following:\n\n.. code-block:: python\n\n from buvar import plugin\n\n plugin.stage(\"some.module.with.prepare\")\n\n\n.. code-block:: python\n\n # some.module.with.prepare\n from buvar import context, plugin\n\n class Foo:\n ...\n\n\n async def task():\n asyncio.sleep(1)\n\n\n async def server():\n my_component = context.get(Foo)\n await asyncio.Future()\n\n\n # there is also plugin.Teardown and plugin.Cancel\n async def prepare(load: plugin.Loader):\n await load('.another.plugin')\n\n # create some long lasting components\n my_component = context.add(Foo())\n\n # you may run simple tasks\n yield task()\n\n # you may run server tasks\n yield server()\n\n\na components and dependency injection solution\n----------------------------------------------\n\nDependency injection relies on registered adapters, which may be a function, a\nmethod, a class, a classmethod or a generic classmthod.\n\nDependencies are looked up in components or may be provided via kwargs.\n\n\n.. code-block:: python\n\n from buvar import di\n\n class Bar:\n pass\n\n class Foo:\n def __init__(self, bar: Bar = None):\n self.bar = bar\n\n @classmethod\n async def adapt(cls, baz: str) -> Foo:\n return Foo()\n\n async def adapt(bar: Bar) -> Foo\n foo = Foo(bar)\n return foo\n\n\n async def task():\n foo = await di.nject(Foo, baz=\"baz\")\n assert foo.bar is None\n\n bar = Bar()\n foo = await di.nject(Foo, bar=bar)\n assert foo.bar is bar\n\n async def prepare():\n di.register(Foo.adapt)\n di.register(adapt)\n\n yield task()\n\n\n\na config source\n---------------\n\n:code:`buvar.config.ConfigSource` is just a :code:`dict`, which merges\narbitrary dicts into one. It serves as the single source of truth for\napplication variability.\n\nYou can load a section of config values into your custom `attrs`_ class instance. ConfigSource will override values by environment variables if present.\n\n\n`config.toml`\n\n.. code-block:: toml\n\n log_level = \"DEBUG\"\n show_warnings = \"yes\"\n\n [foobar]\n some = \"value\"\n\n\n.. code-block:: bash\n\n export APP_FOOBAR_SOME=thing\n\n\n.. code-block:: python\n\n import attr\n import toml\n\n from buvar import config\n\n @attr.s(auto_attribs=True)\n class GeneralConfig:\n log_level: str = \"INFO\"\n show_warnings: bool = config.bool_var(False)\n\n\n @attr.s(auto_attribs=True)\n class FoobarConfig:\n some: str\n\n\n source = config.ConfigSource(toml.load('config.toml'), env_prefix=\"APP\")\n\n general_config = source.load(GeneralConfig)\n assert general_config == GeneralConfig(log_level=\"DEBUG\", show_warnings=True)\n\n foobar_config = source.load(FoobarConfig, 'foobar')\n assert foobar_config.some == \"thing\"\n\n\nThere is a shortcut to the above approach provided by\n:code:`buvar.config.Config`, which requires to be subclassed from it with a\ndistinct :code:`section` attribute. If one adds a :code:`buvar.config.ConfigSource`\ncomponent, he will receive the mapped config in one call.\n\n.. code-block:: python\n\n from buvar import config, plugin\n\n\n @attr.s(auto_attribs=True)\n class GeneralConfig(config.Config):\n log_level: str = \"INFO\"\n show_warnings: bool = config.bool_var(False)\n\n\n @attr.s(auto_attribs=True)\n class FoobarConfig(config.Config, section=\"foobar\"):\n some: str\n\n\n async def prepare(load: plugin.Loader):\n # this would by typically placed in the main CLI entry point\n source = context.add(config.ConfigSource(toml.load('config.toml'), env_prefix=\"APP\"))\n\n # to provide the adapter to di, which could also be done in the main entry point\n await load(config)\n foobar_config = await di.nject(FoobarConfig)\n\n\na structlog\n-----------\n\nJust `structlog`_ boilerplate.\n\n.. code-block:: python\n\n import sys\n\n from buvar import log\n\n log_config = log.LogConfig(tty=sys.stdout.isatty(), level=\"DEBUG\")\n log_config.setup()\n\n\nforked process and shared sockets\n---------------------------------\n\nYou may fork your process and bind and share sockets, to leverage available\nCPUs e.g. for serving an aiohttp microservice.\n\nSignals like INT, TERM, HUP are forwarded to the child processes.\n\n\n.. code-block:: python\n\n import aiohttp.web\n from buvar import fork, plugin, di, context\n from buvar_aiohttp import AioHttpConfig\n\n\n async def hello(request):\n return aiohttp.web.Response(body=b\"Hello, world\")\n\n\n async def prepare_aiohttp(load: plugin.Loader):\n await load(\"buvar_aiohttp\")\n\n app = await di.nject(aiohttp.web.Application)\n app.router.add_route(\"GET\", \"/\", hello)\n\n\n context.add(AioHttpConfig(host=\"0.0.0.0\", port=5678))\n\n fork.stage(prepare_aiohttp, forks=0, sockets=[\"tcp://:5678\"])\n\n\npytest\n------\n\nThere are a couple of pytest fixtures provided to get your context into a\nreasonable state:\n\n:code:`buvar_config_source`\n A :code:`dict` with arbitrary application settings.\n\n:code:`buvar_context`\n The basic context staging operates on.\n\n:code:`buvar_stage`\n The actual stage processing all plugins.\n\n:code:`buvar_load`\n The loader to add plugins to the stage.\n\n:code:`buvar_plugin_context`\n The context all plugins share, when they are prepared.\n\n\nFollowing markers may be applied to a test\n\n:code:`buvar_plugins(plugin, ...)`\n Load all plugins into plugin context.\n\n\n.. code-block:: python\n\n import pytest\n\n\n async def prepare():\n from buvar import context\n\n context.add(\"foobar\")\n\n\n @pytest.mark.asyncio\n @pytest.mark.buvar_plugins(\"tests.test_testing\")\n async def test_wrapped_stage_context():\n from buvar import context, plugin\n\n assert context.get(str) == \"foobar\"\n assert context.get(plugin.Cancel)\n\n\n @pytest.mark.asyncio\n @pytest.mark.buvar_plugins()\n async def test_wrapped_stage_context_load(buvar_load):\n from buvar import context, plugin\n\n await buvar_load(prepare)\n assert context.get(str) == \"foobar\"\n assert context.get(plugin.Cancel)\n\n\n.. _Pyramid: https://github.com/Pylons/pyramid\n.. _structlog: https://www.structlog.org/en/stable/\n.. _attrs: https://www.attrs.org/en/stable/\n\n\n\n", "description_content_type": "text/x-rst", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://gitlab.com/diefans/buvar", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "buvar", "package_url": "https://pypi.org/project/buvar/", "platform": "", "project_url": "https://pypi.org/project/buvar/", "project_urls": { "Homepage": "https://gitlab.com/diefans/buvar" }, "release_url": "https://pypi.org/project/buvar/0.43.0/", "requires_dist": [ "attrs", "cattrs", "multidict (<5.0,>=4.5)", "structlog (>=20.1.0)", "toml (>=0.10)", "tomlkit (>=0.5.3)", "typing-inspect (>=0.4.0)", "cached-property", "uritools", "pytest (>=4.6) ; extra == 'all'", "pytest-cov (>=^2.7) ; extra == 'all'", "pytest-asyncio (>=0.11.0) ; extra == 'all'", "pytest-benchmark (>=3.2.2) ; extra == 'all'", "mock (>=3.0) ; extra == 'all'", "pytest-mock (>=1.10) ; extra == 'all'", "pytest-watch (>=4.2) ; extra == 'all'", "pytest-randomly (>=3.1) ; extra == 'all'", "pytest-doctestplus (>=0.5) ; extra == 'all'", "pytest-anything ; extra == 'all'", "commitizen ; extra == 'all'", "pre-commit ; extra == 'all'", "pdbpp ; extra == 'all'", "ipython ; extra == 'all'", "commitizen ; extra == 'dev'", "pre-commit ; extra == 'dev'", "pdbpp ; extra == 'dev'", "ipython ; extra == 'dev'", "pytest (>=4.6) ; extra == 'tests'", "pytest-cov (>=^2.7) ; extra == 'tests'", "pytest-asyncio (>=0.11.0) ; extra == 'tests'", "pytest-benchmark (>=3.2.2) ; extra == 'tests'", "mock (>=3.0) ; extra == 'tests'", "pytest-mock (>=1.10) ; extra == 'tests'", "pytest-watch (>=4.2) ; extra == 'tests'", "pytest-randomly (>=3.1) ; extra == 'tests'", "pytest-doctestplus (>=0.5) ; extra == 'tests'", "pytest-anything ; extra == 'tests'" ], "requires_python": ">=3.7,<4.0", "summary": "Asyncio plugins, components, dependency injection and configs", "version": "0.43.0", "yanked": false, "yanked_reason": null }, "last_serial": 10997698, "releases": { "0.10.0": [ { "comment_text": "", "digests": { "md5": "5ce4cd22e19fe708381514f80fd99c82", "sha256": "db7cdf158b24ddda9247c6a0979521d0d782ac9543fefa833cf7636d9f9096cf" }, "downloads": -1, "filename": "buvar-0.10.0.tar.gz", "has_sig": false, "md5_digest": "5ce4cd22e19fe708381514f80fd99c82", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 23805, "upload_time": "2019-07-15T09:53:26", "upload_time_iso_8601": "2019-07-15T09:53:26.909385Z", "url": "https://files.pythonhosted.org/packages/0d/aa/5521fdebcaacaa83a33fa741d53b7cc5f82a8d1faf9495c6f2b2dd9709cb/buvar-0.10.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.10.1": [ { "comment_text": "", "digests": { "md5": "5d31f7dbff8de1c5072698022b163696", "sha256": "0c600e845e2a5e603db76daec57dfa93ef6facb659364d6a5c5cc6fc676d54dc" }, "downloads": -1, "filename": "buvar-0.10.1.tar.gz", "has_sig": false, "md5_digest": "5d31f7dbff8de1c5072698022b163696", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 23863, "upload_time": "2019-07-15T20:23:32", "upload_time_iso_8601": "2019-07-15T20:23:32.093632Z", "url": "https://files.pythonhosted.org/packages/df/b7/030d4cb4d005f609689b9d29574a0a3e3368e72313f014b21a5608e085f6/buvar-0.10.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.11.0": [ { "comment_text": "", "digests": { "md5": "9850563566b941d620cbc4eccf31ab52", "sha256": "aee529ddd2c0da939953d53b6dcfc205e581b8a2ab58a3d31b6a3dda35f26fa0" }, "downloads": -1, "filename": "buvar-0.11.0.tar.gz", "has_sig": false, "md5_digest": "9850563566b941d620cbc4eccf31ab52", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 519359, "upload_time": "2019-07-30T23:08:12", "upload_time_iso_8601": "2019-07-30T23:08:12.135148Z", "url": "https://files.pythonhosted.org/packages/f2/80/a7c45a4bf911151faa411402335c5fb642d372c31248c83ced675219e591/buvar-0.11.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.12.0": [ { "comment_text": "", "digests": { "md5": "eb99fbc522b828eb039d3a0c2f3c91ff", "sha256": "b0d3499b55c4445a87abdfcb23754283baf27b577067e80234fe996a54bd854f" }, "downloads": -1, "filename": "buvar-0.12.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "eb99fbc522b828eb039d3a0c2f3c91ff", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6,<4.0", "size": 534706, "upload_time": "2019-10-08T07:37:45", "upload_time_iso_8601": "2019-10-08T07:37:45.560388Z", "url": "https://files.pythonhosted.org/packages/2e/c0/9bbf2e0334b24a85a850a8f9e327eebd8f78312b2c0f79165b06dc1c735d/buvar-0.12.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4f1856ee762c23391527a8b47e032e2f", "sha256": "9961512d9ca896365f757665216a60a9dfcdfad03113b1904d0559b9530f1ac8" }, "downloads": -1, "filename": "buvar-0.12.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4f1856ee762c23391527a8b47e032e2f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6,<4.0", "size": 534272, "upload_time": "2019-10-08T07:37:53", "upload_time_iso_8601": "2019-10-08T07:37:53.110784Z", "url": "https://files.pythonhosted.org/packages/a6/7b/cfd98fd78a32cbfd665924f9a5ef4ac29bdcfc7088df6b17fe616cfdf07b/buvar-0.12.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "912923e24ac15a7931778863d155e790", "sha256": "0969562c538b27f0bcba075b474d04c732d4e13971e2a36b4ab3808e432c00d4" }, "downloads": -1, "filename": "buvar-0.12.0.tar.gz", "has_sig": false, "md5_digest": "912923e24ac15a7931778863d155e790", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 153427, "upload_time": "2019-10-08T07:35:32", "upload_time_iso_8601": "2019-10-08T07:35:32.295231Z", "url": "https://files.pythonhosted.org/packages/3b/ff/1793dd798db18b36b9e94d19d8155a1fa75e09936ad458825fc3d5d9a8f0/buvar-0.12.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.13.0": [ { "comment_text": "", "digests": { "md5": "15fa0329763538e49e719a3971d85d3f", "sha256": "c8d67c21446dd4df39f6457a1d9fa0ce05f12e4e432afb02cc128d3b53de1474" }, "downloads": -1, "filename": "buvar-0.13.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "15fa0329763538e49e719a3971d85d3f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6,<4.0", "size": 536780, "upload_time": "2019-10-14T12:49:32", "upload_time_iso_8601": "2019-10-14T12:49:32.037601Z", "url": "https://files.pythonhosted.org/packages/c6/78/1919414cbb611958a0505a2872d5e3b231d276961d4ac2b87292e42cd7f7/buvar-0.13.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7e3c860e03ab667f08fae3452088264f", "sha256": "4904c8fab4133a0a85caba134aad5de9b11bee8547eb8391ce6c5f45a6814ac8" }, "downloads": -1, "filename": "buvar-0.13.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7e3c860e03ab667f08fae3452088264f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6,<4.0", "size": 536955, "upload_time": "2019-10-14T12:49:34", "upload_time_iso_8601": "2019-10-14T12:49:34.058974Z", "url": "https://files.pythonhosted.org/packages/0e/42/e7ce2c9708f269525a937db42d622ea988159edc7633f094402779bf3d83/buvar-0.13.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1be4d549906b9406cc21e5066d39a8e0", "sha256": "c31450158ba5b6a20fa1cce183daa74cde1b73aa49d89fac51853ac93ed9e8db" }, "downloads": -1, "filename": "buvar-0.13.0.tar.gz", "has_sig": false, "md5_digest": "1be4d549906b9406cc21e5066d39a8e0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 153430, "upload_time": "2019-10-14T12:49:36", "upload_time_iso_8601": "2019-10-14T12:49:36.369013Z", "url": "https://files.pythonhosted.org/packages/d5/d9/96ffa5571e787f6a06eaf6bfa745e1e0c2b6f1cbad5821d43e6f16e100d2/buvar-0.13.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.14.0": [ { "comment_text": "", "digests": { "md5": "e7176147a6db949e3af2dc1a5d83cc89", "sha256": "6d900fb0c2302c4dc388c548f2e40a5ea0c19dc1d7fc38710b551fe7deaa1501" }, "downloads": -1, "filename": "buvar-0.14.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e7176147a6db949e3af2dc1a5d83cc89", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6,<4.0", "size": 536687, "upload_time": "2019-10-14T13:33:30", "upload_time_iso_8601": "2019-10-14T13:33:30.837940Z", "url": "https://files.pythonhosted.org/packages/7c/b6/22f9cfad2f878cb5a7e3e23f07e7f8761ad68a435b4d13fcfc75c717cf0f/buvar-0.14.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5e5a5c5f1c2584ecb76597dbe406b826", "sha256": "846a7777f2abbc08e1641089edaf71f173eae02f4ea7ca84002ffc6a83f82611" }, "downloads": -1, "filename": "buvar-0.14.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5e5a5c5f1c2584ecb76597dbe406b826", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6,<4.0", "size": 536896, "upload_time": "2019-10-14T13:33:32", "upload_time_iso_8601": "2019-10-14T13:33:32.894790Z", "url": "https://files.pythonhosted.org/packages/a0/24/97d3d2322cc97fe65c4186136e137e4784a75bf081a0c9ceb0e5bc1850dd/buvar-0.14.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "41e80736714cf8a914690558137b884e", "sha256": "391915c30bd4ff14eca45883d41e08bc9af1e6cb9efdb2503ac8d4bc5c8aed95" }, "downloads": -1, "filename": "buvar-0.14.0.tar.gz", "has_sig": false, "md5_digest": "41e80736714cf8a914690558137b884e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 153366, "upload_time": "2019-10-14T13:33:35", "upload_time_iso_8601": "2019-10-14T13:33:35.069735Z", "url": "https://files.pythonhosted.org/packages/a0/d1/2823d87c7e90e224e155a54db339616f3389507c5175252f03fbb2b481e5/buvar-0.14.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.16.0": [ { "comment_text": "", "digests": { "md5": "ee395d47087fe85242e69a631b991901", "sha256": "76912ef3135343b790d2da97f31910002697ffc1935a9bd486eccf3d1cd0e69a" }, "downloads": -1, "filename": "buvar-0.16.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ee395d47087fe85242e69a631b991901", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6,<4.0", "size": 539460, "upload_time": "2019-10-25T13:48:11", "upload_time_iso_8601": "2019-10-25T13:48:11.798923Z", "url": "https://files.pythonhosted.org/packages/38/ad/f2a59944a95a0e5665ee171a85293ef51dc9f48c8f9d01c59654908b86b0/buvar-0.16.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6b72e379dfd1f6dad63b990a1ff1a3fb", "sha256": "4841cd65db8dfb6814f621a738d1cdfa9c9f57397444e34a4e5ac99de42d1010" }, "downloads": -1, "filename": "buvar-0.16.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6b72e379dfd1f6dad63b990a1ff1a3fb", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6,<4.0", "size": 539134, "upload_time": "2019-10-25T13:48:21", "upload_time_iso_8601": "2019-10-25T13:48:21.400231Z", "url": "https://files.pythonhosted.org/packages/93/1c/df5fd114f36ab31cdb1e124c348133ce367c2ee3c85540c02d4b0ade930d/buvar-0.16.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8596c865afbf41094827e769017b26d9", "sha256": "625f44299c3d216eebd1a9fc6b020e7e1d6f20ab10a5888f493cce0156f1e528" }, "downloads": -1, "filename": "buvar-0.16.0.tar.gz", "has_sig": false, "md5_digest": "8596c865afbf41094827e769017b26d9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 154167, "upload_time": "2019-10-25T13:48:25", "upload_time_iso_8601": "2019-10-25T13:48:25.888850Z", "url": "https://files.pythonhosted.org/packages/cb/e1/84d2a60f4d320439f23737666aeefef65255c82c28c2d618c5edd627460f/buvar-0.16.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.17.0": [ { "comment_text": "", "digests": { "md5": "fa885c06a3ab3e8a6cc15ae5edcb01a0", "sha256": "fc6d21728be8713da4882c046df18d00a7c959cc5aa2d7dac23453be72553713" }, "downloads": -1, "filename": "buvar-0.17.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "fa885c06a3ab3e8a6cc15ae5edcb01a0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6,<4.0", "size": 538818, "upload_time": "2019-10-30T12:45:07", "upload_time_iso_8601": "2019-10-30T12:45:07.228408Z", "url": "https://files.pythonhosted.org/packages/4c/2f/917433e054abe9e81f60b5f244aa3d1e94ec021eaafa961b798a3b58008d/buvar-0.17.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "888ea862d3a71bece04eaf77d04f9154", "sha256": "df8d2e9c9ce9b8bfc2b754738d30f987042f0a31b45186bedcd2525f66320dde" }, "downloads": -1, "filename": "buvar-0.17.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "888ea862d3a71bece04eaf77d04f9154", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6,<4.0", "size": 538516, "upload_time": "2019-10-30T12:45:10", "upload_time_iso_8601": "2019-10-30T12:45:10.037825Z", "url": "https://files.pythonhosted.org/packages/ab/8a/442bdd8741595298fc40a6f381ea3a28dc334e44e2d316d9de903a7c0736/buvar-0.17.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f5cb16e1f02a77716e8f4abd7caf36f9", "sha256": "9ec9ca9d5593c4492f995463beec882e2949701785a392fb39425cf2340b622c" }, "downloads": -1, "filename": "buvar-0.17.0.tar.gz", "has_sig": false, "md5_digest": "f5cb16e1f02a77716e8f4abd7caf36f9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 153524, "upload_time": "2019-10-30T12:45:12", "upload_time_iso_8601": "2019-10-30T12:45:12.068949Z", "url": "https://files.pythonhosted.org/packages/b7/0b/464827a7c5d2cf6f988295f5fc2d32bd195f31ce864c5a8418ed923e3d4f/buvar-0.17.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.18.0": [ { "comment_text": "", "digests": { "md5": "8e57a7b00cf7e7f96461e7bba0da3567", "sha256": "015f95609d78c289383f6cebe98cc7539ccf076f6fb92e0fdf92d2e745c28412" }, "downloads": -1, "filename": "buvar-0.18.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8e57a7b00cf7e7f96461e7bba0da3567", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6,<4.0", "size": 538602, "upload_time": "2019-11-04T15:47:52", "upload_time_iso_8601": "2019-11-04T15:47:52.531536Z", "url": "https://files.pythonhosted.org/packages/1d/db/16260c4faee5b0c923c3e8865b3c161be9dcc55f258deee6e10bbc44247a/buvar-0.18.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f4e5573b80111a827d61e8861d8f6b2e", "sha256": "1fca1077f13c549a2b0d13c3e53e7a67724968033762c8427b6e089d90c228b7" }, "downloads": -1, "filename": "buvar-0.18.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f4e5573b80111a827d61e8861d8f6b2e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6,<4.0", "size": 538000, "upload_time": "2019-11-04T15:48:02", "upload_time_iso_8601": "2019-11-04T15:48:02.108123Z", "url": "https://files.pythonhosted.org/packages/80/26/c51d55c34803b08819e222c2f32652ff94211911d9e93a9b1cb1f6fa12d5/buvar-0.18.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0c6c7710628befb64458fe9cdccfd7bb", "sha256": "f4b01e420c5fcad15fd3f4e39d7d6b3576bb9b22ee2b9beaf3ab4578bea2058d" }, "downloads": -1, "filename": "buvar-0.18.0.tar.gz", "has_sig": false, "md5_digest": "0c6c7710628befb64458fe9cdccfd7bb", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 153331, "upload_time": "2019-11-04T15:48:06", "upload_time_iso_8601": "2019-11-04T15:48:06.364105Z", "url": "https://files.pythonhosted.org/packages/d4/44/ae9479e4ff8b89573ceb099e540dc4086e9817bd19806222e1ea80ea47af/buvar-0.18.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.19.0": [ { "comment_text": "", "digests": { "md5": "b306935b84fd155caf8673c97c72152f", "sha256": "6b7f6fb7fe237aaf2f172fe8d5c23b0a04741ccdea18b03d8b2c8a56a7ad6265" }, "downloads": -1, "filename": "buvar-0.19.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b306935b84fd155caf8673c97c72152f", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6,<4.0", "size": 538591, "upload_time": "2019-11-11T13:57:43", "upload_time_iso_8601": "2019-11-11T13:57:43.994801Z", "url": "https://files.pythonhosted.org/packages/fb/12/fea668e7e5b190a754dd5833499a28fdee7c184d3026a84def3717a6c2aa/buvar-0.19.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "17e45f247b3dca7f5e8a9810f3394a15", "sha256": "975a1f9a3f29c5837cb3b613148506d4ee5ece6062bb6a67eda92d4b0b0c9ba8" }, "downloads": -1, "filename": "buvar-0.19.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "17e45f247b3dca7f5e8a9810f3394a15", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6,<4.0", "size": 538043, "upload_time": "2019-11-11T13:57:46", "upload_time_iso_8601": "2019-11-11T13:57:46.686867Z", "url": "https://files.pythonhosted.org/packages/79/10/d4959e94d30bd0773399a0baafc5aeef29b69aec08b70d4097b70a3609fa/buvar-0.19.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "558b5d6896b123b6c8f04347440edc6a", "sha256": "590b6e8a9d1d94b222f921e4b664489baf01dd20f63167715d7409de5183cabc" }, "downloads": -1, "filename": "buvar-0.19.0.tar.gz", "has_sig": false, "md5_digest": "558b5d6896b123b6c8f04347440edc6a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 153359, "upload_time": "2019-11-11T13:57:48", "upload_time_iso_8601": "2019-11-11T13:57:48.463157Z", "url": "https://files.pythonhosted.org/packages/ef/fb/2a4a9d2548ffb3ff9c2a142cb9c61cada3edb4aa94c68f21bffa42303573/buvar-0.19.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "5c6f8a9f1698e76918b60f7e34dc1da5", "sha256": "f61bc6bf2cbcafb296bd7fa013121a817405bdfdef9639e1ad1d3d3d4fba2f32" }, "downloads": -1, "filename": "buvar-0.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "5c6f8a9f1698e76918b60f7e34dc1da5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 7762, "upload_time": "2019-05-20T07:51:10", "upload_time_iso_8601": "2019-05-20T07:51:10.053102Z", "url": "https://files.pythonhosted.org/packages/fd/2c/3ce58485e3b01d4f7b53880867ab8260e90126239a9f8dfd6b2d3edf8e26/buvar-0.2.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ea7d40ce312b832dfe36915cc085427a", "sha256": "16da7b6fea630b21ab5d112251effb921eb0917fd6a1490fcfddbdc5c5a524cf" }, "downloads": -1, "filename": "buvar-0.2.0.tar.gz", "has_sig": false, "md5_digest": "ea7d40ce312b832dfe36915cc085427a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2471, "upload_time": "2019-05-20T07:51:11", "upload_time_iso_8601": "2019-05-20T07:51:11.882870Z", "url": "https://files.pythonhosted.org/packages/c9/08/a5974142d11e7ef8135fe80e71003ad3f54900f9343d117ec7d2a3c6951d/buvar-0.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.20.0": [ { "comment_text": "", "digests": { "md5": "b90deb8d09767fadce0142c390444f9a", "sha256": "4194951159eb68b272432597e66dc8f513e2c3ba85bc70c1eb8ccdeeba5a289a" }, "downloads": -1, "filename": "buvar-0.20.0-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b90deb8d09767fadce0142c390444f9a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6,<4.0", "size": 538754, "upload_time": "2019-11-18T12:36:45", "upload_time_iso_8601": "2019-11-18T12:36:45.157736Z", "url": "https://files.pythonhosted.org/packages/32/f5/42c32fa8b92adc746dd582ffb667cfbc4d3d638301e29da629c7fc7ced89/buvar-0.20.0-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "df1f616c85cf00dd29d34cb296dd121c", "sha256": "b0cca2fe155d06bd8d52335f4f9e47d076459546c1b3240fbb9a1e21b91411d4" }, "downloads": -1, "filename": "buvar-0.20.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "df1f616c85cf00dd29d34cb296dd121c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6,<4.0", "size": 538184, "upload_time": "2019-11-18T12:36:47", "upload_time_iso_8601": "2019-11-18T12:36:47.047845Z", "url": "https://files.pythonhosted.org/packages/bb/ce/532b2512996294d59730c07387dc6686a538771d9aa18ba4a37d583e2732/buvar-0.20.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b63c38e3d94b4197a21a68c6221c4eed", "sha256": "74c146f24d8dd8ffaa8fa7c706530bb9f0dae615077387921704a29c09c243c8" }, "downloads": -1, "filename": "buvar-0.20.0.tar.gz", "has_sig": false, "md5_digest": "b63c38e3d94b4197a21a68c6221c4eed", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 153463, "upload_time": "2019-11-18T12:36:48", "upload_time_iso_8601": "2019-11-18T12:36:48.931279Z", "url": "https://files.pythonhosted.org/packages/ff/83/6c3499ef747aff25deadaa24cc1e742956c7d4108e06a8208e3131584a19/buvar-0.20.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.20.1": [ { "comment_text": "", "digests": { "md5": "851756581fee3f5d022e8f4045c0699e", "sha256": "3940cf61330d9ba78b2c41ff3d35221d41e2b8aa1ddd465414cbfb31346907a6" }, "downloads": -1, "filename": "buvar-0.20.1-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "851756581fee3f5d022e8f4045c0699e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6,<4.0", "size": 538725, "upload_time": "2019-12-04T12:10:19", "upload_time_iso_8601": "2019-12-04T12:10:19.971444Z", "url": "https://files.pythonhosted.org/packages/4b/59/54fc31d7334eca3c19fd54cda8fc8cd92f415c27af5bad9f14415aa26427/buvar-0.20.1-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4dd0806ff38efd0cdedf6e03b37280fb", "sha256": "75cfa180cad36757a486b43f6a354605f30a877323f7fc1207e0aef8c13f26b5" }, "downloads": -1, "filename": "buvar-0.20.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "4dd0806ff38efd0cdedf6e03b37280fb", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6,<4.0", "size": 538151, "upload_time": "2019-12-04T12:10:22", "upload_time_iso_8601": "2019-12-04T12:10:22.076396Z", "url": "https://files.pythonhosted.org/packages/32/6f/ca7e0d7a74a40e56a49cae8757fc776f4b01e1594f63b3e9c9a7b92dabcd/buvar-0.20.1-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ab0d8fd77d77f228733ea8f0fb735136", "sha256": "3c5a8860a17af76770bd72eea0781e8a7a542c3d7e2332507034b3b4ec6a3a8d" }, "downloads": -1, "filename": "buvar-0.20.1.tar.gz", "has_sig": false, "md5_digest": "ab0d8fd77d77f228733ea8f0fb735136", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 153306, "upload_time": "2019-12-04T12:09:54", "upload_time_iso_8601": "2019-12-04T12:09:54.473337Z", "url": "https://files.pythonhosted.org/packages/9e/d3/43e6b9dea54b31c6ccfe762e3096f5c4ed127f3597b32fd22b04f19c8e47/buvar-0.20.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.20.2": [ { "comment_text": "", "digests": { "md5": "f0e8eced2f971c61f0e68bc9d188d7c5", "sha256": "8e13059e3ce88af55149ae7c5a794c6946e3837d36791bbc9ad8cf1951faffb2" }, "downloads": -1, "filename": "buvar-0.20.2-cp36-cp36m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f0e8eced2f971c61f0e68bc9d188d7c5", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": ">=3.6,<4.0", "size": 538706, "upload_time": "2019-12-04T12:20:28", "upload_time_iso_8601": "2019-12-04T12:20:28.627022Z", "url": "https://files.pythonhosted.org/packages/21/17/78e4e38c5658dc018720ded40937bcd16f2459ef4cfee214daa301080d79/buvar-0.20.2-cp36-cp36m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b48e0163b751d1399065340a6c0323d8", "sha256": "8563641c2e29f280b72a9fc2f342b04c973f541174f2d6101b9d537a8493e1b7" }, "downloads": -1, "filename": "buvar-0.20.2-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b48e0163b751d1399065340a6c0323d8", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.6,<4.0", "size": 538127, "upload_time": "2019-12-04T12:20:30", "upload_time_iso_8601": "2019-12-04T12:20:30.746467Z", "url": "https://files.pythonhosted.org/packages/0a/c4/09cd08692431b112bf1f5a0c827f019132693fbd6ad941dd1863c2659916/buvar-0.20.2-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a4d4e016fcd9db97b0ab0981af30183c", "sha256": "3a55449f95d9b074d3f682a54c6eef0a316e7a7fe3583d45c305c6d7aee88f02" }, "downloads": -1, "filename": "buvar-0.20.2.tar.gz", "has_sig": false, "md5_digest": "a4d4e016fcd9db97b0ab0981af30183c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 153338, "upload_time": "2019-12-04T12:20:39", "upload_time_iso_8601": "2019-12-04T12:20:39.589693Z", "url": "https://files.pythonhosted.org/packages/92/08/0e3c235936b4b500e5bbdb9b0fe738a91ac4121cff10d01bb5b38c71c365/buvar-0.20.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.20.3": [ { "comment_text": "", "digests": { "md5": "a767bce22454a73d22316b8610736879", "sha256": "7c2b15631df1cb1f845688b8f6234ffdc29dbe3494b06dced3eae65d17357af6" }, "downloads": -1, "filename": "buvar-0.20.3.tar.gz", "has_sig": false, "md5_digest": "a767bce22454a73d22316b8610736879", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 154487, "upload_time": "2020-02-18T09:36:29", "upload_time_iso_8601": "2020-02-18T09:36:29.304460Z", "url": "https://files.pythonhosted.org/packages/48/42/d3f7912f39f922807d73fe1fe9cf2a1c159994247cba0a59cb73b58a6164/buvar-0.20.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.21.0": [ { "comment_text": "", "digests": { "md5": "810d885b0d5e9f1e6233a4406fd54de1", "sha256": "de29e7c603e310dcc005609fd5473e49808312461501869d9cdf5e659acbe598" }, "downloads": -1, "filename": "buvar-0.21.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "810d885b0d5e9f1e6233a4406fd54de1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7,<4.0", "size": 370568, "upload_time": "2020-02-12T21:46:46", "upload_time_iso_8601": "2020-02-12T21:46:46.834240Z", "url": "https://files.pythonhosted.org/packages/7e/ff/c72f9b9c55a4962f5a969ddde909273853d2fde27424863c7e17fbe5f1a5/buvar-0.21.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ac3d9db70bda475ef591eef9cbfae0cc", "sha256": "90e04e808f4f204446a5bab0d06e88ae6ddd8855b2c2aa0af4d6972c149c35ad" }, "downloads": -1, "filename": "buvar-0.21.0-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ac3d9db70bda475ef591eef9cbfae0cc", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7,<4.0", "size": 433651, "upload_time": "2020-02-12T21:46:52", "upload_time_iso_8601": "2020-02-12T21:46:52.912615Z", "url": "https://files.pythonhosted.org/packages/c4/a0/e0aa249df266a21e0f5efe387995471c946e10986194858f8fb36040090e/buvar-0.21.0-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7476010e843ff33a672bb21b5b4b86a1", "sha256": "84d319f966969ec6e88e51a5aebfda4f5927e3d4d6f4edf092acae0093d5a42c" }, "downloads": -1, "filename": "buvar-0.21.0.tar.gz", "has_sig": false, "md5_digest": "7476010e843ff33a672bb21b5b4b86a1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 124490, "upload_time": "2020-02-12T21:46:27", "upload_time_iso_8601": "2020-02-12T21:46:27.530277Z", "url": "https://files.pythonhosted.org/packages/3c/a6/611dc45d09af68f5db9b9f2dd8edc6c865c75bc7190c5b6851ea1daf7711/buvar-0.21.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.21.1": [ { "comment_text": "", "digests": { "md5": "53b0dd15ff44db33abe4082e84802146", "sha256": "f2781cab4010630614322983dda1f9cc0cd26de1ff331e844cdaabed8344c796" }, "downloads": -1, "filename": "buvar-0.21.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "53b0dd15ff44db33abe4082e84802146", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7,<4.0", "size": 372206, "upload_time": "2020-02-12T22:51:01", "upload_time_iso_8601": "2020-02-12T22:51:01.771919Z", "url": "https://files.pythonhosted.org/packages/fa/d7/4a9e7a91045a5dd40a7fd40e060a04ad37730136196bb280c77cf30cc7c8/buvar-0.21.1-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0766d0b0903b09c1bc83ca7fb34f9817", "sha256": "512312bae67ec39f131fd8b4b5a53e2b3ae34244cab78d8844874953792d38c2" }, "downloads": -1, "filename": "buvar-0.21.1-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "0766d0b0903b09c1bc83ca7fb34f9817", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7,<4.0", "size": 435288, "upload_time": "2020-02-12T22:51:07", "upload_time_iso_8601": "2020-02-12T22:51:07.997431Z", "url": "https://files.pythonhosted.org/packages/a1/61/bb3ef06c1e8deef6839d1f4e39fcaad3e8ad7a557860a9018a3b48ee5ec5/buvar-0.21.1-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "99210b911dc9687b47b9a293399e2387", "sha256": "639b4f93a361df86a00aba3f46b2efcca92c513a95931cc1ecdc24b5fe75c4d2" }, "downloads": -1, "filename": "buvar-0.21.1.tar.gz", "has_sig": false, "md5_digest": "99210b911dc9687b47b9a293399e2387", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 126431, "upload_time": "2020-02-12T22:50:33", "upload_time_iso_8601": "2020-02-12T22:50:33.804240Z", "url": "https://files.pythonhosted.org/packages/ef/d7/dc1bced8cec2a79b2559561e928f882d44717f8af91dfaf889ab20762bd3/buvar-0.21.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.22.0": [ { "comment_text": "", "digests": { "md5": "6b8051bc4c50bae7b8de0d92c1f156e2", "sha256": "a4f3f1c444be4ed17e134b69633d2337dcd0bf97c02d4401f19204c8b8fe6978" }, "downloads": -1, "filename": "buvar-0.22.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6b8051bc4c50bae7b8de0d92c1f156e2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7,<4.0", "size": 372241, "upload_time": "2020-02-20T10:33:43", "upload_time_iso_8601": "2020-02-20T10:33:43.284271Z", "url": "https://files.pythonhosted.org/packages/03/3b/68e52175d09baecce54fcfa7e33cae393f65eac2132e1fff1b7a5372fbd8/buvar-0.22.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b2cbb1163e06d373f7dfe9b42ddb564f", "sha256": "c46d5a006f3ff6a245c9bce5ab948760bbed0bb4de95f2073edd9c52f3ce78c0" }, "downloads": -1, "filename": "buvar-0.22.0-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b2cbb1163e06d373f7dfe9b42ddb564f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7,<4.0", "size": 435284, "upload_time": "2020-02-20T10:33:46", "upload_time_iso_8601": "2020-02-20T10:33:46.317694Z", "url": "https://files.pythonhosted.org/packages/50/46/0b9105227913623209f6d405519150645a67b38479c468a6997cf13407e6/buvar-0.22.0-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cb44ecae166c0b1c0b944746e1580016", "sha256": "b6679e0b8467fa2ab90fe4b3b26d8a52889ef9b199aff1426a636b6f21a2454c" }, "downloads": -1, "filename": "buvar-0.22.0.tar.gz", "has_sig": false, "md5_digest": "cb44ecae166c0b1c0b944746e1580016", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 126705, "upload_time": "2020-02-20T10:33:23", "upload_time_iso_8601": "2020-02-20T10:33:23.119382Z", "url": "https://files.pythonhosted.org/packages/6a/d9/1a1ce22ac0cd0601e8388cd388fdc7d21fa67ad9894fdfd76ef1163ab81c/buvar-0.22.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.23.0": [ { "comment_text": "", "digests": { "md5": "30e14131844526293dfa11c6d5302123", "sha256": "9e77ddf77520e62f25df18701515fe09e1519497f236d3ee6f62663fbfa12fc0" }, "downloads": -1, "filename": "buvar-0.23.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "30e14131844526293dfa11c6d5302123", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7,<4.0", "size": 372330, "upload_time": "2020-03-06T19:53:38", "upload_time_iso_8601": "2020-03-06T19:53:38.601416Z", "url": "https://files.pythonhosted.org/packages/34/b5/6a4408dce5db8689a90448789b167258cb3d94d9596f1639e825e6b65771/buvar-0.23.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5109d31c38cd1d2139eaf99551886a51", "sha256": "b96c375b9dec4014160059c78e01744beafec06f31f8d00b585147895e6b0ea4" }, "downloads": -1, "filename": "buvar-0.23.0-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "5109d31c38cd1d2139eaf99551886a51", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7,<4.0", "size": 435396, "upload_time": "2020-03-06T19:53:44", "upload_time_iso_8601": "2020-03-06T19:53:44.729483Z", "url": "https://files.pythonhosted.org/packages/15/06/79314b6b7702de5331a1a0b2c905d1418454707335e5d3c4d66265ee6d07/buvar-0.23.0-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3ab6d68fb797f22fbfc6e46db96d2185", "sha256": "0f6fbe6434142286eceb10d74515a0cab6e877a026f2ac0ce8c967148d245cdb" }, "downloads": -1, "filename": "buvar-0.23.0.tar.gz", "has_sig": false, "md5_digest": "3ab6d68fb797f22fbfc6e46db96d2185", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 126819, "upload_time": "2020-03-06T19:54:07", "upload_time_iso_8601": "2020-03-06T19:54:07.936325Z", "url": "https://files.pythonhosted.org/packages/63/41/8e5847431da9370bda1ab900d82b4bc9a23b8ae0f022347ae4acee9873e9/buvar-0.23.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.23.1": [ { "comment_text": "", "digests": { "md5": "cba2b03abe5869a02e3faea6d0d7842b", "sha256": "9f7209cd0fa26ff1a26716b691818cc0bdf8b9e0380091b027c2065b51633174" }, "downloads": -1, "filename": "buvar-0.23.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "cba2b03abe5869a02e3faea6d0d7842b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7,<4.0", "size": 372610, "upload_time": "2020-03-09T19:32:54", "upload_time_iso_8601": "2020-03-09T19:32:54.759994Z", "url": "https://files.pythonhosted.org/packages/d5/e0/3b174348582ca75eba136d73b6ddf190eb82026fc8033d20911eaa683a28/buvar-0.23.1-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fd520f9f7f87461ef7be48cf3f0680a0", "sha256": "83e8753f7d868d25bd70b957801917762cfeba6d9b041878f964ce91e1276c9c" }, "downloads": -1, "filename": "buvar-0.23.1-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "fd520f9f7f87461ef7be48cf3f0680a0", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7,<4.0", "size": 435082, "upload_time": "2020-03-09T19:33:01", "upload_time_iso_8601": "2020-03-09T19:33:01.139753Z", "url": "https://files.pythonhosted.org/packages/43/ba/adb92fc16818358c750713fef6c9405bc7a9e92ad1a7e4bb15a693a80413/buvar-0.23.1-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a4de160a3f0db1901903f88765838ea6", "sha256": "405707a7396c1b1714cdba621fe9247ab61b8a784000a69d67fc13c72e55d1d7" }, "downloads": -1, "filename": "buvar-0.23.1.tar.gz", "has_sig": false, "md5_digest": "a4de160a3f0db1901903f88765838ea6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 126814, "upload_time": "2020-03-09T19:33:04", "upload_time_iso_8601": "2020-03-09T19:33:04.067314Z", "url": "https://files.pythonhosted.org/packages/ec/0f/a7e69e80b18ff70db4f71959e3bbf788a65196502ab1af0bbe550cabeca6/buvar-0.23.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.24.0": [ { "comment_text": "", "digests": { "md5": "d61a8986a02fc91ba028c1824472ba59", "sha256": "4efcb4235595284b5250691c4acff6d7d152b3f06767032490cdf9860d6c12f0" }, "downloads": -1, "filename": "buvar-0.24.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d61a8986a02fc91ba028c1824472ba59", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7,<4.0", "size": 373926, "upload_time": "2020-03-13T09:57:10", "upload_time_iso_8601": "2020-03-13T09:57:10.615181Z", "url": "https://files.pythonhosted.org/packages/f0/3d/c6c2508db604966c6771cd36f211c62b1ca9d90af34c6f4490e6057fb5c5/buvar-0.24.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8908ad3be49f2071090697aa916beec8", "sha256": "1cf5474f24b6fc5d6cba7aa4f2092f06bb6e100ef95b270355c40d4a8219cad2" }, "downloads": -1, "filename": "buvar-0.24.0-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8908ad3be49f2071090697aa916beec8", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7,<4.0", "size": 436398, "upload_time": "2020-03-13T09:57:16", "upload_time_iso_8601": "2020-03-13T09:57:16.982396Z", "url": "https://files.pythonhosted.org/packages/8c/32/5d04b23800285b6e85129d91dc6981e7f334ec6940124a6a72f5d9f47388/buvar-0.24.0-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "677fb778b3b6a804ae49c9c547bff9a6", "sha256": "4f938083c451ee273db3e4b8375afab6c04d9e390c81b3daf924160e83aa462b" }, "downloads": -1, "filename": "buvar-0.24.0.tar.gz", "has_sig": false, "md5_digest": "677fb778b3b6a804ae49c9c547bff9a6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 127708, "upload_time": "2020-03-13T09:57:20", "upload_time_iso_8601": "2020-03-13T09:57:20.567901Z", "url": "https://files.pythonhosted.org/packages/90/f1/7ea217e5636edbf006e41c194972ffd96ec9871a09c6a31be0b885245946/buvar-0.24.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.25.0": [ { "comment_text": "", "digests": { "md5": "edcbe2a35895bd963629413dcc771b88", "sha256": "afd775fbb9c15adebc8df45948765cd4bb0ced1b43b331ebbd9fefd181bd4fd9" }, "downloads": -1, "filename": "buvar-0.25.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "edcbe2a35895bd963629413dcc771b88", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7,<4.0", "size": 375577, "upload_time": "2020-03-16T20:01:44", "upload_time_iso_8601": "2020-03-16T20:01:44.772466Z", "url": "https://files.pythonhosted.org/packages/3a/3f/0297893faa5627b9f11016853dc06a3bb1969b4d109d1108e425784e851e/buvar-0.25.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2b0c7e7a81343a12580a8bf2b702d053", "sha256": "0866524d460c504627c45c48534fec77518474a2e0fa0c8201f97f8ab3a5cfef" }, "downloads": -1, "filename": "buvar-0.25.0-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2b0c7e7a81343a12580a8bf2b702d053", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7,<4.0", "size": 438053, "upload_time": "2020-03-16T20:01:50", "upload_time_iso_8601": "2020-03-16T20:01:50.672397Z", "url": "https://files.pythonhosted.org/packages/12/30/d18b3be439a62719e3739ed5e0085cbb7929d6dcf10cc9de5db54564e604/buvar-0.25.0-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dde43483f01f83211f56ada5a453be25", "sha256": "b1775534e1a51879634e27c9f037a735b23412e786e37648b77a8394d33a6ad6" }, "downloads": -1, "filename": "buvar-0.25.0.tar.gz", "has_sig": false, "md5_digest": "dde43483f01f83211f56ada5a453be25", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 129072, "upload_time": "2020-03-16T20:01:53", "upload_time_iso_8601": "2020-03-16T20:01:53.403655Z", "url": "https://files.pythonhosted.org/packages/1b/f5/e03c07739d4ec135363f30d2b03e8c3eee6b1decb3dedb965d95ae00f7e5/buvar-0.25.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.26.0": [ { "comment_text": "", "digests": { "md5": "ec9b7aa081f396be88345ca9f75cd43c", "sha256": "e43672f914f7bdbd5e4fbf37ff96b4938abd53509d0e7d0bd6d8b0f2b98264c4" }, "downloads": -1, "filename": "buvar-0.26.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "ec9b7aa081f396be88345ca9f75cd43c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7,<4.0", "size": 375680, "upload_time": "2020-03-18T22:06:20", "upload_time_iso_8601": "2020-03-18T22:06:20.783413Z", "url": "https://files.pythonhosted.org/packages/fc/e0/9e86c6b07f897007bbe49df6b984fc3d052ed70f5bce4c53e4ba8857658e/buvar-0.26.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "584f33d4e9d593beae35c7bea6c0eeb3", "sha256": "7d94c4e1df294ed35c4bca1fc47344d8bfe3b4450d0e0f467ad004e0a6b2c5f7" }, "downloads": -1, "filename": "buvar-0.26.0-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "584f33d4e9d593beae35c7bea6c0eeb3", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7,<4.0", "size": 438160, "upload_time": "2020-03-18T22:06:26", "upload_time_iso_8601": "2020-03-18T22:06:26.450995Z", "url": "https://files.pythonhosted.org/packages/37/32/a3c1e70133941cdc6c18d8880fecb6620a2481237a7e73d99683cd6361d8/buvar-0.26.0-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d5804f7875c3df4b3c2276d80770f169", "sha256": "7d10565c59981b412be84d82f4f90685d200f84c691a5b36dc476f08afcd2e3a" }, "downloads": -1, "filename": "buvar-0.26.0.tar.gz", "has_sig": false, "md5_digest": "d5804f7875c3df4b3c2276d80770f169", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 129140, "upload_time": "2020-03-18T22:06:29", "upload_time_iso_8601": "2020-03-18T22:06:29.768957Z", "url": "https://files.pythonhosted.org/packages/01/a6/3ca4153d1a1acc999742257d1851854fc26e05976a3fe0917fc6ff4a7004/buvar-0.26.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.27.0": [ { "comment_text": "", "digests": { "md5": "be892bcc29d490447bb2bf3870ae8c41", "sha256": "7a6feb28d8992231c05f76598da3ab2ae6a88184b503aa04001ebb6f429eed06" }, "downloads": -1, "filename": "buvar-0.27.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "be892bcc29d490447bb2bf3870ae8c41", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7,<4.0", "size": 375730, "upload_time": "2020-03-20T15:17:43", "upload_time_iso_8601": "2020-03-20T15:17:43.457281Z", "url": "https://files.pythonhosted.org/packages/f8/c4/ef171a7fcf02659ff7c79c77008355c9851b01ba92776a9b1a7b7e13bdb5/buvar-0.27.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cb74a4649109c04755864f7faaf7a27f", "sha256": "7766d38cd77885fe9b095b3f22ca27cef207adc3cb13f527c39635be944580ab" }, "downloads": -1, "filename": "buvar-0.27.0-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "cb74a4649109c04755864f7faaf7a27f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7,<4.0", "size": 438212, "upload_time": "2020-03-20T15:17:50", "upload_time_iso_8601": "2020-03-20T15:17:50.746372Z", "url": "https://files.pythonhosted.org/packages/b4/2e/02fca0ab0ee9f48cbff8cb9b639ae92725ac3b6ec5d67dcfe504618c970d/buvar-0.27.0-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9a54f6c0b31488542baef790cff0a072", "sha256": "10eaf8225655a82395fa63be72e9564095dd00601d5bf16185aeedcdaaa75269" }, "downloads": -1, "filename": "buvar-0.27.0.tar.gz", "has_sig": false, "md5_digest": "9a54f6c0b31488542baef790cff0a072", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 129206, "upload_time": "2020-03-20T15:17:54", "upload_time_iso_8601": "2020-03-20T15:17:54.029861Z", "url": "https://files.pythonhosted.org/packages/98/c3/d130075fa64659f0d2f784419343cc293b75827906f0abde03ee8d1b8202/buvar-0.27.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.28.0": [ { "comment_text": "", "digests": { "md5": "021ab4e1321de6ce08fb23ad825431e9", "sha256": "af9a877932ffc6ee92191154580d7242751c80c9df50d33c98e6ac1b9d7f7f3b" }, "downloads": -1, "filename": "buvar-0.28.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "021ab4e1321de6ce08fb23ad825431e9", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7,<4.0", "size": 376228, "upload_time": "2020-03-25T18:42:12", "upload_time_iso_8601": "2020-03-25T18:42:12.422235Z", "url": "https://files.pythonhosted.org/packages/7b/f3/6629ed273865f188e36126778c57f332dbccdd7703caf548470de9020393/buvar-0.28.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "72e582d2b6b6a4e7390cb7a0e91da16d", "sha256": "90e840e0c8f936de8411ca24f525555d3fa5f6516c855ee3aecdab8850fecfa5" }, "downloads": -1, "filename": "buvar-0.28.0-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "72e582d2b6b6a4e7390cb7a0e91da16d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7,<4.0", "size": 438706, "upload_time": "2020-03-25T18:42:19", "upload_time_iso_8601": "2020-03-25T18:42:19.446324Z", "url": "https://files.pythonhosted.org/packages/99/ba/c67e661fffefb282ede54347dfb4c14176ea27891302e9fab4f543406d84/buvar-0.28.0-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "db9fcc79c721732770e459871f0cd96b", "sha256": "532ba4d769e2aa86b506af4b7f2c1d5a563b18b4a25fe361a048eadac8cb89cf" }, "downloads": -1, "filename": "buvar-0.28.0.tar.gz", "has_sig": false, "md5_digest": "db9fcc79c721732770e459871f0cd96b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 129509, "upload_time": "2020-03-25T18:42:22", "upload_time_iso_8601": "2020-03-25T18:42:22.484974Z", "url": "https://files.pythonhosted.org/packages/09/04/f6afe1cb491d9d4dc8ae31b1df78d08ee1bc0b57c1135676e37468c95fd1/buvar-0.28.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.28.1": [ { "comment_text": "", "digests": { "md5": "3ff48ccc8f3b4225e87b6cf8aaa94c31", "sha256": "8702513729e0583280a313375f65aa80ed097bbd753b424e14bd7cab297d626b" }, "downloads": -1, "filename": "buvar-0.28.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "3ff48ccc8f3b4225e87b6cf8aaa94c31", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7,<4.0", "size": 376228, "upload_time": "2020-03-26T10:50:14", "upload_time_iso_8601": "2020-03-26T10:50:14.856926Z", "url": "https://files.pythonhosted.org/packages/2f/e4/af60167bd1a343d46ac33f3038ceb8fbc0a64a6da2c0d9bf095291737bf1/buvar-0.28.1-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "38cc4803d566af7cac1ac394bbb39dd9", "sha256": "5f20c7fcb9f8f53449ccec13dfc92cc50b4c2b4e4f07df2e6c7d4ec3518020a0" }, "downloads": -1, "filename": "buvar-0.28.1-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "38cc4803d566af7cac1ac394bbb39dd9", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7,<4.0", "size": 438710, "upload_time": "2020-03-26T12:04:25", "upload_time_iso_8601": "2020-03-26T12:04:25.474885Z", "url": "https://files.pythonhosted.org/packages/25/af/e83ce30a413fbbb9573edb3d27b53b9d0a04c0ee7457532828b143edddc7/buvar-0.28.1-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "042d7818b12a73ba7ca71f96ccd3c0ec", "sha256": "5bb7a848cfbeabe157501bebaa19b9a4dbb95b3eda3e65c72d1b08f1bac8881d" }, "downloads": -1, "filename": "buvar-0.28.1.tar.gz", "has_sig": false, "md5_digest": "042d7818b12a73ba7ca71f96ccd3c0ec", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 129511, "upload_time": "2020-03-26T12:04:28", "upload_time_iso_8601": "2020-03-26T12:04:28.254344Z", "url": "https://files.pythonhosted.org/packages/dd/6f/e7a5dfb51025ee3b5f654bde6aac9db07f961039798a820af9d4e77b0681/buvar-0.28.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.29.0": [ { "comment_text": "", "digests": { "md5": "e8cff0d959190a4dd1df62ca41c39a34", "sha256": "e16fc82641fbdda6799985f469e7b1d4e282f4a2ebba110752dd981db646a6e1" }, "downloads": -1, "filename": "buvar-0.29.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e8cff0d959190a4dd1df62ca41c39a34", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7,<4.0", "size": 376310, "upload_time": "2020-03-26T20:14:06", "upload_time_iso_8601": "2020-03-26T20:14:06.465298Z", "url": "https://files.pythonhosted.org/packages/e2/c1/83dc7d8ac0eefea5f5933f8401dd0ca4f7416628016fab9af0ac6973893e/buvar-0.29.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e89193565f40253f16a0d856a523c37a", "sha256": "afbe4f1ffdc69e4748473abb8c0ed03ccd81a54cf4317d2f816c8a3086948dac" }, "downloads": -1, "filename": "buvar-0.29.0-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e89193565f40253f16a0d856a523c37a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7,<4.0", "size": 438799, "upload_time": "2020-03-26T20:14:14", "upload_time_iso_8601": "2020-03-26T20:14:14.121591Z", "url": "https://files.pythonhosted.org/packages/57/f5/6ff6fec4375f30342d6294224149c8653da945c192fcbc1894eb1387c87f/buvar-0.29.0-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9a8dff76a0ea19fc486efa8a7f66293e", "sha256": "11b2c452fdf9c46bb1c7d34685477bf6b5e0ed02cd5b534cc713657db8f73734" }, "downloads": -1, "filename": "buvar-0.29.0.tar.gz", "has_sig": false, "md5_digest": "9a8dff76a0ea19fc486efa8a7f66293e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 129572, "upload_time": "2020-03-26T20:14:17", "upload_time_iso_8601": "2020-03-26T20:14:17.650956Z", "url": "https://files.pythonhosted.org/packages/ec/dc/baa911e35bf924958fbd3563eb1368c30e6523966ccf0b7fe0712f2c83ab/buvar-0.29.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "e539c211850be65b478b453bcb0290ad", "sha256": "59469f96d77fa9e1699c5bc97758514a35b7248e870551bd64e2d6e4270d9947" }, "downloads": -1, "filename": "buvar-0.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "e539c211850be65b478b453bcb0290ad", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 8505, "upload_time": "2019-05-20T08:40:24", "upload_time_iso_8601": "2019-05-20T08:40:24.111380Z", "url": "https://files.pythonhosted.org/packages/e0/cb/e0fecdc7acaa0a95978c4f77a684522cda2d8bd86ea405d27c5a81a33ed8/buvar-0.3.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7cf22667abe361787677bd70b0184d82", "sha256": "34671fa6db50a43f15245b10aa01c784eda1bfcc6fea33038ae30aa823c5d2a9" }, "downloads": -1, "filename": "buvar-0.3.0.tar.gz", "has_sig": false, "md5_digest": "7cf22667abe361787677bd70b0184d82", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 7543, "upload_time": "2019-05-20T08:40:25", "upload_time_iso_8601": "2019-05-20T08:40:25.316081Z", "url": "https://files.pythonhosted.org/packages/37/f3/45e1717c1bd56807d913efa5dd859ef4c7d31cc3b2d7b9293cf855991845/buvar-0.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.30.0": [ { "comment_text": "", "digests": { "md5": "e1dd98b8ed2bb2a302b4532c94fd3bc4", "sha256": "8503fcc3d79c825e86d87d52ac647203bad6b424f07f9c74c0958ecdc7ee4b01" }, "downloads": -1, "filename": "buvar-0.30.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e1dd98b8ed2bb2a302b4532c94fd3bc4", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7,<4.0", "size": 376339, "upload_time": "2020-04-01T19:58:00", "upload_time_iso_8601": "2020-04-01T19:58:00.617428Z", "url": "https://files.pythonhosted.org/packages/72/af/02d101235601ec5bd93b8b517d59e6d84d2c19f5974e02634a655e44e6ec/buvar-0.30.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7a292ad5b6b0e6724bba5f51df477c13", "sha256": "567569b4f561ae17d7d92b54160d57e49caa134d3166b070ac05b10d83922d58" }, "downloads": -1, "filename": "buvar-0.30.0-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7a292ad5b6b0e6724bba5f51df477c13", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7,<4.0", "size": 438825, "upload_time": "2020-04-01T19:58:06", "upload_time_iso_8601": "2020-04-01T19:58:06.585297Z", "url": "https://files.pythonhosted.org/packages/82/23/3e5ed7e4f236d3d83c553f6a03b51f36eaebc72976560dcc623b8c7c1342/buvar-0.30.0-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9d3a96e2ac84a9e0e9a753d6afa836cf", "sha256": "a6e73652561ea406b90efeace6d2c65f4ce227da431e7b5994d5889f65dbe910" }, "downloads": -1, "filename": "buvar-0.30.0.tar.gz", "has_sig": false, "md5_digest": "9d3a96e2ac84a9e0e9a753d6afa836cf", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 128591, "upload_time": "2020-04-01T19:58:09", "upload_time_iso_8601": "2020-04-01T19:58:09.653639Z", "url": "https://files.pythonhosted.org/packages/e2/09/2e066ca5bfb334c7498ab7831f179f7d3396faac50098984112c2008c9b4/buvar-0.30.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.30.1": [ { "comment_text": "", "digests": { "md5": "16a7ee908f5466b0ebeab421d6a7d048", "sha256": "7f4349af6a11f7f5dee773f620316411814abf6fe47557b48f2353ad221b65e4" }, "downloads": -1, "filename": "buvar-0.30.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "16a7ee908f5466b0ebeab421d6a7d048", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7,<4.0", "size": 376452, "upload_time": "2020-04-08T15:43:46", "upload_time_iso_8601": "2020-04-08T15:43:46.204703Z", "url": "https://files.pythonhosted.org/packages/30/8d/02e8b4eab7c03eaf9a6b013855ccd032ec0f5d7b01db2e70294db6af93fc/buvar-0.30.1-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cc18d61213db073fac7288ba6cfa4f27", "sha256": "5cfc130836c11cfefef3431f77a6dfde1f233863f49a6ab633792228cee26397" }, "downloads": -1, "filename": "buvar-0.30.1-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "cc18d61213db073fac7288ba6cfa4f27", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7,<4.0", "size": 438931, "upload_time": "2020-04-08T15:43:52", "upload_time_iso_8601": "2020-04-08T15:43:52.033043Z", "url": "https://files.pythonhosted.org/packages/11/14/117d258a0a5b704a255abd2b77ff343938be76885a989e041f93c41d5e53/buvar-0.30.1-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "26120256ca6c300a84979ab845010f2b", "sha256": "4aeabcfeb1ccd2dc95c0d8ac910c355a3695dadee6fbe493db25ced9a8c75be5" }, "downloads": -1, "filename": "buvar-0.30.1.tar.gz", "has_sig": false, "md5_digest": "26120256ca6c300a84979ab845010f2b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 128655, "upload_time": "2020-04-08T15:43:55", "upload_time_iso_8601": "2020-04-08T15:43:55.564897Z", "url": "https://files.pythonhosted.org/packages/f6/4e/aba235b0cee203ca7dcb64f788af3522c7ab230dfccadeb789d07bc8d622/buvar-0.30.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.30.2": [ { "comment_text": "", "digests": { "md5": "2fb61ce1040b5bff39e360dbc7c69f73", "sha256": "71e909221e7cb5888b8de296ba15c401c49402df5f2bbf9397345a9a4e0f0af0" }, "downloads": -1, "filename": "buvar-0.30.2-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2fb61ce1040b5bff39e360dbc7c69f73", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7,<4.0", "size": 376469, "upload_time": "2020-04-08T16:28:33", "upload_time_iso_8601": "2020-04-08T16:28:33.056374Z", "url": "https://files.pythonhosted.org/packages/f9/0c/e07ff1b433181a7682ba7f1c95eec160c145e5b2eb376015e7c8052fd8b8/buvar-0.30.2-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f4b3cc4d1ea00484c9337c086ef183c3", "sha256": "f170760e440905b628fb987a444ff8ae1d4d30f1f4a6fd936d21992d2faffec8" }, "downloads": -1, "filename": "buvar-0.30.2-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f4b3cc4d1ea00484c9337c086ef183c3", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7,<4.0", "size": 438949, "upload_time": "2020-04-08T16:28:42", "upload_time_iso_8601": "2020-04-08T16:28:42.694659Z", "url": "https://files.pythonhosted.org/packages/2b/49/b0c3ff0b47598858f8c756911ed791c812eb4f5a0fe25dc447a4780b2aa4/buvar-0.30.2-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2ae528e14889652077f33efdb22402ff", "sha256": "391ccfb28b83276265a1adafef71fc5663a319603edfa64b878021fd99138f04" }, "downloads": -1, "filename": "buvar-0.30.2.tar.gz", "has_sig": false, "md5_digest": "2ae528e14889652077f33efdb22402ff", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 128666, "upload_time": "2020-04-08T16:28:46", "upload_time_iso_8601": "2020-04-08T16:28:46.075225Z", "url": "https://files.pythonhosted.org/packages/3a/ec/baf488968efc77824932e049dab60458f39dc81fb2cd4348b214d4fd10be/buvar-0.30.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.31.0": [ { "comment_text": "", "digests": { "md5": "b967b7240fe4fbca842487e7eb2cebe3", "sha256": "4e749d3b2427455ee3a86f3c2fe9a94a817b82c45ec6d290272e238a615d0023" }, "downloads": -1, "filename": "buvar-0.31.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b967b7240fe4fbca842487e7eb2cebe3", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7,<4.0", "size": 376720, "upload_time": "2020-04-09T20:48:00", "upload_time_iso_8601": "2020-04-09T20:48:00.008328Z", "url": "https://files.pythonhosted.org/packages/e0/92/04c4c756393192c78377c2970a0f798ebb074351966067c4d32a449fb629/buvar-0.31.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "369ce98f0217485b62f8758633ddf3b1", "sha256": "ff0273ec384d6ac16fe8159718436069b112d694675afa1c1593b28bd17a29cc" }, "downloads": -1, "filename": "buvar-0.31.0-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "369ce98f0217485b62f8758633ddf3b1", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7,<4.0", "size": 439205, "upload_time": "2020-04-09T20:48:06", "upload_time_iso_8601": "2020-04-09T20:48:06.757294Z", "url": "https://files.pythonhosted.org/packages/41/e2/e25dff3e74d209ebabd470003e76fcc3923cc0a1898ff0c6f618a8376c3b/buvar-0.31.0-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "522c5047d3cfcb54dd645b59e989503c", "sha256": "2befced7adeb052a68e5237d150b1839c07a396b5c66a0a69a22598eebec9411" }, "downloads": -1, "filename": "buvar-0.31.0.tar.gz", "has_sig": false, "md5_digest": "522c5047d3cfcb54dd645b59e989503c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 128865, "upload_time": "2020-04-09T20:48:09", "upload_time_iso_8601": "2020-04-09T20:48:09.935303Z", "url": "https://files.pythonhosted.org/packages/a7/1d/9de8d14bdd8897ec62aa75aece7fb855db18549a9ac4acfe723e30903096/buvar-0.31.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.32.0": [ { "comment_text": "", "digests": { "md5": "6e080620689ffede2bb9d5841b52800e", "sha256": "c8cd95693b5ac8ea4f58620fa39b6b886fef074653e61bdc0d6f185e0daab1f3" }, "downloads": -1, "filename": "buvar-0.32.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6e080620689ffede2bb9d5841b52800e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7,<4.0", "size": 490765, "upload_time": "2020-04-16T14:16:55", "upload_time_iso_8601": "2020-04-16T14:16:55.721975Z", "url": "https://files.pythonhosted.org/packages/21/9e/3d706f4b46373155ff235c447fa5e8da2c46df0d050d9fbed11d70059755/buvar-0.32.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c48d9240a04a66e6fdd8f69f9c6a146d", "sha256": "585091e934b63eb1960a03d9dfe23e95eaad6f39c049f9f161e1f3b89e540548" }, "downloads": -1, "filename": "buvar-0.32.0-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c48d9240a04a66e6fdd8f69f9c6a146d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7,<4.0", "size": 553243, "upload_time": "2020-04-16T14:17:02", "upload_time_iso_8601": "2020-04-16T14:17:02.789563Z", "url": "https://files.pythonhosted.org/packages/83/5f/f72deea8a1116775bb1c0f3823c37b680f89baebe4820ccf298354947a07/buvar-0.32.0-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "85eb8e047e83ab10108b7c6b452cdc95", "sha256": "dcc929ff9c0590189f74742de2529e8b5524f35d9ab0e4e723f073be60c791f3" }, "downloads": -1, "filename": "buvar-0.32.0.tar.gz", "has_sig": false, "md5_digest": "85eb8e047e83ab10108b7c6b452cdc95", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 130593, "upload_time": "2020-04-16T14:17:05", "upload_time_iso_8601": "2020-04-16T14:17:05.918323Z", "url": "https://files.pythonhosted.org/packages/01/ff/31d4d4d663e1a859e46dbd5a1213160dd42a5e47b015570ceb8884890e4c/buvar-0.32.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.32.1": [ { "comment_text": "", "digests": { "md5": "f1becf01857e852a91ec232c43e85df2", "sha256": "1a664de51ef4a1a48ed4a7ff4a04fb51150b2d5569e276d3366cee3da1d82abf" }, "downloads": -1, "filename": "buvar-0.32.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f1becf01857e852a91ec232c43e85df2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7,<4.0", "size": 490973, "upload_time": "2020-04-16T17:06:28", "upload_time_iso_8601": "2020-04-16T17:06:28.979753Z", "url": "https://files.pythonhosted.org/packages/7c/c9/b6bdc6f2d2e526d788490fe84b4169a399f72a32dd10f2b276d3d07ade25/buvar-0.32.1-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "81bd9da087799ecf6ff494e5f77190f6", "sha256": "f6d2cb7d5e4f14efd4d72aac8763155c29781ed455eff2e5a16d7ee26471aa88" }, "downloads": -1, "filename": "buvar-0.32.1-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "81bd9da087799ecf6ff494e5f77190f6", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7,<4.0", "size": 553458, "upload_time": "2020-04-16T17:06:36", "upload_time_iso_8601": "2020-04-16T17:06:36.199179Z", "url": "https://files.pythonhosted.org/packages/52/24/617d6992bf30f20c6bd0702b56986c324b598af9a4786dc951158a003fd0/buvar-0.32.1-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "68f6520e4ec859802652275423f51fbf", "sha256": "d068ee9d0063df5fdd23bea5bf33a7f3526c78e251d71de93c481db2ad423939" }, "downloads": -1, "filename": "buvar-0.32.1.tar.gz", "has_sig": false, "md5_digest": "68f6520e4ec859802652275423f51fbf", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 130701, "upload_time": "2020-04-16T17:06:39", "upload_time_iso_8601": "2020-04-16T17:06:39.509820Z", "url": "https://files.pythonhosted.org/packages/3a/1a/888095843cbbe5776c0d6f6487c6c69dd3c25dc612dac06ea785a7508397/buvar-0.32.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.33.0": [ { "comment_text": "", "digests": { "md5": "f567a3faf225debce2689caa5346abad", "sha256": "91ef5f1c693d53c7a37455a6166c29502fafe348394d2672d44fbfd22a29d9ec" }, "downloads": -1, "filename": "buvar-0.33.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f567a3faf225debce2689caa5346abad", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7,<4.0", "size": 490960, "upload_time": "2020-04-17T11:58:04", "upload_time_iso_8601": "2020-04-17T11:58:04.291001Z", "url": "https://files.pythonhosted.org/packages/b2/0e/9eee032f8a6fe624f1eee1fb380d2642bdea58bc0d0e23fbd44a386ac003/buvar-0.33.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7a9d66ea444d3aa2bca1a196b4d1f472", "sha256": "eaa0a2f9f1aefe64df4644ba9a4f8f0a73cf1542d479a935e1f04d1941345bb7" }, "downloads": -1, "filename": "buvar-0.33.0-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "7a9d66ea444d3aa2bca1a196b4d1f472", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7,<4.0", "size": 553449, "upload_time": "2020-04-17T11:58:11", "upload_time_iso_8601": "2020-04-17T11:58:11.106633Z", "url": "https://files.pythonhosted.org/packages/26/74/b1e1a54d1f651bb6c26c516ed175395b6451c3c2ef11cb7f3f92a94f4b41/buvar-0.33.0-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8efe25cadc1ca9d7d9f0c5e6b79edb50", "sha256": "0bc855982d777afdc4a2ff3cfa778d4ce8c3395216e5a22ace5202bf67905b02" }, "downloads": -1, "filename": "buvar-0.33.0.tar.gz", "has_sig": false, "md5_digest": "8efe25cadc1ca9d7d9f0c5e6b79edb50", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 130713, "upload_time": "2020-04-17T11:58:14", "upload_time_iso_8601": "2020-04-17T11:58:14.089337Z", "url": "https://files.pythonhosted.org/packages/54/eb/3a8d4e8453e138d06de77ec68e33547eb5a97c08e9c26ddf249b086196da/buvar-0.33.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.34.0": [ { "comment_text": "", "digests": { "md5": "97481ddc057af64e709ac2a24d8e4b24", "sha256": "86a3fca59ec7286e441972d983f1695ad95f34082719b734afcd87c7dd4eaab7" }, "downloads": -1, "filename": "buvar-0.34.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "97481ddc057af64e709ac2a24d8e4b24", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7,<4.0", "size": 491127, "upload_time": "2020-04-21T18:44:42", "upload_time_iso_8601": "2020-04-21T18:44:42.264579Z", "url": "https://files.pythonhosted.org/packages/07/b2/a6d32b8c0f6735e245ca93a1532721d8eb728d1e319c3c5d5ab4b99efe37/buvar-0.34.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8ebf5c2fecb5eae202f56f67c22211e0", "sha256": "0a6fbd3344e2eda6440b54eec3ec26aeec2f6252d863ef6623956bed81cd31db" }, "downloads": -1, "filename": "buvar-0.34.0-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "8ebf5c2fecb5eae202f56f67c22211e0", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7,<4.0", "size": 553616, "upload_time": "2020-04-21T18:44:50", "upload_time_iso_8601": "2020-04-21T18:44:50.520126Z", "url": "https://files.pythonhosted.org/packages/3f/08/7c88db63e229b0045d9093eb46832ded1bc3efd9192c3b283cb61e558766/buvar-0.34.0-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2876120036a9cc5db14e5fb4a2000932", "sha256": "cba180056f9df4895a1b605b966e3328ea38b19c024a12bee381957edeb5504d" }, "downloads": -1, "filename": "buvar-0.34.0.tar.gz", "has_sig": false, "md5_digest": "2876120036a9cc5db14e5fb4a2000932", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 130876, "upload_time": "2020-04-21T18:44:53", "upload_time_iso_8601": "2020-04-21T18:44:53.810082Z", "url": "https://files.pythonhosted.org/packages/a8/c2/7a6d4a5f35a18d1fcb77452c78170eb010faf430c277df441d218398c6b6/buvar-0.34.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.35.0": [ { "comment_text": "", "digests": { "md5": "a9a2e204a348aed072a76744823ae8ed", "sha256": "690f1682c3b7e61ba6577a395d62d8b6624fb0ff65ea4fb56e0d430a1537d00b" }, "downloads": -1, "filename": "buvar-0.35.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "a9a2e204a348aed072a76744823ae8ed", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7,<4.0", "size": 491192, "upload_time": "2020-04-28T12:46:21", "upload_time_iso_8601": "2020-04-28T12:46:21.221430Z", "url": "https://files.pythonhosted.org/packages/58/3f/0d8fb8131132728107fe1d2ab080b71dc23e07ef8e2bc6645440269be9b7/buvar-0.35.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6366548af97ab6ebdbb0df1bb6b4047a", "sha256": "cc1707507a54c441e9dc45dbf81724e8aed9a607a1ce1f780f92f7792ba2f6cd" }, "downloads": -1, "filename": "buvar-0.35.0-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6366548af97ab6ebdbb0df1bb6b4047a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7,<4.0", "size": 553670, "upload_time": "2020-04-28T12:46:28", "upload_time_iso_8601": "2020-04-28T12:46:28.565841Z", "url": "https://files.pythonhosted.org/packages/9c/f9/beac94cf789dc18a9c082c997512dfcf6b3acc784ce1e2a099f82ef7cf46/buvar-0.35.0-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "90e61306731631ebb45e6a318098568f", "sha256": "a66d54d17f767e4b42fe283d3fd7c2f60aba74add63766f10ce5457488b143c8" }, "downloads": -1, "filename": "buvar-0.35.0.tar.gz", "has_sig": false, "md5_digest": "90e61306731631ebb45e6a318098568f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 130942, "upload_time": "2020-04-28T12:46:31", "upload_time_iso_8601": "2020-04-28T12:46:31.357957Z", "url": "https://files.pythonhosted.org/packages/cc/b6/0ed143f77acc597407f62bfe01557e3f1ce7924593255e4b03686ad4c2f7/buvar-0.35.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.35.1": [ { "comment_text": "", "digests": { "md5": "e7bc78950c1ef92b3e79bed05eeee7f8", "sha256": "f8e6280d648c42bdd3f8d8a8eff612d3cfe81f84f6c6a08fd009c9449d2b8351" }, "downloads": -1, "filename": "buvar-0.35.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "e7bc78950c1ef92b3e79bed05eeee7f8", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7,<4.0", "size": 491226, "upload_time": "2020-04-28T14:23:20", "upload_time_iso_8601": "2020-04-28T14:23:20.403676Z", "url": "https://files.pythonhosted.org/packages/5e/8e/f949ad417d0f26cb7b75fcd7d3ed50f75850571ad6d73b71562fffc0456f/buvar-0.35.1-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bc4cd97eceba8c7ee755c5ebd3c466ee", "sha256": "ed576f8dd85f1f8e34887f9ddb151eabaf62810f6afbf8e0f44ae1d09d5d6db4" }, "downloads": -1, "filename": "buvar-0.35.1-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "bc4cd97eceba8c7ee755c5ebd3c466ee", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7,<4.0", "size": 553700, "upload_time": "2020-04-28T14:23:27", "upload_time_iso_8601": "2020-04-28T14:23:27.295593Z", "url": "https://files.pythonhosted.org/packages/09/f0/201a9a947396961a09cc493f9032b411632a01eddb8e8cf2cd799d8ac118/buvar-0.35.1-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6a7d5cecfa40ecd540a1f758f4b4f746", "sha256": "9733fd4537d3da4f78f216702a4f59599937b0a7b18edffa789a4b36138e55f2" }, "downloads": -1, "filename": "buvar-0.35.1.tar.gz", "has_sig": false, "md5_digest": "6a7d5cecfa40ecd540a1f758f4b4f746", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 130973, "upload_time": "2020-04-28T14:23:30", "upload_time_iso_8601": "2020-04-28T14:23:30.074778Z", "url": "https://files.pythonhosted.org/packages/0d/66/1df0875a58dbf83a8a5c94bba17de4655b9480ebb8854ead0063c415fbfe/buvar-0.35.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.36.0": [ { "comment_text": "", "digests": { "md5": "d5d1e1f96f5ef298b169d72b3a7944bc", "sha256": "ef01bddb07bc6a963fa2301be5f63391e8bef31115bcea57b4be37b2ce2f8b6e" }, "downloads": -1, "filename": "buvar-0.36.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d5d1e1f96f5ef298b169d72b3a7944bc", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7,<4.0", "size": 491318, "upload_time": "2020-04-29T10:01:27", "upload_time_iso_8601": "2020-04-29T10:01:27.018817Z", "url": "https://files.pythonhosted.org/packages/e7/e9/4d5252c63466ae7962a5238f2026d53a055ce861692dc38e3abf904e6bf4/buvar-0.36.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d6fc91b3daaa3e33200adc7f6ee3128f", "sha256": "c2da94d6600b1af2907dff53b0cd6b14129fb5b524ba2dc331c9df5f4b493bb8" }, "downloads": -1, "filename": "buvar-0.36.0-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "d6fc91b3daaa3e33200adc7f6ee3128f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7,<4.0", "size": 553795, "upload_time": "2020-04-29T10:01:41", "upload_time_iso_8601": "2020-04-29T10:01:41.072317Z", "url": "https://files.pythonhosted.org/packages/9a/a8/d2aaa81460723dee48d26cd15c596ccb3848ba9e67027080778753eed39e/buvar-0.36.0-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2023c77cdfbb1dbac4aed0099856d731", "sha256": "3e190273a65455f03831651d35e6e768f33e6e9fb236900a9c23f4e723517133" }, "downloads": -1, "filename": "buvar-0.36.0.tar.gz", "has_sig": false, "md5_digest": "2023c77cdfbb1dbac4aed0099856d731", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 131068, "upload_time": "2020-04-29T10:01:45", "upload_time_iso_8601": "2020-04-29T10:01:45.529500Z", "url": "https://files.pythonhosted.org/packages/6a/2f/d2456d52603f2fa3d6f58b4182fca9f28a62dd84668b27af6468dbfca525/buvar-0.36.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.37.0": [ { "comment_text": "", "digests": { "md5": "1a3b9fb1ad3d7b535b57c8b8546f6937", "sha256": "33e94a10753e7c2c7eec0b616fc45ce2bc7a77fa3483c08107582652f0d2bd62" }, "downloads": -1, "filename": "buvar-0.37.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1a3b9fb1ad3d7b535b57c8b8546f6937", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7,<4.0", "size": 491347, "upload_time": "2020-05-12T19:11:32", "upload_time_iso_8601": "2020-05-12T19:11:32.812513Z", "url": "https://files.pythonhosted.org/packages/1a/17/17e3477588efb2808f9e205e3b24e012d4651cb2dcb35fd077ea2dcfb910/buvar-0.37.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6ad208f6b2ad2e4975d06a19691ba577", "sha256": "7bb912fd072c20bd4f7fecb4b4f08c298045a06c85f26a1d809db8ddf1e19c06" }, "downloads": -1, "filename": "buvar-0.37.0-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "6ad208f6b2ad2e4975d06a19691ba577", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7,<4.0", "size": 553835, "upload_time": "2020-05-12T19:11:40", "upload_time_iso_8601": "2020-05-12T19:11:40.245928Z", "url": "https://files.pythonhosted.org/packages/fa/d8/d2ba87eaa5fd157f93b2458996645365d8af82f5e3d645a4bbd7b146a8d0/buvar-0.37.0-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0943733bb9ecf57faef8eda25c5c2191", "sha256": "c5bb6a94c898c8edd25bb82b3c0e274fd30e53e86121351e8790b800a713d063" }, "downloads": -1, "filename": "buvar-0.37.0.tar.gz", "has_sig": false, "md5_digest": "0943733bb9ecf57faef8eda25c5c2191", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 131092, "upload_time": "2020-05-12T19:11:43", "upload_time_iso_8601": "2020-05-12T19:11:43.219318Z", "url": "https://files.pythonhosted.org/packages/8e/cb/ae6c392d823bf2644daafd8b29090f29e807ef9f1c1f6037e368655c56eb/buvar-0.37.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.38.0": [ { "comment_text": "", "digests": { "md5": "56d3a7f80ff0d7af57ce006a3010d008", "sha256": "5d8d61ce350a751eb953f80f743b90d950ed45e031cbe9d7e6ee48c234640f17" }, "downloads": -1, "filename": "buvar-0.38.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "56d3a7f80ff0d7af57ce006a3010d008", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7,<4.0", "size": 491349, "upload_time": "2020-05-19T12:12:09", "upload_time_iso_8601": "2020-05-19T12:12:09.473446Z", "url": "https://files.pythonhosted.org/packages/b1/35/b0ca03c7b801d740755b8979d1e3825e7dae4f34e665a4b172cd37ead523/buvar-0.38.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c81694a39063da27acc15b7e71c224fd", "sha256": "7b9ae5fe90f5a0a8c899dca8de3c013ba7c9460cc12fe913f4bc03f61d2ab60b" }, "downloads": -1, "filename": "buvar-0.38.0-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "c81694a39063da27acc15b7e71c224fd", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7,<4.0", "size": 553832, "upload_time": "2020-05-19T12:12:16", "upload_time_iso_8601": "2020-05-19T12:12:16.681097Z", "url": "https://files.pythonhosted.org/packages/59/d9/b3f977e71b4dc7f8cd042445c2f6638ed765f56f0a2657e7de54596124e4/buvar-0.38.0-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b473a0f5c5fffc5a691189d9d55336a3", "sha256": "77bf0f84567882d513937852508bc7fb79aca139d5188a0f8f3e3a9fc7082b5a" }, "downloads": -1, "filename": "buvar-0.38.0.tar.gz", "has_sig": false, "md5_digest": "b473a0f5c5fffc5a691189d9d55336a3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 131112, "upload_time": "2020-05-19T12:12:19", "upload_time_iso_8601": "2020-05-19T12:12:19.303522Z", "url": "https://files.pythonhosted.org/packages/21/a4/e0c99bba2a228810683c48bee6cff42c815117b607b278d7b9e09dd8845e/buvar-0.38.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.39.0": [ { "comment_text": "", "digests": { "md5": "245ed83122adf953c7d340e984786b51", "sha256": "612301d7727fb71c1370aeebe8a74468516a98e28f490b3a86575dcc047fa54c" }, "downloads": -1, "filename": "buvar-0.39.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "245ed83122adf953c7d340e984786b51", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7,<4.0", "size": 491342, "upload_time": "2020-05-25T14:22:20", "upload_time_iso_8601": "2020-05-25T14:22:20.819880Z", "url": "https://files.pythonhosted.org/packages/91/18/64b6e938925f99b50aa87163599a4514f622c2a6ec05c4079e1de6179543/buvar-0.39.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "30a3774845e6a0760191c05f4165239a", "sha256": "1f13f74e54d1713fcd9e7a0db2995c668fec288095181d105b93e20fdefd88fe" }, "downloads": -1, "filename": "buvar-0.39.0-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "30a3774845e6a0760191c05f4165239a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7,<4.0", "size": 553831, "upload_time": "2020-05-25T14:22:27", "upload_time_iso_8601": "2020-05-25T14:22:27.703243Z", "url": "https://files.pythonhosted.org/packages/75/8b/17684f1cf522e9b1128fbce75d52ce6bb2d8b7f912be555898cfd2eadafe/buvar-0.39.0-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a14095cb7cd12dae42cad68d44440413", "sha256": "604540d76e9c21d3cc0c9aa7542839602e72c2fb6e58ea2ac83f271ac24ea368" }, "downloads": -1, "filename": "buvar-0.39.0.tar.gz", "has_sig": false, "md5_digest": "a14095cb7cd12dae42cad68d44440413", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 131099, "upload_time": "2020-05-25T14:22:30", "upload_time_iso_8601": "2020-05-25T14:22:30.491440Z", "url": "https://files.pythonhosted.org/packages/28/21/f23dbbe4e107ebad57657168672cf391edb22303dd347d8656a30f328f61/buvar-0.39.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.39.1": [ { "comment_text": "", "digests": { "md5": "473f535b3edc246c5d1d9758526cfe01", "sha256": "7d8d90598d55f00297493a996326e991c8b6f0fff807ea6000fd0eeeb292f8c0" }, "downloads": -1, "filename": "buvar-0.39.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "473f535b3edc246c5d1d9758526cfe01", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7,<4.0", "size": 491409, "upload_time": "2020-05-27T12:56:39", "upload_time_iso_8601": "2020-05-27T12:56:39.996252Z", "url": "https://files.pythonhosted.org/packages/38/04/e2a50f3fa738b3e3d2c399494df09a7fe601a76cef026c534798ea502e53/buvar-0.39.1-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "92327221e39de105c746e2dc68d8e478", "sha256": "c04da84b7908fb5c3ebffa71e5a98b8befdb1aea357023dd3792573c60ae80f4" }, "downloads": -1, "filename": "buvar-0.39.1-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "92327221e39de105c746e2dc68d8e478", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7,<4.0", "size": 553895, "upload_time": "2020-05-27T12:56:48", "upload_time_iso_8601": "2020-05-27T12:56:48.110820Z", "url": "https://files.pythonhosted.org/packages/3c/ab/2a50d3cacba332aace4a873cdc1e4f268ef385cd3a8c0f1088899f9e9d93/buvar-0.39.1-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d3118b781bb3a3c7d5547fc4479cca1a", "sha256": "84317940415423e329bbb0e005a6dad7d287d63b9867c6e91416cb19c65af4fd" }, "downloads": -1, "filename": "buvar-0.39.1.tar.gz", "has_sig": false, "md5_digest": "d3118b781bb3a3c7d5547fc4479cca1a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 131147, "upload_time": "2020-05-27T12:56:51", "upload_time_iso_8601": "2020-05-27T12:56:51.218786Z", "url": "https://files.pythonhosted.org/packages/1a/4c/1371bd5e5f0a1aae28c7ff4412be820e88dfc2e3306165055e09bcb81642/buvar-0.39.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "a49023a517d7661a3de68474a72bf269", "sha256": "76d9868996628f6d509d562b6d308041f80d7e98f76d943f229d116b3a317b7a" }, "downloads": -1, "filename": "buvar-0.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "a49023a517d7661a3de68474a72bf269", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 8504, "upload_time": "2019-05-20T11:46:57", "upload_time_iso_8601": "2019-05-20T11:46:57.377869Z", "url": "https://files.pythonhosted.org/packages/1f/a8/571ce518a7eeb75e9072cb4cede02a747a4a2ff203bbcfd7c7214025292a/buvar-0.4.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "447b1c9750c75457aaba9af8774e4167", "sha256": "150461ed5ff1dc804fc2ad6bda39c01890d494b900c69584c92d4cbfe6b2e8cb" }, "downloads": -1, "filename": "buvar-0.4.0.tar.gz", "has_sig": false, "md5_digest": "447b1c9750c75457aaba9af8774e4167", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 7544, "upload_time": "2019-05-20T11:46:58", "upload_time_iso_8601": "2019-05-20T11:46:58.690786Z", "url": "https://files.pythonhosted.org/packages/c9/68/5db147e4cc56e83e5d95d436bffb6c37a730adfb2ad50003e6f3ed16a70a/buvar-0.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.40.0": [ { "comment_text": "", "digests": { "md5": "f1acab5b723d3859a07409bd75146dd0", "sha256": "36b188bfd3d2673e3650060292a03b95629a61ec8041384ac09c3723045885bb" }, "downloads": -1, "filename": "buvar-0.40.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "f1acab5b723d3859a07409bd75146dd0", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7,<4.0", "size": 485234, "upload_time": "2020-07-21T13:41:57", "upload_time_iso_8601": "2020-07-21T13:41:57.341208Z", "url": "https://files.pythonhosted.org/packages/cb/37/9f45a2989c161da2a3ff4aadebf1bb2dcebd57c215f8d2180ef7a3b5f07e/buvar-0.40.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1c14903e752af41b599c88b26ad3635f", "sha256": "737026f2a0004abfb03d0169df23cd4119adba424e61011b9d92c54fb4600f72" }, "downloads": -1, "filename": "buvar-0.40.0-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1c14903e752af41b599c88b26ad3635f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7,<4.0", "size": 547717, "upload_time": "2020-07-21T13:42:04", "upload_time_iso_8601": "2020-07-21T13:42:04.011255Z", "url": "https://files.pythonhosted.org/packages/59/0c/7fa3f7df7743841143bb75ebe17d28d9afd80a91215bd2822f09125b5354/buvar-0.40.0-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5c089d8830c625bded20886831dd42ee", "sha256": "2cc00155f60f94aaa70afa9cd5e40b8ce2dad2b695da084b2a25806aabba2afe" }, "downloads": -1, "filename": "buvar-0.40.0.tar.gz", "has_sig": false, "md5_digest": "5c089d8830c625bded20886831dd42ee", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 126831, "upload_time": "2020-07-21T13:42:06", "upload_time_iso_8601": "2020-07-21T13:42:06.792407Z", "url": "https://files.pythonhosted.org/packages/fa/ca/981e405110f0afb1025bb3be10ad6793f2e096e1caa1d9bfe232d4173e3f/buvar-0.40.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.41.0": [ { "comment_text": "", "digests": { "md5": "2ed04f5e4aab51bcdaf69e111b4204da", "sha256": "5b0fb53ca73952d47df339e221636b84ac2d35a51f6c5d42b3eb0f61f28efb9d" }, "downloads": -1, "filename": "buvar-0.41.0-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "2ed04f5e4aab51bcdaf69e111b4204da", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7,<4.0", "size": 485387, "upload_time": "2020-09-17T11:06:27", "upload_time_iso_8601": "2020-09-17T11:06:27.160412Z", "url": "https://files.pythonhosted.org/packages/42/bb/21d6fe2dc0330a95428d9c6b866d09e4976defb474cd785ad41e0b46457c/buvar-0.41.0-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "90af74fb07f4a2551ce5ac7da213bf34", "sha256": "405a137fc5bfbe5ecb10600c656a4de89169422b527b3af4c999401b89770209" }, "downloads": -1, "filename": "buvar-0.41.0-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "90af74fb07f4a2551ce5ac7da213bf34", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7,<4.0", "size": 547868, "upload_time": "2020-09-17T11:06:29", "upload_time_iso_8601": "2020-09-17T11:06:29.817312Z", "url": "https://files.pythonhosted.org/packages/2a/15/f22c9d47a0809452a95118f8ece1e179a179c46f708b20bee894c735b2b4/buvar-0.41.0-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6ae7f276fef04b891de11edfdd5928ac", "sha256": "ce32f4cffa27679390d9b02eb59c012dc7356f0be6b869791f251f7a6f98fae6" }, "downloads": -1, "filename": "buvar-0.41.0.tar.gz", "has_sig": false, "md5_digest": "6ae7f276fef04b891de11edfdd5928ac", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 126951, "upload_time": "2020-09-17T11:06:32", "upload_time_iso_8601": "2020-09-17T11:06:32.119510Z", "url": "https://files.pythonhosted.org/packages/74/6f/5760699a61da7d6b5300d3e9df0f1749a39af339594e97eae07b5e46c44b/buvar-0.41.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.41.1": [ { "comment_text": "", "digests": { "md5": "b2ec7611bfb65b24e1779b539859af5f", "sha256": "d605e9c6af3b14147a0caaa21cb4ad6a228a1cc3593f90725846f782f07c5a90" }, "downloads": -1, "filename": "buvar-0.41.1-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b2ec7611bfb65b24e1779b539859af5f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7,<4.0", "size": 485344, "upload_time": "2020-12-01T09:17:43", "upload_time_iso_8601": "2020-12-01T09:17:43.451667Z", "url": "https://files.pythonhosted.org/packages/9e/31/66d70275ad6997c0086171fcece6f7ea32252e2fc80cd7be11c66de95e7a/buvar-0.41.1-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b014b96d6255ed1439c61c132b40ff66", "sha256": "15af01172e7e0a3e436642ad924759caaa14b18d7d227bf48b816a18ca48c4e1" }, "downloads": -1, "filename": "buvar-0.41.1-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "b014b96d6255ed1439c61c132b40ff66", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7,<4.0", "size": 547830, "upload_time": "2020-12-01T09:17:45", "upload_time_iso_8601": "2020-12-01T09:17:45.414786Z", "url": "https://files.pythonhosted.org/packages/9e/2f/a26bc4646e0ec36c4d934e1532e33a30bc14bd92b61ff8088a4a5efe7f66/buvar-0.41.1-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a7e8d3c237f3269c503632b90d1db30d", "sha256": "b5d3a644fa90eece5b16ff185bf8ed1c745f68d1ad7de5d5848b3b546661b027" }, "downloads": -1, "filename": "buvar-0.41.1.tar.gz", "has_sig": false, "md5_digest": "a7e8d3c237f3269c503632b90d1db30d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 126904, "upload_time": "2020-12-01T09:17:46", "upload_time_iso_8601": "2020-12-01T09:17:46.859370Z", "url": "https://files.pythonhosted.org/packages/75/21/3dd3835c018e8b0ee1b03091b5d018154357b88f0fd8378c4cdc8da2f815/buvar-0.41.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.41.2": [ { "comment_text": "", "digests": { "md5": "1f78b9f6132966166f4c3ad1aff6b8e3", "sha256": "44b40dca794f2444f1368ddaa0be395066592d965126553e2dbf510d4b380342" }, "downloads": -1, "filename": "buvar-0.41.2-cp37-cp37m-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "1f78b9f6132966166f4c3ad1aff6b8e3", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7,<4.0", "size": 485491, "upload_time": "2021-02-14T11:58:26", "upload_time_iso_8601": "2021-02-14T11:58:26.884033Z", "url": "https://files.pythonhosted.org/packages/fd/d6/a89d7e092521c2c6f903283605a9630fc1d04c2bb2b8cb6c2b3a680ec6ac/buvar-0.41.2-cp37-cp37m-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fb5ada02e94182f6c00860075eb4db11", "sha256": "1151f6e35d38cf6cf8361a7e36dd3672d0ae72a7b9c4eaec3448d09b168892c1" }, "downloads": -1, "filename": "buvar-0.41.2-cp38-cp38-manylinux1_x86_64.whl", "has_sig": false, "md5_digest": "fb5ada02e94182f6c00860075eb4db11", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7,<4.0", "size": 547970, "upload_time": "2021-02-14T11:58:30", "upload_time_iso_8601": "2021-02-14T11:58:30.810367Z", "url": "https://files.pythonhosted.org/packages/a3/45/581cad42e83516e03ccb04a2c10a4af965bf8dcc5857548cc0754fcec53f/buvar-0.41.2-cp38-cp38-manylinux1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "54f1fdcbe584dc56cd1e6d6ee18489f5", "sha256": "2199964033f57707b1460bd89520dd41a799b7cee17209eac1c4082df7e9691e" }, "downloads": -1, "filename": "buvar-0.41.2.tar.gz", "has_sig": false, "md5_digest": "54f1fdcbe584dc56cd1e6d6ee18489f5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 127738, "upload_time": "2021-02-14T11:58:32", "upload_time_iso_8601": "2021-02-14T11:58:32.750861Z", "url": "https://files.pythonhosted.org/packages/2f/7f/f580b8f268308db74e15446790d1451c893f063189290a23e153ccfb518c/buvar-0.41.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.41.4": [ { "comment_text": "", "digests": { "md5": "78d3ce2f1db15d10adb44cde62a2ee86", "sha256": "e7bcb541cd87364c5481b6d9e011b5738a75f15b05ab21d143e7b6a74ce49fe2" }, "downloads": -1, "filename": "buvar-0.41.4-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "78d3ce2f1db15d10adb44cde62a2ee86", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7,<4.0", "size": 513293, "upload_time": "2021-02-15T08:56:36", "upload_time_iso_8601": "2021-02-15T08:56:36.270976Z", "url": "https://files.pythonhosted.org/packages/84/c1/9968a516be41cff2c96a987c51c788a0ebfa7439a762b782adf5eb7356b4/buvar-0.41.4-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ecb1b42ea733c7b875a148015028f77e", "sha256": "4f00a28192473fa89af615dcd11df9b969bbaec0d0847306149ed1674602297d" }, "downloads": -1, "filename": "buvar-0.41.4-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "ecb1b42ea733c7b875a148015028f77e", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7,<4.0", "size": 578123, "upload_time": "2021-02-15T08:56:43", "upload_time_iso_8601": "2021-02-15T08:56:43.471220Z", "url": "https://files.pythonhosted.org/packages/63/ae/867cc2c0b7a34a5b446c60fb2ab2f8b27de85da86fb50cc2c04d2d9017b8/buvar-0.41.4-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f2e2541dd327f299cc77a9b5081bd536", "sha256": "a29216e42bf33ae661864c1a1f06fd1484ababc50d11c975d071039235930913" }, "downloads": -1, "filename": "buvar-0.41.4-cp39-cp39-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "f2e2541dd327f299cc77a9b5081bd536", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7,<4.0", "size": 557871, "upload_time": "2021-02-15T08:56:46", "upload_time_iso_8601": "2021-02-15T08:56:46.285391Z", "url": "https://files.pythonhosted.org/packages/08/d8/92e6d8298faf5becd627c93a4b1510f7f0137d415c54b0a1e2dd7fa9cd24/buvar-0.41.4-cp39-cp39-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "060add85b7b234879d8b09b3584d376b", "sha256": "1a26a62f084429c1685364aa36ce7397f2e4afef1bc16875b591a707f45c46f7" }, "downloads": -1, "filename": "buvar-0.41.4.tar.gz", "has_sig": false, "md5_digest": "060add85b7b234879d8b09b3584d376b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 127757, "upload_time": "2021-02-15T08:56:47", "upload_time_iso_8601": "2021-02-15T08:56:47.720339Z", "url": "https://files.pythonhosted.org/packages/bd/e6/89a960a74175813ead16db20828ea8d96b972e69ff6a186a240c1d3be52f/buvar-0.41.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.41.5": [ { "comment_text": "", "digests": { "md5": "fc70a95e85009134197788410aa0489d", "sha256": "701ffef1bdfe7ce6dc115f5393a272456770170870112a7542f8f9f480e3c55e" }, "downloads": -1, "filename": "buvar-0.41.5-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "fc70a95e85009134197788410aa0489d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7,<4.0", "size": 512222, "upload_time": "2021-02-22T10:16:27", "upload_time_iso_8601": "2021-02-22T10:16:27.635085Z", "url": "https://files.pythonhosted.org/packages/2d/1e/63ce26782f916f5b83cbd424417446d45f12c3eb3ee9ef79018ee54f1ed0/buvar-0.41.5-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "db8901c3d3281efcfaa0500d198dab77", "sha256": "aadf8e8797be40ca8d15f5b0c991381779936440b9c5a3e630958d8bb34c0e33" }, "downloads": -1, "filename": "buvar-0.41.5-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "db8901c3d3281efcfaa0500d198dab77", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7,<4.0", "size": 575058, "upload_time": "2021-02-22T10:16:30", "upload_time_iso_8601": "2021-02-22T10:16:30.948918Z", "url": "https://files.pythonhosted.org/packages/97/c1/b6484c0e0b8aaab0c1a0cd58ce6e8c79e49deb2745855e368b4175833041/buvar-0.41.5-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "abd79cd305d068d7ace982c20ab6a7e9", "sha256": "0bc5296580cf863ec7edb72ee8910c75718b3a6e39f6ef598681ca616d05d5ba" }, "downloads": -1, "filename": "buvar-0.41.5-cp39-cp39-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "abd79cd305d068d7ace982c20ab6a7e9", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7,<4.0", "size": 557289, "upload_time": "2021-02-22T10:16:34", "upload_time_iso_8601": "2021-02-22T10:16:34.102782Z", "url": "https://files.pythonhosted.org/packages/f9/0e/a2ac2a95a5868e3cd0ea2daec0bbca38445c63393d45bacfcc0eeeeec3c8/buvar-0.41.5-cp39-cp39-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a2d01a7ca6bf1116762b30398cd6b196", "sha256": "eb2a947ffc209f711af53c271a220c47e054d775de5bbdf44910c1ae83d0828a" }, "downloads": -1, "filename": "buvar-0.41.5.tar.gz", "has_sig": false, "md5_digest": "a2d01a7ca6bf1116762b30398cd6b196", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 128802, "upload_time": "2021-02-22T10:16:35", "upload_time_iso_8601": "2021-02-22T10:16:35.960871Z", "url": "https://files.pythonhosted.org/packages/ff/c5/627057f0d9e19969c4d6ba0823c76a9b505770d13ab36070ec4628550b24/buvar-0.41.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.41.6": [ { "comment_text": "", "digests": { "md5": "4191580f3c1b5b4355867662ec9e971b", "sha256": "e76986d69e54e16ba2fddd1a7654af51f9b0a0d090cb97cf9b12960ff117a267" }, "downloads": -1, "filename": "buvar-0.41.6-cp37-cp37m-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "4191580f3c1b5b4355867662ec9e971b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7,<4.0", "size": 512238, "upload_time": "2021-02-22T22:33:39", "upload_time_iso_8601": "2021-02-22T22:33:39.938828Z", "url": "https://files.pythonhosted.org/packages/ce/47/cf9006b94eddf8513b3cfbc1894418c368d46364e5b79f7533dcec33038d/buvar-0.41.6-cp37-cp37m-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a962596db5a0546367a3651dd72cde9b", "sha256": "19ece5b026389dce9b9696ae733356687ed78c4a47f105cce3538896964fb228" }, "downloads": -1, "filename": "buvar-0.41.6-cp38-cp38-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "a962596db5a0546367a3651dd72cde9b", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7,<4.0", "size": 575073, "upload_time": "2021-02-22T22:33:44", "upload_time_iso_8601": "2021-02-22T22:33:44.434802Z", "url": "https://files.pythonhosted.org/packages/91/c4/0ddef7ab61c7ff773c60ae841cdf992042aa7f175a6354e5ad148b6cda78/buvar-0.41.6-cp38-cp38-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e0ad177c7a06297211e2c1671136d3b8", "sha256": "c60bd336fb4e449dab1766d6bf9affc6b9873a4932c30d3dd4de561fca245fdb" }, "downloads": -1, "filename": "buvar-0.41.6-cp39-cp39-manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "e0ad177c7a06297211e2c1671136d3b8", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7,<4.0", "size": 557305, "upload_time": "2021-02-22T22:33:48", "upload_time_iso_8601": "2021-02-22T22:33:48.027000Z", "url": "https://files.pythonhosted.org/packages/8d/77/890e7fa0554bc82b24faa137d6e0e7ab3bdb12458096c32eaa564aab7ec1/buvar-0.41.6-cp39-cp39-manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "888c1d500546b613d1334db3a387e0d7", "sha256": "d5a3d46c7cb06197d07d8b172f5ddc8a9d36709e147d7ebae6195c141cfaefb0" }, "downloads": -1, "filename": "buvar-0.41.6.tar.gz", "has_sig": false, "md5_digest": "888c1d500546b613d1334db3a387e0d7", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 128814, "upload_time": "2021-02-22T22:33:50", "upload_time_iso_8601": "2021-02-22T22:33:50.348323Z", "url": "https://files.pythonhosted.org/packages/92/15/96c5532a33bd5d8b250289da9e24a0c427d0ef5ae50e7a9110e2c6ba9e0d/buvar-0.41.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.42.0": [ { "comment_text": "", "digests": { "md5": "e271fbcec474924a7aa5fe87d3f520bc", "sha256": "88be9c85c94bc2b24264fe1544e975a4a78c3ffe736ed117a629f1fde28ac88e" }, "downloads": -1, "filename": "buvar-0.42.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "e271fbcec474924a7aa5fe87d3f520bc", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7,<4.0", "size": 513749, "upload_time": "2021-06-26T19:09:03", "upload_time_iso_8601": "2021-06-26T19:09:03.271638Z", "url": "https://files.pythonhosted.org/packages/2e/e5/566c42391324c01ce89980f1b92edb14687e97db294202cc44220afe8ffb/buvar-0.42.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a22f3b4463c3a141e33499509c7c24bf", "sha256": "dd959eea0259124c03aa822f0ab609f5ce8208cbd9638ee2e7ee4c1d16af5520" }, "downloads": -1, "filename": "buvar-0.42.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "a22f3b4463c3a141e33499509c7c24bf", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7,<4.0", "size": 576587, "upload_time": "2021-06-26T19:09:06", "upload_time_iso_8601": "2021-06-26T19:09:06.119667Z", "url": "https://files.pythonhosted.org/packages/ea/5f/93d2eadc77820e374661fb7af12f6c4c30773a789f435b44f4c95f0566a2/buvar-0.42.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "041c823f168aa95a2264b35a2525d2b1", "sha256": "7eb7bc9dee043acd5d73d6478c6f011eb40df51ea3a649c8ea85f67f6fa43381" }, "downloads": -1, "filename": "buvar-0.42.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "041c823f168aa95a2264b35a2525d2b1", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7,<4.0", "size": 558821, "upload_time": "2021-06-26T19:09:07", "upload_time_iso_8601": "2021-06-26T19:09:07.829503Z", "url": "https://files.pythonhosted.org/packages/b8/61/9107f67998165c7fef176a14b43cce8d616553c717a1db1c2ba2c02b8811/buvar-0.42.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b60753e491a739e71c275138e60bf597", "sha256": "48e55b2c475625716f85c066ec68132344becf2adcb99328ef3c2a7cc49bef0e" }, "downloads": -1, "filename": "buvar-0.42.0.tar.gz", "has_sig": false, "md5_digest": "b60753e491a739e71c275138e60bf597", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 134551, "upload_time": "2021-06-26T19:09:09", "upload_time_iso_8601": "2021-06-26T19:09:09.463145Z", "url": "https://files.pythonhosted.org/packages/b3/6f/0b4709c379ddad9d956e5ef9d3cc50f7c312cc430711036fd34f591ce37f/buvar-0.42.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.42.1": [ { "comment_text": "", "digests": { "md5": "c889aa6cbffa54350ba0754ce35a20aa", "sha256": "78c8697f2da7828dbb894eae61eccf0a978de78b5742157baa450b17bf019534" }, "downloads": -1, "filename": "buvar-0.42.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "c889aa6cbffa54350ba0754ce35a20aa", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7,<4.0", "size": 514029, "upload_time": "2021-06-26T20:09:46", "upload_time_iso_8601": "2021-06-26T20:09:46.830345Z", "url": "https://files.pythonhosted.org/packages/b4/02/bc13ca3012f0fa95683ee2557a0f5630d5cdb5b28c793b3d8c4dfb3f0c6b/buvar-0.42.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "99ccfc01ab7c6c7dd3e6b7daa495b908", "sha256": "06d887a07a2d7c9d55e3bc43b3ae93054d5fb612ac50270b28805e43ca146915" }, "downloads": -1, "filename": "buvar-0.42.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "99ccfc01ab7c6c7dd3e6b7daa495b908", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7,<4.0", "size": 576871, "upload_time": "2021-06-26T20:09:49", "upload_time_iso_8601": "2021-06-26T20:09:49.725262Z", "url": "https://files.pythonhosted.org/packages/ff/5f/6c14ed765055446e7075553381aa1fc6cc62b0470e690f5fd4017a3270a9/buvar-0.42.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eee916cd525ceab5d11405cfca347b96", "sha256": "39dbd9a256c49f465009e1cef68caabfa880ba19aeeb8e49de8286ab14639d0e" }, "downloads": -1, "filename": "buvar-0.42.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "eee916cd525ceab5d11405cfca347b96", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7,<4.0", "size": 559097, "upload_time": "2021-06-26T20:09:52", "upload_time_iso_8601": "2021-06-26T20:09:52.290730Z", "url": "https://files.pythonhosted.org/packages/09/fe/b147aad662473f97e396051310ab4296304a97b8f6bccc68f0eb4fd7e5cc/buvar-0.42.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1cf4ef7515c8a5e2f54511c9eae47239", "sha256": "fc7c7c9a9d08576a2297a858fcf79704b75310f578d1392f2ac8b821e8c0ab51" }, "downloads": -1, "filename": "buvar-0.42.1.tar.gz", "has_sig": false, "md5_digest": "1cf4ef7515c8a5e2f54511c9eae47239", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 135217, "upload_time": "2021-06-26T20:09:54", "upload_time_iso_8601": "2021-06-26T20:09:54.500954Z", "url": "https://files.pythonhosted.org/packages/24/c1/31c16f3b9485f8cfc9b22b2e9d4bba8e5af04f3ce5037657039e31eee6b7/buvar-0.42.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.42.2": [ { "comment_text": "", "digests": { "md5": "3070f1b8249f398fa5b43a4400777bfa", "sha256": "71313d04b25a3ab3b77799f7de657f5c9e07608ccf9da60e50a92c9e99b569f6" }, "downloads": -1, "filename": "buvar-0.42.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "3070f1b8249f398fa5b43a4400777bfa", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7,<4.0", "size": 514231, "upload_time": "2021-06-27T09:13:12", "upload_time_iso_8601": "2021-06-27T09:13:12.993142Z", "url": "https://files.pythonhosted.org/packages/58/2f/a252abc1541cbd12f7ca660d23b3787e8264e3886175a7796b022a71d3dc/buvar-0.42.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bb4bc92403e965cf46be1b6125493aad", "sha256": "ce2fd85cac182d8cf157e2ab0edf517390ac3adc31ad3d0a5d57167cc777398c" }, "downloads": -1, "filename": "buvar-0.42.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "bb4bc92403e965cf46be1b6125493aad", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7,<4.0", "size": 577076, "upload_time": "2021-06-27T09:13:15", "upload_time_iso_8601": "2021-06-27T09:13:15.872006Z", "url": "https://files.pythonhosted.org/packages/10/c5/7691d62656f049bb6577078791d2e75752f762f06fad55e3e02e06e66384/buvar-0.42.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ee23a886237e4ba484d26912c4197309", "sha256": "98e693b5155dc40da091c87379fc58977040722f6c8be7bbae3280160f1807e0" }, "downloads": -1, "filename": "buvar-0.42.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "ee23a886237e4ba484d26912c4197309", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7,<4.0", "size": 559309, "upload_time": "2021-06-27T09:13:18", "upload_time_iso_8601": "2021-06-27T09:13:18.350330Z", "url": "https://files.pythonhosted.org/packages/d5/9e/5163f562fe04464161e430a57f116a9ae14a53da6739a7d2c92240e5d256/buvar-0.42.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5619e141e68537b5bea389797b6eeba3", "sha256": "edfc49ebf41090cf92015a165fc7e2bc3dbdf541c37ed15c9185225abcc8e549" }, "downloads": -1, "filename": "buvar-0.42.2.tar.gz", "has_sig": false, "md5_digest": "5619e141e68537b5bea389797b6eeba3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 135485, "upload_time": "2021-06-27T09:13:20", "upload_time_iso_8601": "2021-06-27T09:13:20.525452Z", "url": "https://files.pythonhosted.org/packages/ee/a4/eac97f000d21fad947f99b4026b927ee98939f7b97f07080745b81ce8d26/buvar-0.42.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.42.3": [ { "comment_text": "", "digests": { "md5": "fe03783f309c93936df2572438588518", "sha256": "47e02eb2f99bc265f9990f01304b93123d4956e2e02f3eae3f5d7bf158551553" }, "downloads": -1, "filename": "buvar-0.42.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "fe03783f309c93936df2572438588518", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7,<4.0", "size": 514827, "upload_time": "2021-06-27T14:51:42", "upload_time_iso_8601": "2021-06-27T14:51:42.455790Z", "url": "https://files.pythonhosted.org/packages/3a/5a/e0f6b9cecaa2cd774e1925e840c0a14c83d700737b14313fedfbdf6c15fe/buvar-0.42.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c77c5d2d2b053e9d3010a264914524b3", "sha256": "c7219445551235d6fe374c0c63a08f800939c37a7ff0fdb59230bfc3f2367b4e" }, "downloads": -1, "filename": "buvar-0.42.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "c77c5d2d2b053e9d3010a264914524b3", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7,<4.0", "size": 577670, "upload_time": "2021-06-27T14:51:46", "upload_time_iso_8601": "2021-06-27T14:51:46.078797Z", "url": "https://files.pythonhosted.org/packages/6f/2b/b4b73332351d5c051b90a8666d5f46650f9226fa1ec056c67c70abe74e4e/buvar-0.42.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dad9beb4fd9007627ea5a00a1ae185e7", "sha256": "c715d70fecd473c93af8a449eb98bf2d0ee30b281fb31825cd6919e2507c31b7" }, "downloads": -1, "filename": "buvar-0.42.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "dad9beb4fd9007627ea5a00a1ae185e7", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7,<4.0", "size": 559899, "upload_time": "2021-06-27T14:51:49", "upload_time_iso_8601": "2021-06-27T14:51:49.248600Z", "url": "https://files.pythonhosted.org/packages/6c/3f/3497c56e5ceaa1157a3412beec9da2b20f085ec7ad1a13bd31c41a6b4b25/buvar-0.42.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eb095f3d91158dd1fff8ea353ffeb521", "sha256": "3771a455c002b5be5f097b17917acd218a30eb10b21191ba5a34cee2cc7d043d" }, "downloads": -1, "filename": "buvar-0.42.3.tar.gz", "has_sig": false, "md5_digest": "eb095f3d91158dd1fff8ea353ffeb521", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 136016, "upload_time": "2021-06-27T14:51:51", "upload_time_iso_8601": "2021-06-27T14:51:51.612026Z", "url": "https://files.pythonhosted.org/packages/93/4d/ff7adbaee5d295b30a76e997e3d10b1cc44fbdde9f78abe3aa12c3375e4f/buvar-0.42.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.42.4": [ { "comment_text": "", "digests": { "md5": "29f694e5ebc6e05b2ec6f76cfe4f6475", "sha256": "ee2cf82338dc9ac3885c262d0c37f641724d2ff774f036e7fa9405c412347b3f" }, "downloads": -1, "filename": "buvar-0.42.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "29f694e5ebc6e05b2ec6f76cfe4f6475", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7,<4.0", "size": 514854, "upload_time": "2021-06-27T19:51:03", "upload_time_iso_8601": "2021-06-27T19:51:03.233007Z", "url": "https://files.pythonhosted.org/packages/88/e5/c02a9cb176ffa656fede4bffd70b37f41583482bdf2b46483c11b4679379/buvar-0.42.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "315e87213df0ce87d6efb95b37e39e06", "sha256": "4937b62e5c91d30affed6ace513e9bce458ea7ba57c43e6a0c1030889ae15a0f" }, "downloads": -1, "filename": "buvar-0.42.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "315e87213df0ce87d6efb95b37e39e06", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7,<4.0", "size": 577697, "upload_time": "2021-06-27T19:51:05", "upload_time_iso_8601": "2021-06-27T19:51:05.409351Z", "url": "https://files.pythonhosted.org/packages/77/5b/353521ebacbb6a3035e9c611efa0571f60a2e7daf0747e83a25f822729af/buvar-0.42.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1dbd57c588598baa174de543b42517d6", "sha256": "9949331b72d82a8f5f77e14d6ab8bf0df06bac696d1c53dc212beec1d74f23fa" }, "downloads": -1, "filename": "buvar-0.42.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "1dbd57c588598baa174de543b42517d6", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7,<4.0", "size": 559927, "upload_time": "2021-06-27T19:51:07", "upload_time_iso_8601": "2021-06-27T19:51:07.362458Z", "url": "https://files.pythonhosted.org/packages/fd/cb/6faa7ce990ce6c34196d7d0fc884517e24e34b5c0525e2e64fc1124d2d47/buvar-0.42.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "657201d4e51a14a9494ec4586f37cbed", "sha256": "7117107e552de6d60ab23ad3cad9f5441c56f3ad19d5f77b0844947221b39ac1" }, "downloads": -1, "filename": "buvar-0.42.4.tar.gz", "has_sig": false, "md5_digest": "657201d4e51a14a9494ec4586f37cbed", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 136041, "upload_time": "2021-06-27T19:51:08", "upload_time_iso_8601": "2021-06-27T19:51:08.844257Z", "url": "https://files.pythonhosted.org/packages/a9/6f/f8609c9ac2b2606e146aca66148920279e7f12d423a48368c7b76ab3795a/buvar-0.42.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.43.0": [ { "comment_text": "", "digests": { "md5": "0d45b08b5f116c4af4724e5d4190ed64", "sha256": "9b169144aa2331222c38f441930d137eca910d4dc6d863dee779f5cc9b2c1404" }, "downloads": -1, "filename": "buvar-0.43.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "0d45b08b5f116c4af4724e5d4190ed64", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7,<4.0", "size": 492087, "upload_time": "2021-07-25T09:05:40", "upload_time_iso_8601": "2021-07-25T09:05:40.075309Z", "url": "https://files.pythonhosted.org/packages/99/9c/45e070fef353a5ab84079387f29120c4e31ee4001a9cbc615d96af8168e7/buvar-0.43.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6a551235450a45cde2edaa3b52887ee7", "sha256": "a19606130be5ea24a6ae06d41eb96aa76a61e6686896600268886f1f432f46a5" }, "downloads": -1, "filename": "buvar-0.43.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "6a551235450a45cde2edaa3b52887ee7", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7,<4.0", "size": 551271, "upload_time": "2021-07-25T09:05:45", "upload_time_iso_8601": "2021-07-25T09:05:45.538338Z", "url": "https://files.pythonhosted.org/packages/10/b4/10cc94fbd5c8782fe040697135cda36362997b63dae21ece23e50a152fd9/buvar-0.43.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1b3ea261c0425bcdbc4678c40af2405b", "sha256": "2a98c9fb836236e8868802b74fb6e63272df599d9291bfcb6719257433593179" }, "downloads": -1, "filename": "buvar-0.43.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "1b3ea261c0425bcdbc4678c40af2405b", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7,<4.0", "size": 531216, "upload_time": "2021-07-25T09:05:48", "upload_time_iso_8601": "2021-07-25T09:05:48.031591Z", "url": "https://files.pythonhosted.org/packages/2b/b4/f04dddbc516a653630e2c42c0235b58d7599a3d90850d2f0975d22f185bb/buvar-0.43.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a3382de89fa49f2164ad80d54344a360", "sha256": "5157a81a2d953a22334c60706aacd586b8b4a22d0b3cde0c01afcc7c88e37edf" }, "downloads": -1, "filename": "buvar-0.43.0.tar.gz", "has_sig": false, "md5_digest": "a3382de89fa49f2164ad80d54344a360", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 134005, "upload_time": "2021-07-25T09:05:50", "upload_time_iso_8601": "2021-07-25T09:05:50.499179Z", "url": "https://files.pythonhosted.org/packages/5c/3c/c44ef61307479a4aaa9f48e723946bf9b9ac017eb3a0e9b90e99aec9c086/buvar-0.43.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "23119a10491652cc20de3659b736699a", "sha256": "8d6a9278711f7deed07e65abf30ccb497184aee458e356aed64fe71fa1b897b7" }, "downloads": -1, "filename": "buvar-0.5.0-py3-none-any.whl", "has_sig": false, "md5_digest": "23119a10491652cc20de3659b736699a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 8624, "upload_time": "2019-05-20T12:21:42", "upload_time_iso_8601": "2019-05-20T12:21:42.629975Z", "url": "https://files.pythonhosted.org/packages/2b/05/800417ea9199c056e939133fe5ed7b053b7d5be12a9de9804d72ca6539ad/buvar-0.5.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f4f9991ee2b5c6181322791bd606c8d5", "sha256": "10f0ba07b63db99d8e99bb9228dd290a5afe1ac4cbd1a64a4ef91b5f4cf57811" }, "downloads": -1, "filename": "buvar-0.5.0.tar.gz", "has_sig": false, "md5_digest": "f4f9991ee2b5c6181322791bd606c8d5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 7642, "upload_time": "2019-05-20T12:21:44", "upload_time_iso_8601": "2019-05-20T12:21:44.571400Z", "url": "https://files.pythonhosted.org/packages/e0/79/5ed5402c70f3f2c6de0dc3b553f40c94f51c1c009e28c6245fc5032ad3fd/buvar-0.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "18a5c3b5f79257ae7e92022ee176f0a8", "sha256": "1212bf2e7118ee591349faedaf7ca07e161cb66aeee078abd6b7e1e2f5a8b37e" }, "downloads": -1, "filename": "buvar-0.6.0.tar.gz", "has_sig": false, "md5_digest": "18a5c3b5f79257ae7e92022ee176f0a8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 231718, "upload_time": "2019-06-25T14:43:32", "upload_time_iso_8601": "2019-06-25T14:43:32.844325Z", "url": "https://files.pythonhosted.org/packages/e4/17/a57d4062578fa1a8047a6e32f609096dd68700113b7be354d0fbdf7113a0/buvar-0.6.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "38b48dcba5ec086cc52f9c5f51d1ab4b", "sha256": "c1e5fb0572db3c72e88c62af99a40786287fd70061e3d96a6a23caac1f54dd99" }, "downloads": -1, "filename": "buvar-0.6.1.tar.gz", "has_sig": false, "md5_digest": "38b48dcba5ec086cc52f9c5f51d1ab4b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 232001, "upload_time": "2019-06-26T21:06:11", "upload_time_iso_8601": "2019-06-26T21:06:11.909620Z", "url": "https://files.pythonhosted.org/packages/6d/80/6eb65b04cff51465c219ec1e9fff5aee92bd0c5eec38396fbaae1cf6936d/buvar-0.6.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "b80890440ac52bb301e1f18dc3f0dbfb", "sha256": "6214d85a9c57af3914c91d59223b5c667f46fa40a883860387680b582508ce93" }, "downloads": -1, "filename": "buvar-0.7.0.tar.gz", "has_sig": false, "md5_digest": "b80890440ac52bb301e1f18dc3f0dbfb", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 232177, "upload_time": "2019-06-27T21:57:48", "upload_time_iso_8601": "2019-06-27T21:57:48.777453Z", "url": "https://files.pythonhosted.org/packages/24/38/137b3e05f455a95c280dc694ee8d941d597b8e4556c976e4a68ccaa3cf79/buvar-0.7.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "1977d363d3338d859ac8055d5d6ea929", "sha256": "c3a19fd50b9250ca801bf1646679770f1d3b930a2a3f53fc75dc1733a9eda219" }, "downloads": -1, "filename": "buvar-0.8.0.tar.gz", "has_sig": false, "md5_digest": "1977d363d3338d859ac8055d5d6ea929", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 232886, "upload_time": "2019-07-02T14:02:52", "upload_time_iso_8601": "2019-07-02T14:02:52.761440Z", "url": "https://files.pythonhosted.org/packages/a9/56/1740531358bbf6c59ac9754bb5618135d0da7094f61bdd2139031117d0cc/buvar-0.8.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "9871599f1678122d773e3743e6c903f1", "sha256": "810e4084fc5599986957be415fa315284b55882d9cd42a8a93ef163c5b0ee7ee" }, "downloads": -1, "filename": "buvar-0.9.0.tar.gz", "has_sig": false, "md5_digest": "9871599f1678122d773e3743e6c903f1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 21151, "upload_time": "2019-07-09T21:10:37", "upload_time_iso_8601": "2019-07-09T21:10:37.308691Z", "url": "https://files.pythonhosted.org/packages/af/af/ae5310306b55f44a07b20b2563ca47056335fe5ef275c0a5ea62412ed115/buvar-0.9.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "65b7ffd737c9fafe1b57afb457e54212", "sha256": "dfcd9af51b627a33dd74814fd676d586ccf9aa8cf4ebb9e02bfaf0b286bac2f9" }, "downloads": -1, "filename": "buvar-0.9.1.tar.gz", "has_sig": false, "md5_digest": "65b7ffd737c9fafe1b57afb457e54212", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 24479, "upload_time": "2019-07-09T21:14:45", "upload_time_iso_8601": "2019-07-09T21:14:45.535224Z", "url": "https://files.pythonhosted.org/packages/18/bd/02dba78e1d76776295cfe5d7364b4fad081db854d3aedb9ad556a8468b3f/buvar-0.9.1.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "0d45b08b5f116c4af4724e5d4190ed64", "sha256": "9b169144aa2331222c38f441930d137eca910d4dc6d863dee779f5cc9b2c1404" }, "downloads": -1, "filename": "buvar-0.43.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "0d45b08b5f116c4af4724e5d4190ed64", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": ">=3.7,<4.0", "size": 492087, "upload_time": "2021-07-25T09:05:40", "upload_time_iso_8601": "2021-07-25T09:05:40.075309Z", "url": "https://files.pythonhosted.org/packages/99/9c/45e070fef353a5ab84079387f29120c4e31ee4001a9cbc615d96af8168e7/buvar-0.43.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6a551235450a45cde2edaa3b52887ee7", "sha256": "a19606130be5ea24a6ae06d41eb96aa76a61e6686896600268886f1f432f46a5" }, "downloads": -1, "filename": "buvar-0.43.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "6a551235450a45cde2edaa3b52887ee7", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": ">=3.7,<4.0", "size": 551271, "upload_time": "2021-07-25T09:05:45", "upload_time_iso_8601": "2021-07-25T09:05:45.538338Z", "url": "https://files.pythonhosted.org/packages/10/b4/10cc94fbd5c8782fe040697135cda36362997b63dae21ece23e50a152fd9/buvar-0.43.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1b3ea261c0425bcdbc4678c40af2405b", "sha256": "2a98c9fb836236e8868802b74fb6e63272df599d9291bfcb6719257433593179" }, "downloads": -1, "filename": "buvar-0.43.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "1b3ea261c0425bcdbc4678c40af2405b", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": ">=3.7,<4.0", "size": 531216, "upload_time": "2021-07-25T09:05:48", "upload_time_iso_8601": "2021-07-25T09:05:48.031591Z", "url": "https://files.pythonhosted.org/packages/2b/b4/f04dddbc516a653630e2c42c0235b58d7599a3d90850d2f0975d22f185bb/buvar-0.43.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a3382de89fa49f2164ad80d54344a360", "sha256": "5157a81a2d953a22334c60706aacd586b8b4a22d0b3cde0c01afcc7c88e37edf" }, "downloads": -1, "filename": "buvar-0.43.0.tar.gz", "has_sig": false, "md5_digest": "a3382de89fa49f2164ad80d54344a360", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<4.0", "size": 134005, "upload_time": "2021-07-25T09:05:50", "upload_time_iso_8601": "2021-07-25T09:05:50.499179Z", "url": "https://files.pythonhosted.org/packages/5c/3c/c44ef61307479a4aaa9f48e723946bf9b9ac017eb3a0e9b90e99aec9c086/buvar-0.43.0.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }