{ "info": { "author": "Marco Lagi, nielstron, sohrabtowfighi, grhawk and Rodrigo Castro", "author_email": "n.muendler@web.de", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX", "Programming Language :: Python", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Topic :: Scientific/Engineering", "Topic :: Text Processing :: Linguistic" ], "description": "quantulum3\n==========\n [![Travis master build state](https://travis-ci.com/nielstron/quantulum3.svg?branch=master \"Travis master build state\")](https://travis-ci.com/nielstron/quantulum3)\n [![Coverage Status](https://coveralls.io/repos/github/nielstron/quantulum3/badge.svg?branch=master)](https://coveralls.io/github/nielstron/quantulum3?branch=master)\n [![PyPI version](https://badge.fury.io/py/quantulum3.svg)](https://pypi.org/project/quantulum3/)\n ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/quantulum3.svg)\n [![PyPI - Status](https://img.shields.io/pypi/status/quantulum3.svg)](https://pypi.org/project/quantulum3/)\n \nPython library for information extraction of quantities, measurements\nand their units from unstructured text. It is able to disambiguate between similar\nlooking units based on their *k-nearest neighbours* in their [GloVe](https://nlp.stanford.edu/projects/glove/) vector representation\nand their [Wikipedia](https://en.wikipedia.org/) page.\n\nThis is the Python 3 compatible fork of [recastrodiaz\\'\nfork](https://github.com/recastrodiaz/quantulum) of [grhawks\\'\nfork](https://github.com/grhawk/quantulum) of [the original by Marco\nLagi](https://github.com/marcolagi/quantulum).\nThe compatibility with the newest version of sklearn is based on\nthe fork of [sohrabtowfighi](https://github.com/sohrabtowfighi/quantulum).\n\nInstallation\n------------\n\nFirst, install [`numpy`](https://pypi.org/project/numpy/), [`scipy`](https://www.scipy.org/install.html) and [`sklearn`](http://scikit-learn.org/stable/install.html).\nQuantulum would still work without those packages, but it wouldn\\'t be able to\ndisambiguate between units with the same name (e.g. *pound* as currency\nor as unit of mass).\n\nThen,\n\n```bash\n$ pip install quantulum3\n```\n\nUsage\n-----\n\n```pycon\n>>> from quantulum3 import parser\n>>> quants = parser.parse('I want 2 liters of wine')\n>>> quants\n[Quantity(2, 'litre')]\n```\n\nThe *Quantity* class stores the surface of the original text it was\nextracted from, as well as the (start, end) positions of the match:\n\n```pycon\n>>> quants[0].surface\nu'2 liters'\n>>> quants[0].span\n(7, 15)\n```\n\nThe *value* attribute provides the parsed numeric value and the *unit.name*\nattribute provides the name of the parsed unit:\n\n```pycon\n>>> quants[0].value\n2.0\n>>> quants[0].unit.name\n'litre'\n```\n\nAn inline parser that embeds the parsed quantities in the text is also\navailable (especially useful for debugging):\n\n```pycon\n>>> print parser.inline_parse('I want 2 liters of wine')\nI want 2 liters {Quantity(2, \"litre\")} of wine\n```\n\nAs the parser is also able to parse dimensionless numbers,\nthis library can also be used for simple number extraction.\n\n```pycon\n>>> print parser.parse('I want two')\n[Quantity(2, 'dimensionless')]\n```\n\nUnits and entities\n------------------\n\nAll units (e.g. *litre*) and the entities they are associated to (e.g.\n*volume*) are reconciled against WikiPedia:\n\n```pycon\n>>> quants[0].unit\nUnit(name=\"litre\", entity=Entity(\"volume\"), uri=https://en.wikipedia.org/wiki/Litre)\n\n>>> quants[0].unit.entity\nEntity(name=\"volume\", uri=https://en.wikipedia.org/wiki/Volume)\n```\n\nThis library includes more than 290 units and 75 entities. It also\nparses spelled-out numbers, ranges and uncertainties:\n\n```pycon\n>>> parser.parse('I want a gallon of beer')\n[Quantity(1, 'gallon')]\n\n>>> parser.parse('The LHC smashes proton beams at 12.8\u201313.0 TeV')\n[Quantity(12.8, \"teraelectronvolt\"), Quantity(13, \"teraelectronvolt\")]\n\n>>> quant = parser.parse('The LHC smashes proton beams at 12.9\u00b10.1 TeV')\n>>> quant[0].uncertainty\n0.1\n```\n\nNon-standard units usually don\\'t have a WikiPedia page. The parser will\nstill try to guess their underlying entity based on their\ndimensionality:\n\n```pycon\n>>> parser.parse('Sound travels at 0.34 km/s')[0].unit\nUnit(name=\"kilometre per second\", entity=Entity(\"speed\"), uri=None)\n```\n\nDisambiguation\n--------------\n\nIf the parser detects an ambiguity, a classifier based on the WikiPedia\npages of the ambiguous units or entities tries to guess the right one:\n\n```pycon\n>>> parser.parse('I spent 20 pounds on this!')\n[Quantity(20, \"pound sterling\")]\n\n>>> parser.parse('It weighs no more than 20 pounds')\n[Quantity(20, \"pound-mass\")]\n```\n\nor:\n\n```pycon\n>>> text = 'The average density of the Earth is about 5.5x10-3 kg/cm\u00b3'\n>>> parser.parse(text)[0].unit.entity\nEntity(name=\"density\", uri=https://en.wikipedia.org/wiki/Density)\n\n>>> text = 'The amount of O\u2082 is 2.98e-4 kg per liter of atmosphere'\n>>> parser.parse(text)[0].unit.entity\nEntity(name=\"concentration\", uri=https://en.wikipedia.org/wiki/Concentration)\n```\n\nIn addition to that, the classifier is trained on the most similar words to\nall of the units surfaces, according to their distance in [GloVe](https://nlp.stanford.edu/projects/glove/)\nvector representation.\n\nTraining the classifier\n-----------------------\n\nIf you want to train the classifier yourself, in addition to the packages above, you'll also need\nthe packages `stemming` and `wikipedia`. \n\nYou could also [download requirements_classifier.txt](https://raw.githubusercontent.com/nielstron/quantulum3/dev/requirements_classifier.txt)\nand run \n```bash\n$ pip install -r requirements_classifier.txt\n```\nUse the script `scripts/train.py` or the method `train_classifier` in `quantulum3.classifier` to train the classifier.\n\nIf you want to create a new or different `similars.json`, install `pymagnitude`.\n\nFor the extraction of nearest neighbours from a vector word representation file, \nuse `scripts/extract_vere.py`. It automatically extracts the `k` nearest neighbours\nin vector space of the vector representation for each of the possible surfaces\nof the ambiguous units. The resulting neighbours are stored in `quantulum3/similars.json`\nand automatically included for training.\n\nThe file provided should be in `.magnitude` format as other formats are first\nconverted to a `.magnitude` file on-the-run. Check out\n[pre-formatted Magnitude formatted word-embeddings](https://github.com/plasticityai/magnitude#pre-converted-magnitude-formats-of-popular-embeddings-models)\nand [Magnitude](https://github.com/plasticityai/magnitude) for more information.\n\n\nManipulation\n------------\n\nWhile quantities cannot be manipulated within this library, there are\nmany great options out there:\n\n- [pint](https://pint.readthedocs.org/en/latest/)\n- [natu](http://kdavies4.github.io/natu/)\n- [quantities](http://python-quantities.readthedocs.org/en/latest/)\n\nSpoken version\n--------------\n\nQuantulum classes include methods to convert them to a speakable unit.\n\n```pycon\n>>> parser.parse(\"Gimme 10e9 GW now!\")[0].to_spoken()\nten billion gigawatts\n>>> parser.inline_parse_and_expand(\"Gimme $1e10 now and also 1 TW and 0.5 J!\")\nGimme ten billion dollars now and also one terawatt and zero point five joules!\n```\n\nExtension\n---------\n\n#### Custom units\n\nIt is possible to add custom entities to be parsed by quantulum.\nSee below code for an example invocation.\n\n```pycon\n>>> from quantulum3.load import add_custom_unit, remove_custom_unit\n>>> add_custom_unit(name=\"schlurp\", surfaces=[\"slp\"], entity=\"dimensionless\")\n>>> parser.parse(\"This extremely sharp tool is precise up to 0.5 slp\")\n[Quantity(0.5, \"Unit(name=\"schlurp\", entity=Entity(\"dimensionless\"), uri=None)\")]\n```\n\nThe keyword arguments to the function `add_custom_unit` are directly translated\nto the properties of the unit to be created.\n\n#### Extending the set of default units\n\nSee *units.json* for the complete list of units and *entities.json* for\nthe complete list of entities. The criteria for adding units have been:\n\n- the unit has (or is redirected to) a WikiPedia page\n- the unit is in common use (e.g. not the [premetric Swedish units of\n measurement](https://en.wikipedia.org/wiki/Swedish_units_of_measurement#Length)).\n\nIt\\'s easy to extend these two files to the units/entities of interest.\nHere is an example of an entry in *entities.json*:\n\n```json\n\"speed\": {\n \"dimensions\": [{\"base\": \"length\", \"power\": 1}, {\"base\": \"time\", \"power\": -1}],\n \"URI\": \"https://en.wikipedia.org/wiki/Speed\"\n}\n```\n\n- The *name* of an entity is its key. Names are required to be unique.\n- *URI* is the name of the wikipedia page of the entity. (i.e. `https://en.wikipedia.org/wiki/Speed` => `Speed`)\n- *dimensions* is the dimensionality, a list of dictionaries each\n having a *base* (the name of another entity) and a *power* (an\n integer, can be negative).\n\nHere is an example of an entry in *units.json*:\n\n```json\n\"metre per second\": {\n \"surfaces\": [\"metre per second\", \"meter per second\"],\n \"entity\": \"speed\",\n \"URI\": \"Metre_per_second\",\n \"dimensions\": [{\"base\": \"metre\", \"power\": 1}, {\"base\": \"second\", \"power\": -1}],\n \"symbols\": [\"mps\"]\n},\n\"year\": {\n \"surfaces\": [ \"year\", \"annum\" ],\n \"entity\": \"time\",\n \"URI\": \"Year\",\n \"dimensions\": [],\n \"symbols\": [ \"a\", \"y\", \"yr\" ],\n \"prefixes\": [ \"k\", \"M\", \"G\", \"T\", \"P\", \"E\" ]\n}\n```\n\n- The *name* of a unit is its key. Names are required to be unique.\n- *URI* follows the same scheme as in the *entities.json*\n- *surfaces* is a list of strings that refer to that unit. The library\n takes care of plurals, no need to specify them.\n- *entity* is the name of an entity in *entities.json*\n- *dimensions* follows the same schema as in *entities.json*, but the\n *base* is the name of another unit, not of another entity.\n- *symbols* is a list of possible symbols and abbreviations for that\n unit.\n- *prefixes* is an optional list. It can contain [Metric](https://en.wikipedia.org/wiki/Metric_prefix) and [Binary prefixes](https://en.wikipedia.org/wiki/Binary_prefix) and\n automatically generates according units. If you want to\n add specifics (like different surfaces) you need to create an entry for that\n prefixes version on its own.\n\nAll fields are case sensitive.\n\nContributing\n------------\n`dev` build: \n\n[![Travis dev build state](https://travis-ci.com/nielstron/quantulum3.svg?branch=dev \"Travis dev build state\")](https://travis-ci.com/nielstron/quantulum3)\n[![Coverage Status](https://coveralls.io/repos/github/nielstron/quantulum3/badge.svg?branch=dev)](https://coveralls.io/github/nielstron/quantulum3?branch=dev)\n\nIf you'd like to contribute follow these steps:\n1. Clone a fork of this project into your workspace\n2. Run `pip install -e .` at the root of your development folder.\n3. `pip install pipenv` and `pipenv shell`\n4. Inside the project folder run `pipenv install --dev`\n5. Make your changes\n6. Run `scripts/format.sh` and `scripts/build.py` from the package root directory.\n7. Test your changes with `python3 setup.py test` \n(Optional, will be done automatically after pushing)\n8. Create a Pull Request when having commited and pushed your changes\n\nLanguage support\n----------------\n[![Travis dev build state](https://travis-ci.com/nielstron/quantulum3.svg?branch=language_support \"Travis dev build state\")](https://travis-ci.com/nielstron/quantulum3)\n[![Coverage Status](https://coveralls.io/repos/github/nielstron/quantulum3/badge.svg?branch=language_support)](https://coveralls.io/github/nielstron/quantulum3?branch=dev)\n\nThere is a branch for language support, namely `language_support`.\nFrom inspecting the `README` file in the `_lang` subdirectory and\nthe functions and values given in the new `_lang.en_US` submodule,\none should be able to create own language submodules.\nThe new language modules should automatically be invoked and be available,\nboth through the `lang=` keyword argument in the parser functions as well\nas in the automatic unittests.\n\nNo changes outside the own language submodule folder (i.e. `_lang.de_DE`) should\nbe necessary. If there are problems implementing a new language, don't hesitate to open an issue.\n\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "https://github.com/nielstron/quantulum3/tarball/master", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/nielstron/quantulum3", "keywords": "information extraction,quantities,units,measurements,nlp,natural language processing,text mining,text processing", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "quantulum3", "package_url": "https://pypi.org/project/quantulum3/", "platform": "", "project_url": "https://pypi.org/project/quantulum3/", "project_urls": { "Download": "https://github.com/nielstron/quantulum3/tarball/master", "Homepage": "https://github.com/nielstron/quantulum3" }, "release_url": "https://pypi.org/project/quantulum3/0.7.10/", "requires_dist": [ "inflect", "num2words" ], "requires_python": "", "summary": "Extract quantities from unstructured text.", "version": "0.7.10", "yanked": false, "yanked_reason": null }, "last_serial": 12896665, "releases": { "0.2.0": [ { "comment_text": "", "digests": { "md5": "9c78ed3bb6f14742ed199f032d36d53f", "sha256": "08b69ba84f56530ce4343ade9bd2ded80c654d80da4b2797ce001f650d64d267" }, "downloads": -1, "filename": "quantulum3-0.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "9c78ed3bb6f14742ed199f032d36d53f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1749756, "upload_time": "2018-08-19T22:13:03", "upload_time_iso_8601": "2018-08-19T22:13:03.819269Z", "url": "https://files.pythonhosted.org/packages/20/b3/7bd9a90cba622054efa3d2e38190120702d3c7d0601c05b954ac2fec02c6/quantulum3-0.2.0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "260607d1e5c57a599f561b375271679d", "sha256": "1548353f1f22a6c0ffc193ebac7128ffb158d762da537e13b13e3a8196034145" }, "downloads": -1, "filename": "quantulum3-0.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "260607d1e5c57a599f561b375271679d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1948442, "upload_time": "2018-08-20T15:30:28", "upload_time_iso_8601": "2018-08-20T15:30:28.718865Z", "url": "https://files.pythonhosted.org/packages/78/f8/5b38c9a88e2da3eb9513f0584338d30835ceb6861135dd8e2958b7780c97/quantulum3-0.2.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "860cc632852a56e603ab9d112d7b2a5a", "sha256": "6b9d825c020d41593299f38f539b1fccc0ac7e40e8894f780711864aa522c2f7" }, "downloads": -1, "filename": "quantulum3-0.2.1.tar.gz", "has_sig": false, "md5_digest": "860cc632852a56e603ab9d112d7b2a5a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1946920, "upload_time": "2018-08-20T15:30:32", "upload_time_iso_8601": "2018-08-20T15:30:32.694897Z", "url": "https://files.pythonhosted.org/packages/7c/70/e154d8edd09797e7231661d19c738c21298e7c7493a026e41e09dee730e0/quantulum3-0.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "f4eb17575219fed96168c5e1b05ec4cb", "sha256": "1184d65d9ac43ee17f75203bfba003e74b772f03fe640c5ed3f2fb8aedf101ce" }, "downloads": -1, "filename": "quantulum3-0.2.2-py3-none-any.whl", "has_sig": false, "md5_digest": "f4eb17575219fed96168c5e1b05ec4cb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1949347, "upload_time": "2018-08-22T03:18:39", "upload_time_iso_8601": "2018-08-22T03:18:39.449563Z", "url": "https://files.pythonhosted.org/packages/70/c2/404e3e1b6e85e2272f03f41842aa3d4c2e0abfbee91972b9dc6ddbd481ca/quantulum3-0.2.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3c0edd31f973f1ca762efdebd3d28a13", "sha256": "f0dd5485bf7b7a9d4d7ce6107517b55bb448623471d97e9d2b1f2220ba49a022" }, "downloads": -1, "filename": "quantulum3-0.2.2.tar.gz", "has_sig": false, "md5_digest": "3c0edd31f973f1ca762efdebd3d28a13", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1948068, "upload_time": "2018-08-22T03:18:43", "upload_time_iso_8601": "2018-08-22T03:18:43.397548Z", "url": "https://files.pythonhosted.org/packages/a9/75/642149388cf32ab22df35ae276a0a699b9705ee9d2b6c674e114601b2c1a/quantulum3-0.2.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "6f09927ca79d498375a111dcca00fecb", "sha256": "f5a431feb6f1e241c7bddb2eb4e6d57b36590359c28652dfa18d190e0cb06fbb" }, "downloads": -1, "filename": "quantulum3-0.2.3-py3-none-any.whl", "has_sig": false, "md5_digest": "6f09927ca79d498375a111dcca00fecb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1951021, "upload_time": "2018-08-22T15:57:23", "upload_time_iso_8601": "2018-08-22T15:57:23.324881Z", "url": "https://files.pythonhosted.org/packages/ce/e6/2b20781960dd3e81c134b49657632c0a97dd9031acf847cfe82ab1798ccb/quantulum3-0.2.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1259dda9fa271ea3b655be2de4fdc058", "sha256": "77f69332faa08eb978e53a502c8bcc1ee8dbf8a1dd855d01ba1c1d238b4bc4f3" }, "downloads": -1, "filename": "quantulum3-0.2.3.tar.gz", "has_sig": false, "md5_digest": "1259dda9fa271ea3b655be2de4fdc058", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1949520, "upload_time": "2018-08-22T15:57:31", "upload_time_iso_8601": "2018-08-22T15:57:31.152212Z", "url": "https://files.pythonhosted.org/packages/97/c3/8437da4e409a5f37f75b70b32414378a082bf6a962322a4f27520591688c/quantulum3-0.2.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "035c91ab687b3c19d3353f657eda06b1", "sha256": "37fcb600eaacbb54ecb5a673741bec202ef55aa1a43427db505a122e256dd335" }, "downloads": -1, "filename": "quantulum3-0.2.4-py3-none-any.whl", "has_sig": false, "md5_digest": "035c91ab687b3c19d3353f657eda06b1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1956747, "upload_time": "2018-09-06T21:32:02", "upload_time_iso_8601": "2018-09-06T21:32:02.411364Z", "url": "https://files.pythonhosted.org/packages/8f/84/249591dac4e45be87a358e657229b473255327068b480fb0add40e8ff542/quantulum3-0.2.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4189fb9f088c818bdbe7186d044edbed", "sha256": "e5225a2db8e8e6ae6d83f23a6d5fdf1509c849d6d157ca72d309a833c5a60024" }, "downloads": -1, "filename": "quantulum3-0.2.4.tar.gz", "has_sig": false, "md5_digest": "4189fb9f088c818bdbe7186d044edbed", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1955929, "upload_time": "2018-09-06T21:32:12", "upload_time_iso_8601": "2018-09-06T21:32:12.608255Z", "url": "https://files.pythonhosted.org/packages/3f/3c/4939241c5efd942463bf452917e827c49568efa9ae6c90c08b8d047ab4c5/quantulum3-0.2.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "7c0b1d44e9c2c56aae16447797e23504", "sha256": "805dc098645523807158c292658dba0c33fb805349aacb311400ff0adb0d7f74" }, "downloads": -1, "filename": "quantulum3-0.2.5-py3-none-any.whl", "has_sig": false, "md5_digest": "7c0b1d44e9c2c56aae16447797e23504", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1956997, "upload_time": "2018-09-06T23:33:46", "upload_time_iso_8601": "2018-09-06T23:33:46.598095Z", "url": "https://files.pythonhosted.org/packages/c2/98/481cd2f72af3956ff2047c0a7d4b755bc64f73098ff4c49d71c0a37ad792/quantulum3-0.2.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a7c989ac3d8aa20ef3b7f0188f99bcbe", "sha256": "a2c8668f1688729549bc94c3832e7def9d9b9b88d9457f6ced76b122d12f5b13" }, "downloads": -1, "filename": "quantulum3-0.2.5.tar.gz", "has_sig": false, "md5_digest": "a7c989ac3d8aa20ef3b7f0188f99bcbe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1956487, "upload_time": "2018-09-06T23:34:00", "upload_time_iso_8601": "2018-09-06T23:34:00.821518Z", "url": "https://files.pythonhosted.org/packages/14/cc/23d2658e0727d50fadd03a1df69562af1f47bcc1095cd3ad5ffb6960f00e/quantulum3-0.2.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "eaf51428baea83ddb8ef1b6c5677ae1b", "sha256": "2223f611da6558278ab259d6888eb614eefb85895fd7cf8df240d153a91295a7" }, "downloads": -1, "filename": "quantulum3-0.2.6-py3-none-any.whl", "has_sig": false, "md5_digest": "eaf51428baea83ddb8ef1b6c5677ae1b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1957010, "upload_time": "2018-09-06T23:38:25", "upload_time_iso_8601": "2018-09-06T23:38:25.102520Z", "url": "https://files.pythonhosted.org/packages/68/34/af17247423135d22f8f7c8b6c223379f86d9775383ab998fb5599ca984a3/quantulum3-0.2.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2bce0d6ccc4ac3df70e0f5f6dfa12dd6", "sha256": "a2efa97f3634b19beae9bb63a1652b044645367d1ab2fef65e6a27271419bdad" }, "downloads": -1, "filename": "quantulum3-0.2.6.tar.gz", "has_sig": false, "md5_digest": "2bce0d6ccc4ac3df70e0f5f6dfa12dd6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1956521, "upload_time": "2018-09-06T23:38:30", "upload_time_iso_8601": "2018-09-06T23:38:30.211774Z", "url": "https://files.pythonhosted.org/packages/49/fa/684773aaac3fadf4abdcbf9e7c5952f0fda694454d701b70194c844cc6f8/quantulum3-0.2.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.7": [ { "comment_text": "", "digests": { "md5": "661f4b60119ee658773e97e27897f40d", "sha256": "e07caf49367f67f10acf982a5b9d10efa3b7dca56b9334b6167f61d4b6f30f5d" }, "downloads": -1, "filename": "quantulum3-0.2.7-py3-none-any.whl", "has_sig": false, "md5_digest": "661f4b60119ee658773e97e27897f40d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1957154, "upload_time": "2018-09-09T17:38:55", "upload_time_iso_8601": "2018-09-09T17:38:55.808576Z", "url": "https://files.pythonhosted.org/packages/65/bb/1ed055784f05907ca6517135eae7376dd6a8823b1bf5665681a9d41f82d2/quantulum3-0.2.7-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e4d53d1562ecdf20c68f7b5523296ce7", "sha256": "3dfebe571c2665762ab1a2a9028a62ed05f39c2dc3886a3388017c287006f961" }, "downloads": -1, "filename": "quantulum3-0.2.7.tar.gz", "has_sig": false, "md5_digest": "e4d53d1562ecdf20c68f7b5523296ce7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1956833, "upload_time": "2018-09-09T17:39:10", "upload_time_iso_8601": "2018-09-09T17:39:10.414372Z", "url": "https://files.pythonhosted.org/packages/7c/14/2ace8c92813cf18670362a187b07877ae46257a597fba835a637281380bb/quantulum3-0.2.7.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.8": [ { "comment_text": "", "digests": { "md5": "e7282d570201726ff503dd654a6fdf2b", "sha256": "5561fd0bc937aab048a54f559468116b75470dbd25ba66cec4a0ebbb34c714f7" }, "downloads": -1, "filename": "quantulum3-0.2.8-py3-none-any.whl", "has_sig": false, "md5_digest": "e7282d570201726ff503dd654a6fdf2b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1957156, "upload_time": "2018-09-09T17:43:00", "upload_time_iso_8601": "2018-09-09T17:43:00.587683Z", "url": "https://files.pythonhosted.org/packages/d1/c3/77567454dd977a0b8884bace096567154ad4b7c5fb7bdb52448a7603bffe/quantulum3-0.2.8-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "56ebde41c6f869faeab6409e049c76c4", "sha256": "1c18796c03f118d1d422683f11ff12e2121d8ff21fe1f51c0b168aae6ec79d72" }, "downloads": -1, "filename": "quantulum3-0.2.8.tar.gz", "has_sig": false, "md5_digest": "56ebde41c6f869faeab6409e049c76c4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1956813, "upload_time": "2018-09-09T17:43:05", "upload_time_iso_8601": "2018-09-09T17:43:05.990607Z", "url": "https://files.pythonhosted.org/packages/10/6e/fdfc68d108791888bcfc7dd2281471a9706e52ec4c3a42977a8bf97792e3/quantulum3-0.2.8.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "8d7f53c4763f1055618619181ea3db04", "sha256": "b4a6bb1ca9c6ce9d6ded1f72215d2aa83509ef27963226175d761da0086bdaef" }, "downloads": -1, "filename": "quantulum3-0.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "8d7f53c4763f1055618619181ea3db04", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1966861, "upload_time": "2018-09-12T16:14:04", "upload_time_iso_8601": "2018-09-12T16:14:04.614958Z", "url": "https://files.pythonhosted.org/packages/c8/df/6e3658739a9ca8ae8111fffe410e7ad646839493fb2878f3ae77758c8329/quantulum3-0.3.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9b23e2c92fc0e7fa456e5912a4ff0334", "sha256": "376c97fc065225f305bdca00b96e071a0015212c45660a2fae49875d126048a9" }, "downloads": -1, "filename": "quantulum3-0.3.0.tar.gz", "has_sig": false, "md5_digest": "9b23e2c92fc0e7fa456e5912a4ff0334", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1962250, "upload_time": "2018-09-12T16:14:09", "upload_time_iso_8601": "2018-09-12T16:14:09.421758Z", "url": "https://files.pythonhosted.org/packages/2a/c5/b51fc856346a8ddc3c7f0521609d0bfde72f8fe58246efbcad53e34b56d9/quantulum3-0.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "205fbe20e4ee9c7b7f1385cd5de4e2b3", "sha256": "20e23ec7589479251a1bd97a9dc512ce56f78b8f7c5e5c5e828bdaf0041f5b77" }, "downloads": -1, "filename": "quantulum3-0.3.1-py3-none-any.whl", "has_sig": false, "md5_digest": "205fbe20e4ee9c7b7f1385cd5de4e2b3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1026383, "upload_time": "2018-09-13T23:06:07", "upload_time_iso_8601": "2018-09-13T23:06:07.810707Z", "url": "https://files.pythonhosted.org/packages/ae/60/98f8c48938cd380d18476b27e92f88c18af3c225151371da72d4215e87a7/quantulum3-0.3.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b86b7a519c9f80eba237c5fb699a27d0", "sha256": "8324b2d21f7b9f2db6eb0c224279cd75864c4bb7caa12568a917585b48647492" }, "downloads": -1, "filename": "quantulum3-0.3.1.tar.gz", "has_sig": false, "md5_digest": "b86b7a519c9f80eba237c5fb699a27d0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1006326, "upload_time": "2018-09-13T23:05:54", "upload_time_iso_8601": "2018-09-13T23:05:54.084057Z", "url": "https://files.pythonhosted.org/packages/d9/79/4d3bf5bc6be2d83dd1a2641e795803a64a7a537a9031695b18dbdcf49274/quantulum3-0.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "02c1a6ce2be74cc4d4d447a5275b6abe", "sha256": "d63e2d51900b11693e89c0ef37f6dcf7d7f7541b9003d9cb61c2439fef01f2c3" }, "downloads": -1, "filename": "quantulum3-0.3.2-py3-none-any.whl", "has_sig": false, "md5_digest": "02c1a6ce2be74cc4d4d447a5275b6abe", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1027207, "upload_time": "2018-09-14T00:28:29", "upload_time_iso_8601": "2018-09-14T00:28:29.422835Z", "url": "https://files.pythonhosted.org/packages/e5/02/ec27b53930c0b85914a018dc93fa78f26bb8fac2abde4bdbcf0a54921e8f/quantulum3-0.3.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "99dd9193634a54681bf8d23e4d1c1a5e", "sha256": "0781176adeccd22c5396e50608fef14d8dee5c62b8ed6d833566ff634d526e71" }, "downloads": -1, "filename": "quantulum3-0.3.2.tar.gz", "has_sig": false, "md5_digest": "99dd9193634a54681bf8d23e4d1c1a5e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1007377, "upload_time": "2018-09-14T00:28:32", "upload_time_iso_8601": "2018-09-14T00:28:32.216273Z", "url": "https://files.pythonhosted.org/packages/52/23/af4e1bc5bddc2d66449f8c1a0143fc9d5384b221f9952af7b5c496c38955/quantulum3-0.3.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "11f758d54dc73582a05243df5f3e3b13", "sha256": "877e2e484be3bbfa6f143a7b4e21c1496a7ddf59780487616348eca11b9b1a2f" }, "downloads": -1, "filename": "quantulum3-0.3.3-py3-none-any.whl", "has_sig": false, "md5_digest": "11f758d54dc73582a05243df5f3e3b13", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1027385, "upload_time": "2018-09-15T10:28:19", "upload_time_iso_8601": "2018-09-15T10:28:19.744322Z", "url": "https://files.pythonhosted.org/packages/c9/ea/cba0252b8b208d48a26a8fdf6bcedd84d5139d96c0fad0f6f5e206510a98/quantulum3-0.3.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8c0f787818bbd04e4339a102e97edfa3", "sha256": "a953ef5176124fa19b17d6bf54916521e63a30225ce6ccfa50ff8d7623b59c8a" }, "downloads": -1, "filename": "quantulum3-0.3.3.tar.gz", "has_sig": false, "md5_digest": "8c0f787818bbd04e4339a102e97edfa3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1007504, "upload_time": "2018-09-15T10:28:22", "upload_time_iso_8601": "2018-09-15T10:28:22.606148Z", "url": "https://files.pythonhosted.org/packages/79/b3/31ec77c807ddb9ac3c978379836e8fd0791c4f8184e0ef6b79e40c017d6b/quantulum3-0.3.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "04b5f8994b73bc19dcdb95a410394543", "sha256": "d2cdd76f3a253d2ebccdf5846f9bef9694bc1b945e348118c4095d609d27e98c" }, "downloads": -1, "filename": "quantulum3-0.3.4-py3-none-any.whl", "has_sig": false, "md5_digest": "04b5f8994b73bc19dcdb95a410394543", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1027605, "upload_time": "2018-09-15T10:37:51", "upload_time_iso_8601": "2018-09-15T10:37:51.743481Z", "url": "https://files.pythonhosted.org/packages/ee/b4/8459098a96215cfe6364ed89c399aa559afeb79d7614672d8500d82d564a/quantulum3-0.3.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "df9d1daff3fa4fa861ac93b17df89104", "sha256": "eb4431779404a4e2f2b59e2b4356ab8130f7bca59949326d0c5c96ec609d0286" }, "downloads": -1, "filename": "quantulum3-0.3.4.tar.gz", "has_sig": false, "md5_digest": "df9d1daff3fa4fa861ac93b17df89104", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1007718, "upload_time": "2018-09-15T10:37:54", "upload_time_iso_8601": "2018-09-15T10:37:54.509696Z", "url": "https://files.pythonhosted.org/packages/cf/9c/4aefa45c20a63e25b6c7b0c3179c5bbd23b1f605a78f61ab1b36ab1f83ac/quantulum3-0.3.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "10bbab55c20fd7cf381c99878cf2350f", "sha256": "9b327fc672f98d418a854b38b7f1f6ef20294526c9b0116f664a190b6b3253a8" }, "downloads": -1, "filename": "quantulum3-0.3.5-py3-none-any.whl", "has_sig": false, "md5_digest": "10bbab55c20fd7cf381c99878cf2350f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1028441, "upload_time": "2018-09-16T21:19:10", "upload_time_iso_8601": "2018-09-16T21:19:10.191399Z", "url": "https://files.pythonhosted.org/packages/45/64/468b3873641007ad2f45c31e682123ca2c7098d93cf30b58be78b806195e/quantulum3-0.3.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b39466c828eb2fe8a56d2f483fb92297", "sha256": "64357c643b6a70dbf1fc81c9cc3a74ffac28d254763106388f2d9fc6bb278752" }, "downloads": -1, "filename": "quantulum3-0.3.5.tar.gz", "has_sig": false, "md5_digest": "b39466c828eb2fe8a56d2f483fb92297", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1008502, "upload_time": "2018-09-16T21:19:13", "upload_time_iso_8601": "2018-09-16T21:19:13.597078Z", "url": "https://files.pythonhosted.org/packages/1d/bd/3cf170a85911a25c3acc476f5b33bd0aed8874f31e9465ebb8aea15b0ebb/quantulum3-0.3.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "071f58b7d0b3c8b6d929717561a0db88", "sha256": "fe6c48857cb9fa89af6b17a1f20a06e65c1c0ef51c2e2082c6df22a118352d30" }, "downloads": -1, "filename": "quantulum3-0.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "071f58b7d0b3c8b6d929717561a0db88", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1029610, "upload_time": "2018-09-20T14:08:17", "upload_time_iso_8601": "2018-09-20T14:08:17.879449Z", "url": "https://files.pythonhosted.org/packages/e0/a8/77f8e5e11dba93e90e26c58196054ccdeacd7d0475eecd02cb81771f4f04/quantulum3-0.4.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e3a1cdf5c66ff74b30f1b0b358fdcf3e", "sha256": "44c31793a7ad327b45552e872334cf88dc4ba4c59205712b66d6d5472e25a2f0" }, "downloads": -1, "filename": "quantulum3-0.4.0.tar.gz", "has_sig": false, "md5_digest": "e3a1cdf5c66ff74b30f1b0b358fdcf3e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1009068, "upload_time": "2018-09-20T14:08:20", "upload_time_iso_8601": "2018-09-20T14:08:20.634547Z", "url": "https://files.pythonhosted.org/packages/87/bc/eb63abae0c1af9fe58646d4ec17de8a9bfdcfaddd34ca3df8cca05e96743/quantulum3-0.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "5c31264afd2e304047dcc23a53b63794", "sha256": "04ce7f497be4c839fbea74f1853a7d07311b6a913c29cff7558a5e0b247124e9" }, "downloads": -1, "filename": "quantulum3-0.5.0-py3-none-any.whl", "has_sig": false, "md5_digest": "5c31264afd2e304047dcc23a53b63794", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 8538132, "upload_time": "2018-09-29T14:57:24", "upload_time_iso_8601": "2018-09-29T14:57:24.447795Z", "url": "https://files.pythonhosted.org/packages/8e/51/e6d1c55aa6b7be08fb32267b0d0a83711366ff39b834c83146c0eac5d7e5/quantulum3-0.5.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1ffcb99054c01ed103a49a4a1ecd6dbc", "sha256": "3e0640fd2ced43d0ad75c6511788798c044531add61c9016c305487912bd305c" }, "downloads": -1, "filename": "quantulum3-0.5.0.tar.gz", "has_sig": false, "md5_digest": "1ffcb99054c01ed103a49a4a1ecd6dbc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7809779, "upload_time": "2018-09-29T14:57:35", "upload_time_iso_8601": "2018-09-29T14:57:35.826028Z", "url": "https://files.pythonhosted.org/packages/8f/e7/8210389d04661280b517778ed10fe53d9d1bffab7dc79933e07fe6716892/quantulum3-0.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "0618ca3bd586a5ac8100dd0edfbfdcce", "sha256": "66c36bc9324d3005242bfa7cb948d555d05d310122504ce21c65e60daeaf4407" }, "downloads": -1, "filename": "quantulum3-0.6.0-py3-none-any.whl", "has_sig": false, "md5_digest": "0618ca3bd586a5ac8100dd0edfbfdcce", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 16319228, "upload_time": "2018-10-07T15:16:26", "upload_time_iso_8601": "2018-10-07T15:16:26.620081Z", "url": "https://files.pythonhosted.org/packages/15/b9/5dff4b44cc226870a381209986091e1643e8cc4c3e06e468823c2a5c6029/quantulum3-0.6.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "88c59a6aa74e810d2a09ca9aaecbe664", "sha256": "80b535710dbdfec01f68931ca08366b7633211972710f88ee6a99f9394c244f7" }, "downloads": -1, "filename": "quantulum3-0.6.0.tar.gz", "has_sig": false, "md5_digest": "88c59a6aa74e810d2a09ca9aaecbe664", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7804583, "upload_time": "2018-10-07T15:16:39", "upload_time_iso_8601": "2018-10-07T15:16:39.813202Z", "url": "https://files.pythonhosted.org/packages/69/4f/ffa30a80238ee41ca269dcfba372f41aa538817fe2d6277002e7cee85a5f/quantulum3-0.6.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "6e4cfd26530f38f23d923ba1954645ec", "sha256": "8a86399a499d68288fe222e293ce5224bb8eace05762b7248ca149699345b70d" }, "downloads": -1, "filename": "quantulum3-0.6.1-py3-none-any.whl", "has_sig": false, "md5_digest": "6e4cfd26530f38f23d923ba1954645ec", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 16321008, "upload_time": "2018-10-07T15:32:29", "upload_time_iso_8601": "2018-10-07T15:32:29.888207Z", "url": "https://files.pythonhosted.org/packages/5d/00/16298866e7d664c46475a9c02a0a31ce44754c513d4a533e987e119b9f9f/quantulum3-0.6.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b6bc33581a46ac5405d98758abfe4973", "sha256": "ab70046fe92ba41a70536f4487d579d18d650523d4de5d131562b331d8d08b64" }, "downloads": -1, "filename": "quantulum3-0.6.1.tar.gz", "has_sig": false, "md5_digest": "b6bc33581a46ac5405d98758abfe4973", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7805913, "upload_time": "2018-10-07T15:32:43", "upload_time_iso_8601": "2018-10-07T15:32:43.743099Z", "url": "https://files.pythonhosted.org/packages/10/6c/7d9db964d0002599b1438e9720249dfdca4b6db7c5e50c23f547416d644e/quantulum3-0.6.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "66847bf333bf979f4dbd926ab63408bd", "sha256": "6373e888775ce1d364dbd77783a06dd4a5192eb09adc24f43c35c72424f9273a" }, "downloads": -1, "filename": "quantulum3-0.6.2-py3-none-any.whl", "has_sig": false, "md5_digest": "66847bf333bf979f4dbd926ab63408bd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 16321074, "upload_time": "2018-10-07T20:57:37", "upload_time_iso_8601": "2018-10-07T20:57:37.778393Z", "url": "https://files.pythonhosted.org/packages/4c/9a/17564ab0f0ac2332e9ddf52a885362aacab0435600b2f5035f16b3acca5e/quantulum3-0.6.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "84c9f77efd8eea6fbbe76b9e19a669fd", "sha256": "f9c79edd5542b541931eab4c3992b094126f863c6b9ee7f1870fe90eb8cff2ba" }, "downloads": -1, "filename": "quantulum3-0.6.2.tar.gz", "has_sig": false, "md5_digest": "84c9f77efd8eea6fbbe76b9e19a669fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7805974, "upload_time": "2018-10-07T20:57:51", "upload_time_iso_8601": "2018-10-07T20:57:51.036105Z", "url": "https://files.pythonhosted.org/packages/c9/4e/e2db6fa2539e994626a2d20a0d9d6f8f10b5fee90193829f3b2fc25339db/quantulum3-0.6.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "60cd8ed9c84e4d060215dc52c988c8e7", "sha256": "771b593fa588c823ca50f42a1db7200c97755934be12c84ffa6f56aa4c3f6cf7" }, "downloads": -1, "filename": "quantulum3-0.6.3-py3-none-any.whl", "has_sig": false, "md5_digest": "60cd8ed9c84e4d060215dc52c988c8e7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 16321071, "upload_time": "2018-10-07T21:36:54", "upload_time_iso_8601": "2018-10-07T21:36:54.406056Z", "url": "https://files.pythonhosted.org/packages/cb/08/3462ba570dc7fbf672a2f454450efad971f18e13a20e228f1757a6f4d7e2/quantulum3-0.6.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "af5214b988273c21b0df4919227c4f63", "sha256": "8c1de0cb3b54033890f869762394557366bb9e20b85ed11a2b229f71e1c41aa6" }, "downloads": -1, "filename": "quantulum3-0.6.3.tar.gz", "has_sig": false, "md5_digest": "af5214b988273c21b0df4919227c4f63", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7805985, "upload_time": "2018-10-07T21:37:04", "upload_time_iso_8601": "2018-10-07T21:37:04.522767Z", "url": "https://files.pythonhosted.org/packages/bd/23/dfe0ec0c3991e842b1acccd7afaf7fe3dacb50a66fe10175543a1f524bfc/quantulum3-0.6.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.4": [ { "comment_text": "", "digests": { "md5": "062875d0ae02b6177c208ef0f171bbd4", "sha256": "e0f7c36e9766224f57f25276e6c933dda46785982ec33c85f2c017e6dfd14e13" }, "downloads": -1, "filename": "quantulum3-0.6.4-py3-none-any.whl", "has_sig": false, "md5_digest": "062875d0ae02b6177c208ef0f171bbd4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 16334064, "upload_time": "2018-10-08T20:21:50", "upload_time_iso_8601": "2018-10-08T20:21:50.979162Z", "url": "https://files.pythonhosted.org/packages/11/e1/555e30812be86b1410ba5e1964a62bd8b0171b8c730701e7e1a0f53c2a5e/quantulum3-0.6.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8b9c58045c0e3c2be40d87329f4236c5", "sha256": "ce533669ddf6d9d120e3950a92be30d037718bc1e2377a7ddc17f23accd8d48e" }, "downloads": -1, "filename": "quantulum3-0.6.4.tar.gz", "has_sig": false, "md5_digest": "8b9c58045c0e3c2be40d87329f4236c5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7814867, "upload_time": "2018-10-08T20:22:02", "upload_time_iso_8601": "2018-10-08T20:22:02.922133Z", "url": "https://files.pythonhosted.org/packages/af/f5/30afb8900533dce5ace8ef19f2caac2f5727468db6b89a36256a97528e40/quantulum3-0.6.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.5": [ { "comment_text": "", "digests": { "md5": "667baa45e4bc2b1b49e27de09219969a", "sha256": "dbd1aa9cab4ee906326fd6a69cbab257dd83b8fd4355ef7c57ab63a74c3108ad" }, "downloads": -1, "filename": "quantulum3-0.6.5-py3-none-any.whl", "has_sig": false, "md5_digest": "667baa45e4bc2b1b49e27de09219969a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 19341352, "upload_time": "2018-12-21T15:16:22", "upload_time_iso_8601": "2018-12-21T15:16:22.741551Z", "url": "https://files.pythonhosted.org/packages/3b/2b/9429d0a00e322cdc9952b22816284a72bb530d742e1a294538aa8ceb8382/quantulum3-0.6.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b494cc6bfa25674a2106616aa78ce37f", "sha256": "e61f60ba35dd89bc2c0243fe950883a6399d809c8a56c3791b9f42290a0ad24e" }, "downloads": -1, "filename": "quantulum3-0.6.5.tar.gz", "has_sig": false, "md5_digest": "b494cc6bfa25674a2106616aa78ce37f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11093727, "upload_time": "2018-12-21T15:16:38", "upload_time_iso_8601": "2018-12-21T15:16:38.952782Z", "url": "https://files.pythonhosted.org/packages/cf/b9/af87e2f803915d790f796ff6356acc105fd74bc85bdbc87bca97451d12c1/quantulum3-0.6.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.6": [ { "comment_text": "", "digests": { "md5": "565f002a8d6dc4cf78b9c7116b2aa027", "sha256": "b97c26367f9255c54e1161b50098036f19b06fb132496799e33f73094f053cee" }, "downloads": -1, "filename": "quantulum3-0.6.6-py3-none-any.whl", "has_sig": false, "md5_digest": "565f002a8d6dc4cf78b9c7116b2aa027", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 19335996, "upload_time": "2019-02-03T22:34:03", "upload_time_iso_8601": "2019-02-03T22:34:03.696462Z", "url": "https://files.pythonhosted.org/packages/1e/22/36c1e0f2c0558a6d86e55af02e0e4bda2bb7a91adaa91db6b75042017710/quantulum3-0.6.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a2fb8b307ccdca2e707530daf6b0f346", "sha256": "77ceb1a07e1ffb79c7dc650b8fda2c8423a6ad9e62e5c83de329dec6ea490983" }, "downloads": -1, "filename": "quantulum3-0.6.6.tar.gz", "has_sig": false, "md5_digest": "a2fb8b307ccdca2e707530daf6b0f346", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11087344, "upload_time": "2019-02-03T22:34:18", "upload_time_iso_8601": "2019-02-03T22:34:18.701480Z", "url": "https://files.pythonhosted.org/packages/7b/db/10d625b3ec23c9ce93efaf2d9d862e7f9c799ecaea30664afe5a269275f0/quantulum3-0.6.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "0d42038e5e1ab1f2cbca71797e6cb8eb", "sha256": "41b550e0ea459790c173b1bfe3deb2706bf22ac436f8cb5719da25846852545f" }, "downloads": -1, "filename": "quantulum3-0.7.0-py3-none-any.whl", "has_sig": false, "md5_digest": "0d42038e5e1ab1f2cbca71797e6cb8eb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 9758978, "upload_time": "2019-02-04T22:52:46", "upload_time_iso_8601": "2019-02-04T22:52:46.358779Z", "url": "https://files.pythonhosted.org/packages/b2/47/40c512f53192eac61097e2ae75546f6d38e5ba315e92a5245d69cc9ed1a9/quantulum3-0.7.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6ac1ea1dcd087ce959ca74f16b3f7973", "sha256": "51c63d3475d7e5d08e2546b9b674901da00723659acce24a60287ffcf2ff3077" }, "downloads": -1, "filename": "quantulum3-0.7.0.tar.gz", "has_sig": false, "md5_digest": "6ac1ea1dcd087ce959ca74f16b3f7973", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9750250, "upload_time": "2019-02-04T22:52:49", "upload_time_iso_8601": "2019-02-04T22:52:49.923334Z", "url": "https://files.pythonhosted.org/packages/ed/a8/7a2313f1e3db567446fed7612b9b00d1f14892584d7511e02771e8fa11ed/quantulum3-0.7.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "c474120a06536a340bbf81778e60c81d", "sha256": "2d97b685a43389959b3dc3be46f17086c9b8de664f27db317eb4bb3613ca355f" }, "downloads": -1, "filename": "quantulum3-0.7.1-py3-none-any.whl", "has_sig": false, "md5_digest": "c474120a06536a340bbf81778e60c81d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 11097092, "upload_time": "2019-05-07T19:59:13", "upload_time_iso_8601": "2019-05-07T19:59:13.931511Z", "url": "https://files.pythonhosted.org/packages/22/8e/aa9a20eebcb27a5b7add2b8d4e40e1d02724a995e12c6e8341ad94a671d6/quantulum3-0.7.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d59ff9e0cda2d3d65af922a27c7cd0f9", "sha256": "7ba49b85c4bc6a6e278939f1101facaf47f6e45b3fe6226140814229dde7a083" }, "downloads": -1, "filename": "quantulum3-0.7.1.tar.gz", "has_sig": false, "md5_digest": "d59ff9e0cda2d3d65af922a27c7cd0f9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11083427, "upload_time": "2019-05-07T19:59:18", "upload_time_iso_8601": "2019-05-07T19:59:18.350671Z", "url": "https://files.pythonhosted.org/packages/e7/89/8a72e71cb9326a1041f3f7fe3f90ebdf963722f72c2f75a81c4d7576fbf4/quantulum3-0.7.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.10": [ { "comment_text": "", "digests": { "md5": "d04d0d2de2441c9bac3b46df503fb7c2", "sha256": "1eda716f4d2237bbb70da7cbad3233f005eafb447d8bf8f22d9b38c46856db6d" }, "downloads": -1, "filename": "quantulum3-0.7.10-py3-none-any.whl", "has_sig": false, "md5_digest": "d04d0d2de2441c9bac3b46df503fb7c2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10700103, "upload_time": "2022-02-15T11:47:06", "upload_time_iso_8601": "2022-02-15T11:47:06.838494Z", "url": "https://files.pythonhosted.org/packages/0e/27/be7528d32d08da8f576cdb1f996bcb5b55ac57e8f9f8479e1991e8aaa74d/quantulum3-0.7.10-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e023e2f3a3ea2ee17ffeb27530d4da5c", "sha256": "7064d66f20825edcbaac04bf6b02adc3fe64484407fca8ae6d5dec51e895d92e" }, "downloads": -1, "filename": "quantulum3-0.7.10.tar.gz", "has_sig": false, "md5_digest": "e023e2f3a3ea2ee17ffeb27530d4da5c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10687265, "upload_time": "2022-02-15T11:47:09", "upload_time_iso_8601": "2022-02-15T11:47:09.977385Z", "url": "https://files.pythonhosted.org/packages/9d/dd/0a33457d904de9d66879f0c9f4ab2bc015c8fb3dcc8de83401bb5080b32d/quantulum3-0.7.10.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "ef22ef4dfd1de9f99f1e2e76e3f5191d", "sha256": "6b231ac6525d53d83003d8c8b307ef6bc5e76dca2ffa806b7a4cd1c1a7becf34" }, "downloads": -1, "filename": "quantulum3-0.7.2-py3-none-any.whl", "has_sig": false, "md5_digest": "ef22ef4dfd1de9f99f1e2e76e3f5191d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 11099420, "upload_time": "2019-07-15T19:18:50", "upload_time_iso_8601": "2019-07-15T19:18:50.716852Z", "url": "https://files.pythonhosted.org/packages/18/bc/5cf0721ccd6bdc46ced8f11ddc067410c76bf8037f3b3e48d4825eeb3e46/quantulum3-0.7.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5c03d81a351f5a80c0b73924673096e7", "sha256": "03abc5e2f99f438404a9bdb8241497a8bb4d1a268455a7369551e0ae55e9ce58" }, "downloads": -1, "filename": "quantulum3-0.7.2.tar.gz", "has_sig": false, "md5_digest": "5c03d81a351f5a80c0b73924673096e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11085880, "upload_time": "2019-07-15T19:18:54", "upload_time_iso_8601": "2019-07-15T19:18:54.375969Z", "url": "https://files.pythonhosted.org/packages/b8/47/de5444d1fa55e24ce2ef06316badcec2e659ef58fd7148f4a11cd3c9a90c/quantulum3-0.7.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.3": [ { "comment_text": "", "digests": { "md5": "bdf0e81e203ea21a74d1241545b93d0c", "sha256": "33b183b77e6dd2ef828e605fc1e2ffc5c7ab974075565e25c0cc2fa78071bd9f" }, "downloads": -1, "filename": "quantulum3-0.7.3-py3-none-any.whl", "has_sig": false, "md5_digest": "bdf0e81e203ea21a74d1241545b93d0c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 11098820, "upload_time": "2019-10-31T03:46:08", "upload_time_iso_8601": "2019-10-31T03:46:08.665389Z", "url": "https://files.pythonhosted.org/packages/d0/d5/60d72e7c9393199eba72f88deb06e0fddc4e357d600bdbe5f86e8cfc4512/quantulum3-0.7.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "665b143ec3af40c4a42f81d74a4b1159", "sha256": "3ca01f33d06b06e26029017933e9a91bdea24b6ddc9a236dad4d9f878eaf5c1a" }, "downloads": -1, "filename": "quantulum3-0.7.3.tar.gz", "has_sig": false, "md5_digest": "665b143ec3af40c4a42f81d74a4b1159", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11084932, "upload_time": "2019-10-31T03:46:12", "upload_time_iso_8601": "2019-10-31T03:46:12.452560Z", "url": "https://files.pythonhosted.org/packages/3c/12/b7db2a48bcbd7311550804be20b8e5a1cdd14cf5a1eb784150b71124b2cb/quantulum3-0.7.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.4": [ { "comment_text": "", "digests": { "md5": "553ad0cf713aabffc02654b81cf3c0ac", "sha256": "e8c095c6914e395e34c4bb18c8abb963d31cb28ff4fe88270abc6419acda2893" }, "downloads": -1, "filename": "quantulum3-0.7.4-py3-none-any.whl", "has_sig": false, "md5_digest": "553ad0cf713aabffc02654b81cf3c0ac", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10794255, "upload_time": "2020-05-29T08:10:54", "upload_time_iso_8601": "2020-05-29T08:10:54.370586Z", "url": "https://files.pythonhosted.org/packages/aa/5c/d075150a14bcfd894e920bfc8270b66fbb1895c1b4086764845ed89f7e35/quantulum3-0.7.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b8ebd159eb3a338a8a179cb5ae4ddd89", "sha256": "753f88f59e4036bddfc565757615cdd078797d87b61649aae28274509e476e66" }, "downloads": -1, "filename": "quantulum3-0.7.4.tar.gz", "has_sig": false, "md5_digest": "b8ebd159eb3a338a8a179cb5ae4ddd89", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10780009, "upload_time": "2020-05-29T08:10:56", "upload_time_iso_8601": "2020-05-29T08:10:56.724944Z", "url": "https://files.pythonhosted.org/packages/cb/f2/28ea66acb75c0ccf89960240e74b159e6b88ce9956e7b28cb2bb3b7b5ee5/quantulum3-0.7.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.5": [ { "comment_text": "", "digests": { "md5": "5f41bbec784dcfad1b29b1d135fe7be7", "sha256": "5ff9d690d5db3e73849f28baeb06a466c607c312a9274fe34774c3bb12acedb4" }, "downloads": -1, "filename": "quantulum3-0.7.5-py3-none-any.whl", "has_sig": false, "md5_digest": "5f41bbec784dcfad1b29b1d135fe7be7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10795245, "upload_time": "2020-07-16T22:50:31", "upload_time_iso_8601": "2020-07-16T22:50:31.741134Z", "url": "https://files.pythonhosted.org/packages/bb/8d/de090808d1e7f5fee3604f07e20d92dbaacf850bac65d22b9160a413f0f1/quantulum3-0.7.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ad10e83812a0e6908147a3a6930695a1", "sha256": "51ff1cb6e726577e22683e19be9bb802c109fdf7940437a1e4a8b506f92d49b9" }, "downloads": -1, "filename": "quantulum3-0.7.5.tar.gz", "has_sig": false, "md5_digest": "ad10e83812a0e6908147a3a6930695a1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10781033, "upload_time": "2020-07-16T22:50:34", "upload_time_iso_8601": "2020-07-16T22:50:34.255102Z", "url": "https://files.pythonhosted.org/packages/24/2d/fdeb9ea52128355bdacccedb03f24fbdaf381c2e3026ce103b3803fb76c6/quantulum3-0.7.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.6": [ { "comment_text": "", "digests": { "md5": "b682ff40bd390c5596fcb8b03f2bc59f", "sha256": "3d585ede107873039b4154541b5e409bf79539a42514a18f71955a182d9d6ad1" }, "downloads": -1, "filename": "quantulum3-0.7.6-py3-none-any.whl", "has_sig": false, "md5_digest": "b682ff40bd390c5596fcb8b03f2bc59f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10700769, "upload_time": "2020-10-24T10:58:02", "upload_time_iso_8601": "2020-10-24T10:58:02.913630Z", "url": "https://files.pythonhosted.org/packages/7b/da/d9cd73bac882cffa901c51d7e2f42f9eec7e2792f71d220593242c30be51/quantulum3-0.7.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d4383ae0c3a5cd07ef75f5426d346595", "sha256": "a5b4b6869af31af96a42c20d62c7fe9e0e5318c8c6ac86a7e3cd83ad5a8de567" }, "downloads": -1, "filename": "quantulum3-0.7.6.tar.gz", "has_sig": false, "md5_digest": "d4383ae0c3a5cd07ef75f5426d346595", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10687260, "upload_time": "2020-10-24T10:58:05", "upload_time_iso_8601": "2020-10-24T10:58:05.181423Z", "url": "https://files.pythonhosted.org/packages/63/ef/95ac4434e8408416e18afc1a76a1c7f8ce55c95ea099851ec0bdf87adca6/quantulum3-0.7.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.7": [ { "comment_text": "", "digests": { "md5": "90daf6f580b05a0cd9e17e36ba5eab40", "sha256": "85df7125b438b143690e25a439f192bbf1560229d5cf98215ee4fa0e928990a7" }, "downloads": -1, "filename": "quantulum3-0.7.7-py3-none-any.whl", "has_sig": false, "md5_digest": "90daf6f580b05a0cd9e17e36ba5eab40", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10703428, "upload_time": "2021-06-24T14:45:35", "upload_time_iso_8601": "2021-06-24T14:45:35.618874Z", "url": "https://files.pythonhosted.org/packages/66/37/23a38e9d5d2e52b4b6d4b6c3e882e0e47299bddb744ab1cd628e2aeed444/quantulum3-0.7.7-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4f16afef38cbfb0b8064fdb3d4cbf6d7", "sha256": "d37d9c1d6cbf9691262e99c9653bdc32fb7588498977bf6dd4211a3b0bf54a4d" }, "downloads": -1, "filename": "quantulum3-0.7.7.tar.gz", "has_sig": false, "md5_digest": "4f16afef38cbfb0b8064fdb3d4cbf6d7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10690423, "upload_time": "2021-06-24T14:45:38", "upload_time_iso_8601": "2021-06-24T14:45:38.085821Z", "url": "https://files.pythonhosted.org/packages/7d/f5/9f74c770f170f6b63572d9475f6cc25cb65e8e6d26bae7a634d4d1fcd05f/quantulum3-0.7.7.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.8": [ { "comment_text": "", "digests": { "md5": "f27b5092a5bb77758e77ed2c449c53a1", "sha256": "44af72b6131f589812f8b01a0ade2e5982489269581ce4dc17f283aac2ed121a" }, "downloads": -1, "filename": "quantulum3-0.7.8-py3-none-any.whl", "has_sig": false, "md5_digest": "f27b5092a5bb77758e77ed2c449c53a1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10701202, "upload_time": "2021-08-30T11:52:49", "upload_time_iso_8601": "2021-08-30T11:52:49.320736Z", "url": "https://files.pythonhosted.org/packages/e1/da/394bed15809ee2945f7780787c00b433e00a5e56d45818e964130c9e2f8e/quantulum3-0.7.8-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6504288c50191288933a444c6c39db00", "sha256": "2cbe5b6a8a827d308ed492bb83cb86f9111fc7f809bc8553f3280a2b0f965569" }, "downloads": -1, "filename": "quantulum3-0.7.8.tar.gz", "has_sig": false, "md5_digest": "6504288c50191288933a444c6c39db00", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10688027, "upload_time": "2021-08-30T11:52:51", "upload_time_iso_8601": "2021-08-30T11:52:51.699817Z", "url": "https://files.pythonhosted.org/packages/e9/74/b72c80b68d93ff8315b1e5a973373002e6c407ecb6e8891b0e3d2aeacac4/quantulum3-0.7.8.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.9": [ { "comment_text": "", "digests": { "md5": "1096f30a263089eca6741e845469d4d3", "sha256": "be2c3f6a79a9c01e440e0ee9390c15aba010a5cc01723e5aea48702bcf7e7dad" }, "downloads": -1, "filename": "quantulum3-0.7.9-py3-none-any.whl", "has_sig": false, "md5_digest": "1096f30a263089eca6741e845469d4d3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10700798, "upload_time": "2021-09-21T23:30:40", "upload_time_iso_8601": "2021-09-21T23:30:40.021533Z", "url": "https://files.pythonhosted.org/packages/9e/6a/d38bcabbb80edb0cb7a063e7789e33bede51231c0e50c3ee2871aee36590/quantulum3-0.7.9-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2c20f9379428d83479740cf73e6beff7", "sha256": "8ac9664734133d7c3ff2796d69f64440e4ab424ced98f791b34a86e86d87b352" }, "downloads": -1, "filename": "quantulum3-0.7.9.tar.gz", "has_sig": false, "md5_digest": "2c20f9379428d83479740cf73e6beff7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10688012, "upload_time": "2021-09-21T23:30:43", "upload_time_iso_8601": "2021-09-21T23:30:43.202884Z", "url": "https://files.pythonhosted.org/packages/5f/75/74c1de103b30798b4a711b5e1749aa692651c7f250a3c31721b83f21177e/quantulum3-0.7.9.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "d04d0d2de2441c9bac3b46df503fb7c2", "sha256": "1eda716f4d2237bbb70da7cbad3233f005eafb447d8bf8f22d9b38c46856db6d" }, "downloads": -1, "filename": "quantulum3-0.7.10-py3-none-any.whl", "has_sig": false, "md5_digest": "d04d0d2de2441c9bac3b46df503fb7c2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 10700103, "upload_time": "2022-02-15T11:47:06", "upload_time_iso_8601": "2022-02-15T11:47:06.838494Z", "url": "https://files.pythonhosted.org/packages/0e/27/be7528d32d08da8f576cdb1f996bcb5b55ac57e8f9f8479e1991e8aaa74d/quantulum3-0.7.10-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e023e2f3a3ea2ee17ffeb27530d4da5c", "sha256": "7064d66f20825edcbaac04bf6b02adc3fe64484407fca8ae6d5dec51e895d92e" }, "downloads": -1, "filename": "quantulum3-0.7.10.tar.gz", "has_sig": false, "md5_digest": "e023e2f3a3ea2ee17ffeb27530d4da5c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10687265, "upload_time": "2022-02-15T11:47:09", "upload_time_iso_8601": "2022-02-15T11:47:09.977385Z", "url": "https://files.pythonhosted.org/packages/9d/dd/0a33457d904de9d66879f0c9f4ab2bc015c8fb3dcc8de83401bb5080b32d/quantulum3-0.7.10.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }