{ "info": { "author": "ESSS", "author_email": "foss@esss.co", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7" ], "description": "======\nBarril\n======\n\n\n.. image:: https://img.shields.io/pypi/v/barril.svg\n :target: https://pypi.python.org/pypi/barril\n\n.. image:: https://img.shields.io/pypi/pyversions/barril.svg\n :target: https://pypi.org/project/barril\n\n.. image:: https://img.shields.io/travis/ESSS/barril.svg\n :target: https://travis-ci.org/ESSS/barril\n\n.. image:: https://ci.appveyor.com/api/projects/status/2y9spccc6pk9gh96/branch/master?svg=true\n :target: https://ci.appveyor.com/project/ESSS/barril/?branch=master&svg=true\n\n.. image:: https://codecov.io/gh/ESSS/barril/branch/master/graph/badge.svg\n :target: https://codecov.io/gh/ESSS/barril\n\n.. image:: https://img.shields.io/readthedocs/barril.svg\n :target: https://barril.readthedocs.io/en/latest/\n\nWhat is Barril?\n===============\n\nPython package to manage units for physical quantities.\n\nQuick example:\n\n.. code-block:: python\n\n from barril.units import Scalar\n\n s1 = Scalar(10, 'm')\n s2 = Scalar(500, 'cm')\n assert s1 + s2 == Scalar(15, 'm')\n\n\nFeatures\n--------\n\n* Pre-defined unit database containing several physical quantities for the Oil & Gas industry.\n* Data types with an associated unit: ``Scalar``, ``Array``, ``Quantity``, ``FixedArray``.\n* Automatic conversion during arithmetic operations.\n\nDevelopment\n-----------\n\nFor complete description of what type of contributions are possible,\nsee the full `CONTRIBUTING `_ guide.\n\nHere is a quick summary of the steps necessary to setup your environment to contribute to ``barril``.\n\n#. Create a virtual environment and activate it::\n\n $ python -m virtualenv .env\n $ .env\\Scripts\\activate # windows\n $ source .env/bin/activate # linux\n\n\n .. note::\n\n If you use ``conda``, you can install ``virtualenv`` in the root environment::\n\n $ conda install -n root virtualenv\n\n Don't worry as this is safe to do.\n\n#. Update ``pip``::\n\n $ python -m pip install -U pip\n\n#. Install development dependencies::\n\n $ pip install -e .[testing]\n\n#. Install pre-commit::\n\n $ pre-commit install\n\n#. Run tests::\n\n $ pytest --pyargs barril\n\n#. Generate docs locally::\n\n $ tox -e docs\n\n The documentation files will be generated in ``docs/_build``.\n\nRelease\n-------\n\nA reminder for the maintainers on how to make a new release.\n\nNote that the VERSION should folow the semantic versioning as X.Y.Z\nEx.: v1.0.5\n\n1. Create a ``release-VERSION`` branch from ``upstream/master``.\n2. Update ``CHANGELOG.rst``.\n3. Push a branch with the changes.\n4. Once all builds pass, push a ``VERSION`` tag to ``upstream``.\n5. Merge the PR.\n\nCredits\n-------\n\nThis package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.\n\n.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage\n.. _`GitHub page` : https://github.com/ESSS/barril\n.. _Cookiecutter: https://github.com/audreyr/cookiecutter\n.. _pytest: https://github.com/pytest-dev/pytest\n.. _tox: https://github.com/tox-dev/tox\n\n\n1.7.2 (2019-10-16)\n------------------\n\n* ``_foundation`` has been renamed to ``_util``, and a lot of functions which were not being\n used anymore have been removed.\n* Add new unit category mass temperature per mol (``kg.K/mol``).\n* Some units have been renamed as they were deemed out-of-place in the oil industry to something more usual (for example, ``1000ft3/d`` became ``Mcf/d``).\n The old representation of those units is still supported, but they will be automatically translated during ``Quantity`` creation, so this change should not affect users much.\n* Fix division ``1.0 / a`` where ``a`` is a ``Scalar`` or ``Array`` and also add support for floor\n division, i.e., operations like ``a // b`` where ``a`` and ``b`` are ``Scalar`` or ``Array``\n (and combinations with ``float`` or ``int``).\n* Add new unit category for Joule-Thomson coefficient (``K/Pa``).\n* Add new temperature unit for density derivative in respect to temperature (``kg/m3.K``).\n\n1.7.1 (2019-10-03)\n------------------\n\n* Fixed bug in ``/`` and ``-`` operators for ``FixedArray``.\n\n1.7.0 (2019-06-18)\n------------------\n\n* Add unit system.\n\n1.6.1 (2019-04-11)\n------------------\n\n* Change export to include ICurve and Curve and exclude IReadOnlyScalar.\n\n1.6.0 (2019-04-10)\n------------------\n\n* Add curve implementation.\n* Add support to interfaces from oop-ext.\n* Drop support to Python 2.\n\n1.5.0 (2019-01-09)\n------------------\n\n* ``Quantity.CheckValue`` now raises ``QuantityValidationError`` instead of ``ValueError``.\n\n1.4.0 (2018-12-17)\n------------------\n\n* Add new category for \"concentration ratio\".\n\n1.3.0 (2018-10-13)\n------------------\n\n* Add \"per micrometre\" unit to \"per length\" category.\n* Remove internal ``barril.fixtures`` module as it is not necessary or part of the public API.\n\n1.2.0 (2018-09-26)\n------------------\n\n* Add units for defining Spring-Dashpot movements.\n\n1.1.0 (2018-09-24)\n------------------\n\n* Add ``number`` and ``fraction`` properties to ``FractionValue``.\n* Add ``unit`` read-only property to ``Quantity``.\n\n\n1.0.0 (2018-09-21)\n------------------\n\n* First feature release.\n\n0.1.0 (2018-09-03)\n------------------\n\n* First release on PyPI.\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/ESSS/barril", "keywords": "barril", "license": "MIT license", "maintainer": "", "maintainer_email": "", "name": "barril", "package_url": "https://pypi.org/project/barril/", "platform": "", "project_url": "https://pypi.org/project/barril/", "project_urls": { "Homepage": "https://github.com/ESSS/barril" }, "release_url": "https://pypi.org/project/barril/1.7.2/", "requires_dist": [ "attrs (>=18.1.0)", "numpy (>=1.11.0)", "oop-ext (>=0.2.4)", "sphinx (>=1.4) ; extra == 'docs'", "sphinx-rtd-theme ; extra == 'docs'", "sphinx-autodoc-typehints ; extra == 'docs'", "codecov ; extra == 'testing'", "pytest ; extra == 'testing'", "pytest-cov ; extra == 'testing'", "pytest-mock ; extra == 'testing'", "pre-commit ; extra == 'testing'", "tox ; extra == 'testing'" ], "requires_python": ">=3.6", "summary": "Python package to manage units for physical quantities", "version": "1.7.2" }, "last_serial": 5985808, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "c941910bb1c2741efd004ea83981bd5e", "sha256": "6a84f3e42c7b830d3e81cc79e9dd8be3307ecd7b69d794ad62c0b1380a33d14b" }, "downloads": -1, "filename": "barril-0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "c941910bb1c2741efd004ea83981bd5e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 3030, "upload_time": "2018-04-29T03:47:58", "url": "https://files.pythonhosted.org/packages/8a/47/86885d653826ac74a8272973820bde922cdca11530644a57ecebd4fceca6/barril-0.1-py3-none-any.whl" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "ff3ce6d72efa6ee43a76e2a3b3aff4eb", "sha256": "cdd778825c70d9ce38ba6c01bcd84dd33562deca2ad9b02ef8d2878e86baa14b" }, "downloads": -1, "filename": "barril-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ff3ce6d72efa6ee43a76e2a3b3aff4eb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*", "size": 145228, "upload_time": "2018-09-21T17:49:36", "url": "https://files.pythonhosted.org/packages/66/d5/9f52f439a6277ce71bd37c49a5a2683b27555b4acd4de58c5c11c06fc6a2/barril-1.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4ec04b7b02262f945d6d4901cdc4d519", "sha256": "8b89228988a2bcebf377c56211e96b11a3020184c0a588129fed00fd61766ca4" }, "downloads": -1, "filename": "barril-1.0.0.tar.gz", "has_sig": false, "md5_digest": "4ec04b7b02262f945d6d4901cdc4d519", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*", "size": 133534, "upload_time": "2018-09-21T17:49:38", "url": "https://files.pythonhosted.org/packages/c5/db/559eaff80448607cb524800a2c2ffc991b9582da127c86fa5fbf710da478/barril-1.0.0.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "f1c3ff6f2c7cbd0a8058f57301eec172", "sha256": "f4b34c0a9e3c47e6860428f1163363fefa9f943344c55aa0004d820355cde1e6" }, "downloads": -1, "filename": "barril-1.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f1c3ff6f2c7cbd0a8058f57301eec172", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*", "size": 145549, "upload_time": "2018-09-24T19:02:00", "url": "https://files.pythonhosted.org/packages/5c/f1/157184157508b22e6e7c5b0c9abf88c7769cdb9988383f550c27e985329e/barril-1.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "76a3b9ab9b29385e6792750a19109c6b", "sha256": "2cac2baf91b3a487c8e16ed1332a1737ff6dc792ff7a9300520dbc479e5862b4" }, "downloads": -1, "filename": "barril-1.1.0.tar.gz", "has_sig": false, "md5_digest": "76a3b9ab9b29385e6792750a19109c6b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*", "size": 133784, "upload_time": "2018-09-24T19:02:01", "url": "https://files.pythonhosted.org/packages/44/08/bb43a8fbee1929d1c270a61af58045b76b52557179069986a84c4c42b372/barril-1.1.0.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "0b3a1ea2773f93acd83c98956cee1aaf", "sha256": "6971735174fad43365a443632fc26f83af1ecd661f6dea7e1fd0e485001b86fe" }, "downloads": -1, "filename": "barril-1.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0b3a1ea2773f93acd83c98956cee1aaf", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*", "size": 150790, "upload_time": "2018-09-26T10:45:03", "url": "https://files.pythonhosted.org/packages/58/6c/2427d6b14581d160c48ceaf187bf2aa03002f290a86c61e3a5ec8deb0666/barril-1.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "256b97c83b4e3a481f906893c334435a", "sha256": "31fe43e5007c2fd661e97eb61ca2d540536e3a3e9878cff15272b4ae8c8621ab" }, "downloads": -1, "filename": "barril-1.2.0.tar.gz", "has_sig": false, "md5_digest": "256b97c83b4e3a481f906893c334435a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*", "size": 166077, "upload_time": "2018-09-26T10:45:05", "url": "https://files.pythonhosted.org/packages/64/b9/c9ab9ce6a7e2206201cfb9f7d4c473a82c0e7b82e47a6ff88342b4a7de38/barril-1.2.0.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "6a21c46b7822781dced3b16dfae74e94", "sha256": "8d489548baa6914bb8ae56994699d09db18e6736510da64161564bcc4f6c627f" }, "downloads": -1, "filename": "barril-1.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6a21c46b7822781dced3b16dfae74e94", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*", "size": 151303, "upload_time": "2018-10-13T14:22:42", "url": "https://files.pythonhosted.org/packages/23/0c/e318f349bd1b3ede1f1d795bdbe5c94798bd1c5fe5b6e18cb60be0c9a95e/barril-1.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4d68e6ea5b67072992195df3e5e14e7d", "sha256": "d6e72b065b95658506a9ea384108117f11879292180c3ead2ebdd05a7a125f7d" }, "downloads": -1, "filename": "barril-1.3.0.tar.gz", "has_sig": false, "md5_digest": "4d68e6ea5b67072992195df3e5e14e7d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*", "size": 166091, "upload_time": "2018-10-13T14:22:44", "url": "https://files.pythonhosted.org/packages/7f/b0/719676eebf14a16382bf99bec4c46ddb7b36e95d16f005e40c23428bc648/barril-1.3.0.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "f4b79fb004ca9a37a997549f415b51ed", "sha256": "5491972fcf8edf725c17e37d57b92d54cea08c04aae92ac55368a81c5cb63c3d" }, "downloads": -1, "filename": "barril-1.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f4b79fb004ca9a37a997549f415b51ed", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*", "size": 151401, "upload_time": "2018-12-17T12:23:34", "url": "https://files.pythonhosted.org/packages/6c/57/2504e1629538445e21ddc498826883da3c794b349a33b761931ef3fec40d/barril-1.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "926524338290577c9458cc55c784ae0f", "sha256": "6cebe494e143cf90ac2d223cd1bc1deac2f1546f0fd3a3654274cf4323011968" }, "downloads": -1, "filename": "barril-1.4.0.tar.gz", "has_sig": false, "md5_digest": "926524338290577c9458cc55c784ae0f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*", "size": 166263, "upload_time": "2018-12-17T12:23:36", "url": "https://files.pythonhosted.org/packages/41/34/85c579ac02268fa747a5df04b671cadd9279e145717b7e9c5cb695970153/barril-1.4.0.tar.gz" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "37b4fe19ba773a6a0f61d46ef1a67a24", "sha256": "d5c1a946742e71b31ebda20021b1b645e98202ff2105e4da721268a54d570b66" }, "downloads": -1, "filename": "barril-1.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "37b4fe19ba773a6a0f61d46ef1a67a24", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*", "size": 152027, "upload_time": "2019-01-10T13:12:45", "url": "https://files.pythonhosted.org/packages/59/c1/25be85dc3d72637bc23d3613d62b533a72ade3acade7468bad5e7f7d4d97/barril-1.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "130695c98630028ea72dbec3c727a701", "sha256": "e9008f4806483958a31cde967b17c3f924db84464f9b755946176d46e972da94" }, "downloads": -1, "filename": "barril-1.5.0.tar.gz", "has_sig": false, "md5_digest": "130695c98630028ea72dbec3c727a701", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*", "size": 166660, "upload_time": "2019-01-10T13:12:47", "url": "https://files.pythonhosted.org/packages/20/26/729b28816f31b3a928b9f533a10078317e981dc1f1c582dd3c176c1d954a/barril-1.5.0.tar.gz" } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "93da9ce2993050fb2f3fbc8848c17971", "sha256": "34ef3dc55f6af8490b10c656b8ee43a11ec8c9c04e9a45d769597f5b4fb7ecd8" }, "downloads": -1, "filename": "barril-1.6.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "93da9ce2993050fb2f3fbc8848c17971", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6", "size": 144208, "upload_time": "2019-04-11T16:45:41", "url": "https://files.pythonhosted.org/packages/52/0c/fae12e00cd0119c76d076fc9fcb9b10d9ae7cb6c3047e7c19279980d390b/barril-1.6.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "333bd290801ddd27edd43a63a262a588", "sha256": "d2166c17eef9a6f5fa85867ab9202a30b6d6f820150da77d67263fee915100ce" }, "downloads": -1, "filename": "barril-1.6.0.tar.gz", "has_sig": false, "md5_digest": "333bd290801ddd27edd43a63a262a588", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 161062, "upload_time": "2019-04-11T16:45:43", "url": "https://files.pythonhosted.org/packages/6d/28/739a039242996ed905b32602b7ec23e0aeda3dd32c21298ed3ed0fabe59b/barril-1.6.0.tar.gz" } ], "1.6.1": [ { "comment_text": "", "digests": { "md5": "9681c26cf6d6dcd174888ca45f3c05a7", "sha256": "43e884722fd404c72f386247eb7005e2eb036fdcdcf46979fc1e89f46d95a5de" }, "downloads": -1, "filename": "barril-1.6.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9681c26cf6d6dcd174888ca45f3c05a7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6", "size": 144324, "upload_time": "2019-04-12T14:01:29", "url": "https://files.pythonhosted.org/packages/dc/d0/94a1554545c1516f75182361b707a5a9f30e1361d57dc1219cf9fa2f0ead/barril-1.6.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "aac31f0f8fa8d23e8e4daed09359bd25", "sha256": "4b799daa8afe57adc69be34c1031f2fe523fa25b17c04903c8682db0cafada18" }, "downloads": -1, "filename": "barril-1.6.1.tar.gz", "has_sig": false, "md5_digest": "aac31f0f8fa8d23e8e4daed09359bd25", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 161153, "upload_time": "2019-04-12T14:01:31", "url": "https://files.pythonhosted.org/packages/b2/00/a9ba4344f275fc23bcd39c9c810e2963ada453e4f720c73651cce657a049/barril-1.6.1.tar.gz" } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "fb6ace7ba143fec2154d6729bc786135", "sha256": "79b6f86a66bf474f71b0089bd00f2082a061a59143113df0a2a70f8218ca505d" }, "downloads": -1, "filename": "barril-1.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fb6ace7ba143fec2154d6729bc786135", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6", "size": 153573, "upload_time": "2019-06-18T13:10:42", "url": "https://files.pythonhosted.org/packages/77/bb/406376e79070e42f36b3ec94e04082dc7a66fd58b79c888a1db594e95965/barril-1.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "545825042f725a621e857a8294f4f376", "sha256": "c2f2ebd1049d81a78635e63e705a1c5ebefbe77298ce21e442a16800de9c5709" }, "downloads": -1, "filename": "barril-1.7.0.tar.gz", "has_sig": false, "md5_digest": "545825042f725a621e857a8294f4f376", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 168543, "upload_time": "2019-06-18T13:10:45", "url": "https://files.pythonhosted.org/packages/5b/b5/eb17434f05f86d8c995b2e4f8a1f30430327428dd46d04c9c744f664c6e0/barril-1.7.0.tar.gz" } ], "1.7.1": [ { "comment_text": "", "digests": { "md5": "3d4a965e9370c49cbaab4040ea6cfc70", "sha256": "e1039ed0492479e93b574382cff7457decaf895caec8a5fe35b5a8720af3c7a6" }, "downloads": -1, "filename": "barril-1.7.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3d4a965e9370c49cbaab4040ea6cfc70", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6", "size": 153611, "upload_time": "2019-10-03T16:50:57", "url": "https://files.pythonhosted.org/packages/5f/21/3654100652695553b7cda9684979e9b159a1f79c5faa9e1a79d028361970/barril-1.7.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "452350ddcba40fad87f442d2bfcc875e", "sha256": "88c90ee76f0d77ae14f376ad5d9cc589986defa1f2de19c0f3df2e1cdd97f1e7" }, "downloads": -1, "filename": "barril-1.7.1.tar.gz", "has_sig": false, "md5_digest": "452350ddcba40fad87f442d2bfcc875e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 170314, "upload_time": "2019-10-03T16:51:00", "url": "https://files.pythonhosted.org/packages/0f/09/ccfb288ec57439fb43ee9e866aa4ea28bc16bda60d86c67ecc06639e50db/barril-1.7.1.tar.gz" } ], "1.7.2": [ { "comment_text": "", "digests": { "md5": "bd299ff762a524ece4c177687d44df9b", "sha256": "526a475f803bbce12659885d87e074e19b263f5ecf1a71239c58094bb14bc0b9" }, "downloads": -1, "filename": "barril-1.7.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bd299ff762a524ece4c177687d44df9b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6", "size": 149946, "upload_time": "2019-10-16T18:33:52", "url": "https://files.pythonhosted.org/packages/b6/f8/b95b4214907c76f74bf84cb66326c1218d1c42e15ffd033652ef92435007/barril-1.7.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f0326bcbdb7574fdc2d6e477a891c178", "sha256": "942b73626f416e138c00078f06d7df5eee8cfa472f0cd9b4b42efe54153086af" }, "downloads": -1, "filename": "barril-1.7.2.tar.gz", "has_sig": false, "md5_digest": "f0326bcbdb7574fdc2d6e477a891c178", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 168927, "upload_time": "2019-10-16T18:33:55", "url": "https://files.pythonhosted.org/packages/30/c6/babe91afd049800845b3ae433df53d166128669314bb96e3d090b43288bb/barril-1.7.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "bd299ff762a524ece4c177687d44df9b", "sha256": "526a475f803bbce12659885d87e074e19b263f5ecf1a71239c58094bb14bc0b9" }, "downloads": -1, "filename": "barril-1.7.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bd299ff762a524ece4c177687d44df9b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.6", "size": 149946, "upload_time": "2019-10-16T18:33:52", "url": "https://files.pythonhosted.org/packages/b6/f8/b95b4214907c76f74bf84cb66326c1218d1c42e15ffd033652ef92435007/barril-1.7.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f0326bcbdb7574fdc2d6e477a891c178", "sha256": "942b73626f416e138c00078f06d7df5eee8cfa472f0cd9b4b42efe54153086af" }, "downloads": -1, "filename": "barril-1.7.2.tar.gz", "has_sig": false, "md5_digest": "f0326bcbdb7574fdc2d6e477a891c178", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 168927, "upload_time": "2019-10-16T18:33:55", "url": "https://files.pythonhosted.org/packages/30/c6/babe91afd049800845b3ae433df53d166128669314bb96e3d090b43288bb/barril-1.7.2.tar.gz" } ] }