{ "info": { "author": "Antonio Piccolboni", "author_email": "antonio@piccolboni.info", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7" ], "description": "Introduction to autosig\n=======================\n\n\n.. image:: https://img.shields.io/pypi/v/autosig.svg\n :target: https://pypi.python.org/pypi/autosig\n\n.. image:: https://img.shields.io/travis/piccolbo/autosig.svg\n :target: https://travis-ci.org/piccolbo/autosig\n\n.. image:: https://codecov.io/gh/piccolbo/autosig/branch/master/graph/badge.svg\n :target: https://codecov.io/gh/piccolbo/autosig\n\n.. image:: https://readthedocs.org/projects/autosig/badge/?version=latest\n :target: https://autosig.readthedocs.io/en/latest/?badge=latest\n :alt: Documentation Status\n\n\n.. image:: https://pyup.io/repos/github/piccolbo/autosig/shield.svg\n :target: https://pyup.io/repos/github/piccolbo/autosig/\n :alt: Updates\n\n.. image:: https://api.codeclimate.com/v1/badges/233681cf64a66ee9c50e/maintainability\n :target: https://codeclimate.com/github/piccolbo/autosig/maintainability\n :alt: Maintainability\n\n\nGo straight to the `documentation `_. Install with ``pip install autosig``. Python 3 only.\n\nMotivation\n----------\n\nWhen I look at a great API I always observe a great level of consistency: similarly named and ordered arguments at a syntactic level; similar defaults, range of allowable values etc. on the semantic side. When looking at the code, one doesn't see these regularities represented very explicitly.\n\nImagine we are starting to develop a library with three entry points, ``map``, ``reduce`` and ``filter``::\n\n from collections import Iterable\n\n\n def map(function, iterable):\n assert callable(function)\n assert isinstance(iterable, Iterable)\n return (function(x) for x in iterable)\n\n\n def reduce(function, iterable):\n total = next(iterable)\n for x in iterable:\n total = function(total, x)\n return total\n\n\n def filter(iterable, fun):\n if not isinstance(iterable, Iterable):\n iterable = [iterable]\n if isinstance(fun, set):\n fun = lambda x: x in fun\n return (x for x in iterable if fun(x))\n\n\n\nBut this is hardly well crafted. The order and naming of arguments isn't consistent. One function checks its argument right away. The next doesn't. The third attempts certain conversions to try and work with arguments that are not iterables or functions. There are reasons to build strict or tolerant APIs, but it's unlikely that mixing the two within the same API is a good idea, unless it's done deliberately (for instance offering a strict and tolerant version of every function). It wouldn't be difficult to fix these problems in this small API but we would end up with duplicated logic that we need to keep aligned for the foreseeable future. Let's do it instead the ``autosig`` way::\n\n from autosig import param, Signature, autosig, check\n from collections import Iterable\n\n\n def to_callable(x):\n return (lambda y: y in x) if isinstance(x, set) else x\n\n\n def to_iterable(x):\n return x if isinstance(x, Iterable) else [x]\n\n\n API_signature = Signature(\n function=param(converter=to_callable, validator=callable),\n iterable=param(converter=to_iterable, validator=Iterable))\n\n\n @autosig(API_signature)\n def map(function, iterable):\n return (function(x) for x in iterable)\n\n\n @autosig(API_signature)\n def reduce(function, iterable):\n total = next(iterable)\n for x in iterable:\n total = function(total, x)\n return total\n\n\n @autosig(API_signature)\n def filter(function, iterable):\n return (x for x in iterable if function(x))\n\n\nLet's go through it step by step. First we defined 2 simple conversion\nfunctions. This is a good first step independent of ``autosig``. Next we create\na signature object, with two parameters. These are intialized with objects that\ndefine the checking and conversion that need to be performed on those\nparameters, independent of which function is going to use that signature.\nA type works as a validator, as does any callable that returns `True` when a value is valid, returns `False` or raises an exception otherwise. Finally, we repeat\nthe definition of our three API function, attaching the signature just defined\nwith a decorator and then skipping all the checking and conversion logic and\ngoing straight to the meat of the function!\n\nAt the cost of a little code we have gained a lot:\n\n* Explicit definition of the desired API signature, in a single place --- DRY principle;\n* association of that signature with API functions, checked at load time --- no room for error;\n* uniform application of conversion and validation logic without repeating it;\n\n``autosig`` is the pro tool for the API designer! If you want to take a look at a real package that uses ``autosig``, check out `altair_recipes `_.\n\n\nFeatures\n--------\n\n* Define reusable parameters with defaults, conversion and validation logic, documentation, preferred position in the signature and whether keyword-only.\n* Define reusable signatures as ordered maps from names to parameters.\n* Combine signatures to create complex ones on top of simple ones.\n* Decorate functions and methods with their signatures. Enforced at load time. Conversion and validation logic executed at call time.\n* Not hot about signatures? You can just use parameters as in::\n\n @autosig\n def reduce(function = param(...), iterable=param(...)):\n\n for more free-form APIs.\n* Open source (BSD license)\n* Extensive property-based testing, excellent coverage\n\n\n\nCredits\n-------\n\nThis package is heavily based on `attrs `_. While that may change in the future, for now it must be said this is a thin layer over that, with a bit of reflection sprinkled over. It is, I suppose, a quite original direction to take ``attrs`` into.\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://github.com/piccolbo/autosig", "keywords": "", "license": "GPL-3.0", "maintainer": "Antonio Piccolboni", "maintainer_email": "antonio@piccolboni.info", "name": "autosig", "package_url": "https://pypi.org/project/autosig/", "platform": "", "project_url": "https://pypi.org/project/autosig/", "project_urls": { "Documentation": "https://autosig.readthedocs.io/en/latest/", "Homepage": "https://github.com/piccolbo/autosig", "Repository": "https://github.com/piccolbo/autosig" }, "release_url": "https://pypi.org/project/autosig/0.9.2/", "requires_dist": [ "attrs (>=18.2.0)", "toolz (>=0.9.0)" ], "requires_python": ">=3.5,<4.0", "summary": "Define signatures to create beautiful APIs", "version": "0.9.2" }, "last_serial": 5913578, "releases": { "0.2.0": [ { "comment_text": "", "digests": { "md5": "48af86ab01ac7ec9838affc371b9acdf", "sha256": "f385310867af560739c980dbbacb954ea661df448515791c86e602c6dcb14fcb" }, "downloads": -1, "filename": "autosig-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "48af86ab01ac7ec9838affc371b9acdf", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3033, "upload_time": "2018-08-28T06:27:54", "url": "https://files.pythonhosted.org/packages/02/be/1555d40f91997d7ce45a84a841b98f3fcab1e282bb30bc8a0e79094ee27f/autosig-0.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "11677f5fca3cb025f51a63b0142a6d34", "sha256": "5d4d8199d64f5445c06c4ab57b1d336cb42110ce34c28c687dd709d780442246" }, "downloads": -1, "filename": "autosig-0.2.0.tar.gz", "has_sig": false, "md5_digest": "11677f5fca3cb025f51a63b0142a6d34", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9486, "upload_time": "2018-08-28T06:27:55", "url": "https://files.pythonhosted.org/packages/fa/b5/d069bfe00023cfc91b8ce271b62a51cb419948f43e2fdc4047701513e412/autosig-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "999659f6422f8f1bb213e8e87218e1b7", "sha256": "c3475eef8d6418037745bbd595ab2e89efdce177855b1c0128c872138ef3da1d" }, "downloads": -1, "filename": "autosig-0.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "999659f6422f8f1bb213e8e87218e1b7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3041, "upload_time": "2018-08-28T18:15:11", "url": "https://files.pythonhosted.org/packages/c8/0a/0e8b81b7d00f34f23f16c9643890b0128f9321033d455555192d1b79ec65/autosig-0.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "da024052da06f92dff0fdd37a3a724a4", "sha256": "59364686a5799ffec75492a82060cccfda7da794f012d5fa558d095cba9dabc7" }, "downloads": -1, "filename": "autosig-0.2.1.tar.gz", "has_sig": false, "md5_digest": "da024052da06f92dff0fdd37a3a724a4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9489, "upload_time": "2018-08-28T18:15:12", "url": "https://files.pythonhosted.org/packages/24/c2/b1648c9a9d8feeb94aeaa19c77724c211a3a4f141fdcbcf614d1c69db2d2/autosig-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "fc725d7ee4e69f2bdc846727df38cb46", "sha256": "216c2aae32be0b0212e32ae62f8b077b202ac908727c0f912cb32bdc2e3c14ef" }, "downloads": -1, "filename": "autosig-0.2.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fc725d7ee4e69f2bdc846727df38cb46", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3073, "upload_time": "2018-08-28T21:09:19", "url": "https://files.pythonhosted.org/packages/18/04/b4a5f67341832d8dc26c9947a8ab5498269f47e98e995a731cfa09006612/autosig-0.2.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "11bfadcf1ccc4306437d13ac5bbb7648", "sha256": "a3bc015d5c7bb5072bb837dced55fe7f2d2b78a725dfcf25dc9fe1b6a5ae6fab" }, "downloads": -1, "filename": "autosig-0.2.2.tar.gz", "has_sig": false, "md5_digest": "11bfadcf1ccc4306437d13ac5bbb7648", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9561, "upload_time": "2018-08-28T21:09:21", "url": "https://files.pythonhosted.org/packages/91/eb/14e5d623f45b0d93fc300fe2f3763b41ebc2b27f77fc84b28c7b23e2aef0/autosig-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "2dd45670f684f100b76d457e657e5b04", "sha256": "c28290649a8405a2ca00bf3945ff53e44649dc8524e50156e330e28d0d7f573f" }, "downloads": -1, "filename": "autosig-0.2.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2dd45670f684f100b76d457e657e5b04", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3093, "upload_time": "2018-08-29T23:06:21", "url": "https://files.pythonhosted.org/packages/8b/26/a605298881365d991bbde615905cbf2f0fe829b0bba4714de5b98cdf64c9/autosig-0.2.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "622bc1b36c55e7e55399aafeb2c0aa94", "sha256": "c1bd5c2bc284511b069f154049abe1c66e829ea3846b54550693db4a02bf5ee6" }, "downloads": -1, "filename": "autosig-0.2.3.tar.gz", "has_sig": false, "md5_digest": "622bc1b36c55e7e55399aafeb2c0aa94", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9608, "upload_time": "2018-08-29T23:06:23", "url": "https://files.pythonhosted.org/packages/cb/f9/c3b5a3fab7b9a6a16c7bae5dd580263522249e1ca4d38388a325b58c8fd9/autosig-0.2.3.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "4b3d9f2d22558d00ed28138766810c89", "sha256": "64a1834396732e77fa3d73fcfce03ab60cc1658d89810fd138e2c469ffbda094" }, "downloads": -1, "filename": "autosig-0.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4b3d9f2d22558d00ed28138766810c89", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3662, "upload_time": "2018-08-30T20:50:39", "url": "https://files.pythonhosted.org/packages/62/32/b7379534d4fe4f4031162ed3dcd0a1ba5965048b7ff8e0f1ed8e21590324/autosig-0.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2e7a5f1582124e304053955f8ae298be", "sha256": "c4599b3a56e3bf38bd5ab45680951e31e94b62c059dbf7da4a3237ede660d8b7" }, "downloads": -1, "filename": "autosig-0.3.0.tar.gz", "has_sig": false, "md5_digest": "2e7a5f1582124e304053955f8ae298be", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10254, "upload_time": "2018-08-30T20:50:41", "url": "https://files.pythonhosted.org/packages/06/70/9b33437dd2d34b568165065e37241676c7881a3c73ce1f0aa8acc31c8c3e/autosig-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "b96cb32a15ea37c4a0b4498dbeaa80d8", "sha256": "7d72b322092b286d8df180c3b8bf52b720f2d47ee55ccdfdb23537d9cd3dc2bb" }, "downloads": -1, "filename": "autosig-0.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b96cb32a15ea37c4a0b4498dbeaa80d8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 3681, "upload_time": "2018-08-30T20:57:55", "url": "https://files.pythonhosted.org/packages/18/cb/58273424dd23a6cf61bfcf3b7bf2e646a0c99c9e584b8523755185ccba41/autosig-0.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c039ad3bf8af8c229d54be977c88cf23", "sha256": "94f3f798485342eaca54a466524ee4d4d32ad3c67a63095425dac1beacab75eb" }, "downloads": -1, "filename": "autosig-0.3.1.tar.gz", "has_sig": false, "md5_digest": "c039ad3bf8af8c229d54be977c88cf23", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10268, "upload_time": "2018-08-30T20:57:57", "url": "https://files.pythonhosted.org/packages/92/db/fe14a539539f386577ea1c5b54845ab0e3752e671304ef044286eb3a6088/autosig-0.3.1.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "03ce611619ea4e4ca478edc0fb9ed2ca", "sha256": "845a8c6b8682ffde8ff246500a7e27c4c1229227882cb0523ad178957f5fe3cc" }, "downloads": -1, "filename": "autosig-0.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "03ce611619ea4e4ca478edc0fb9ed2ca", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4123, "upload_time": "2018-09-05T22:46:34", "url": "https://files.pythonhosted.org/packages/d2/f9/292120564e534745d89d677189a3632bc374ac6d48275cfad33cc03d92e4/autosig-0.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ee4dcf771796005c63a3e24cd5e28080", "sha256": "c1bbff653c59e9b9f47e91bd2fa38b47dbe0285b46f58a63985b228ec5468a80" }, "downloads": -1, "filename": "autosig-0.4.0.tar.gz", "has_sig": false, "md5_digest": "ee4dcf771796005c63a3e24cd5e28080", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16566, "upload_time": "2018-09-05T22:46:35", "url": "https://files.pythonhosted.org/packages/94/33/8023338ca5da557f3cc922b3a340068c2842b15b086f6dbdeee3f74ddd45/autosig-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "f388a68017e8a8a65f4643256d7f311a", "sha256": "7c61cb611d5e9ca81895da15381b4d843df6a9bf19dda59c0f160ff4952bcb05" }, "downloads": -1, "filename": "autosig-0.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f388a68017e8a8a65f4643256d7f311a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4122, "upload_time": "2018-09-06T00:04:23", "url": "https://files.pythonhosted.org/packages/48/d8/7a7db62091430aef52a3cb52fa597902481895ce7d9e0aa9401c931bf025/autosig-0.4.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5626c74c2e91e63c90798c76a3a4226b", "sha256": "d477711ef0a9838dbb6c5f2f28253d8c7afd2a13c85017393afb95243aa24b9e" }, "downloads": -1, "filename": "autosig-0.4.1.tar.gz", "has_sig": false, "md5_digest": "5626c74c2e91e63c90798c76a3a4226b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16601, "upload_time": "2018-09-06T00:04:24", "url": "https://files.pythonhosted.org/packages/1d/8b/c8077436e2c729cecb24aa07077e69b9eb8c4106bc5eb7c660771df18302/autosig-0.4.1.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "640131ca32a47822dc41d1da47b36305", "sha256": "b476f899ff5f817ec898fdb3ccd817765f1dae3bcd7b98ecfb365c22ab086c31" }, "downloads": -1, "filename": "autosig-0.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "640131ca32a47822dc41d1da47b36305", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 4842, "upload_time": "2018-09-21T20:14:40", "url": "https://files.pythonhosted.org/packages/3c/12/104a3b2ecb3c514b453476e574bdcb73993806cca578e19e49724bb8fada/autosig-0.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9881eebd7f6a82d7b397f23f5089cf4d", "sha256": "0453401b823eb2deb0aff9bd6f8b642c8aad72647142c0576a35053acc1c200d" }, "downloads": -1, "filename": "autosig-0.5.0.tar.gz", "has_sig": false, "md5_digest": "9881eebd7f6a82d7b397f23f5089cf4d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17591, "upload_time": "2018-09-21T20:14:42", "url": "https://files.pythonhosted.org/packages/b5/41/1cabc38ccc7472bb5acb485441494d19f17b927c0476c72d832c32a276de/autosig-0.5.0.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "e451dabc030f08a15771ae09bab13812", "sha256": "bfbc1b2d9dee3c7cb22a6c0c2b6fc11f3338a214a950eea005d48fd5cf5d61ca" }, "downloads": -1, "filename": "autosig-0.6.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e451dabc030f08a15771ae09bab13812", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 6929, "upload_time": "2018-09-24T21:21:26", "url": "https://files.pythonhosted.org/packages/95/6f/2140c6c2501e5a810901c8cc7a60cfee99673f18f03283f7042ceada6629/autosig-0.6.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b24b1ec2bbd2a937a4f5a697f04e413c", "sha256": "8568ce967ce6e225147bbe8fc387fa3d5be4f38323d5b5897ef5cee3203120d8" }, "downloads": -1, "filename": "autosig-0.6.0.tar.gz", "has_sig": false, "md5_digest": "b24b1ec2bbd2a937a4f5a697f04e413c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21145, "upload_time": "2018-09-24T21:21:27", "url": "https://files.pythonhosted.org/packages/ef/eb/2e9e7fca1832e40985389f08a1b26a769a3fe3ead4ada49bc69deda553f0/autosig-0.6.0.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "f90cefd2014fece1cd3ff190cb5e25e5", "sha256": "6642cdfa43a2f6a491a48f3194536e8c5d51fe30d50e9041f463052a5026bb2f" }, "downloads": -1, "filename": "autosig-0.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f90cefd2014fece1cd3ff190cb5e25e5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 7272, "upload_time": "2018-09-26T00:38:03", "url": "https://files.pythonhosted.org/packages/05/4c/38795f02b5d0b566c349b3e14fd7eaa6010c807255a183f3dba95a25a4ba/autosig-0.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8bdd8f520a123b9eb3c845d2eb9bd84f", "sha256": "b9e0540234cebcdda8f55ef9446438024e39448aacdfda354283a6aaebbfe49f" }, "downloads": -1, "filename": "autosig-0.7.0.tar.gz", "has_sig": false, "md5_digest": "8bdd8f520a123b9eb3c845d2eb9bd84f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21591, "upload_time": "2018-09-26T00:38:05", "url": "https://files.pythonhosted.org/packages/8a/bb/5e81bf05fd5ddf9fbc34c0b010d9c4101e7f5c089da91884e3abe1901b0d/autosig-0.7.0.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "863c083744a08fe99502a1ab9fa20399", "sha256": "61c5a16a9f2b43dbb85640c8f7001b7900d11062059b4852ca1212b634a7da2a" }, "downloads": -1, "filename": "autosig-0.8.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "863c083744a08fe99502a1ab9fa20399", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8812, "upload_time": "2019-08-28T05:52:05", "url": "https://files.pythonhosted.org/packages/cc/2d/ef34bca91754ec518ccafaddd62a00e16c45393fba054f79bb9e00f2d28f/autosig-0.8.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "769f831d899f743cbe37595d7ca1a41c", "sha256": "6a32c04ed3bbf9fa2a5f76a443a0f91a7abac1486aa9970ccb0c717b6d2cf15b" }, "downloads": -1, "filename": "autosig-0.8.0.tar.gz", "has_sig": false, "md5_digest": "769f831d899f743cbe37595d7ca1a41c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22485, "upload_time": "2019-08-28T05:52:07", "url": "https://files.pythonhosted.org/packages/8e/94/3035efb452f978f1f13b7602d2b2722958b16aa19db4ee1cc6bd87a76296/autosig-0.8.0.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "e021406e10db7258edf693b4ab50ac2c", "sha256": "c01b19b859b739bc4a8e06cc64d390d622102c698e9b82b97f26e1003d890577" }, "downloads": -1, "filename": "autosig-0.8.1-py3-none-any.whl", "has_sig": false, "md5_digest": "e021406e10db7258edf693b4ab50ac2c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5,<4.0", "size": 7529, "upload_time": "2019-09-18T23:37:25", "url": "https://files.pythonhosted.org/packages/55/73/54e3d9a0da5fe430fcbc8d4d213189e94a1bab39ef3375cf0c8d248f0598/autosig-0.8.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "863dc2f6126830e63e70cf3e9d3c9936", "sha256": "e0892665e4b857df44dc01f271140d13651bc0dae74121501ddc84cb0c1b18cf" }, "downloads": -1, "filename": "autosig-0.8.1.tar.gz", "has_sig": false, "md5_digest": "863dc2f6126830e63e70cf3e9d3c9936", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5,<4.0", "size": 7730, "upload_time": "2019-09-18T23:37:27", "url": "https://files.pythonhosted.org/packages/ec/3d/e994a0d70866ca51158493584e7b5d69d77361ae3deb1983dbd5706904d4/autosig-0.8.1.tar.gz" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "4378038b89ed21de42a440ba5a39287d", "sha256": "ecb2518a2b37707e8e064285a00a944b66116db350095d69c1ddd68d35a20f93" }, "downloads": -1, "filename": "autosig-0.8.2-py3-none-any.whl", "has_sig": false, "md5_digest": "4378038b89ed21de42a440ba5a39287d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5,<4.0", "size": 7523, "upload_time": "2019-09-19T21:22:30", "url": "https://files.pythonhosted.org/packages/20/a8/20d16970b94d1b259eef56f7736e8f40b8cb9bba7bba501bfba794965e70/autosig-0.8.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "20bef2f4ee2d0c44ff1725f391a9684a", "sha256": "31600b4ac9903c4d1658737c69d6fdaddda2b1c75121ef3b4256b9ed9292423f" }, "downloads": -1, "filename": "autosig-0.8.2.tar.gz", "has_sig": false, "md5_digest": "20bef2f4ee2d0c44ff1725f391a9684a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5,<4.0", "size": 7706, "upload_time": "2019-09-19T21:22:31", "url": "https://files.pythonhosted.org/packages/60/6a/7b7bc6ed0077b30750229537cc4068b169376abc8c4f9b03a99e0649add6/autosig-0.8.2.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "8cdfbba71bd7047e94e5e38c21392c50", "sha256": "f0a73c072068fc57e4185ad3b15e2a87b547d53673612463a9e198913fe5d8bf" }, "downloads": -1, "filename": "autosig-0.9.2-py3-none-any.whl", "has_sig": false, "md5_digest": "8cdfbba71bd7047e94e5e38c21392c50", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5,<4.0", "size": 7818, "upload_time": "2019-10-01T16:19:26", "url": "https://files.pythonhosted.org/packages/85/90/82bd0373946894c86946f7327adafe97801b685a2cf7cb049098beb9d7d8/autosig-0.9.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b924364036e05f8324bf6e05e5ff277e", "sha256": "8bd7d734af65de2d88b1c76ea4a24a29a268180d5267df7625604eed8e783484" }, "downloads": -1, "filename": "autosig-0.9.2.tar.gz", "has_sig": false, "md5_digest": "b924364036e05f8324bf6e05e5ff277e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5,<4.0", "size": 7928, "upload_time": "2019-10-01T16:19:27", "url": "https://files.pythonhosted.org/packages/3f/6c/de7f0d1f44e33de6f48e855274ab34bc1fd3889ee7dc32d7cf4f4daa3b97/autosig-0.9.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "8cdfbba71bd7047e94e5e38c21392c50", "sha256": "f0a73c072068fc57e4185ad3b15e2a87b547d53673612463a9e198913fe5d8bf" }, "downloads": -1, "filename": "autosig-0.9.2-py3-none-any.whl", "has_sig": false, "md5_digest": "8cdfbba71bd7047e94e5e38c21392c50", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5,<4.0", "size": 7818, "upload_time": "2019-10-01T16:19:26", "url": "https://files.pythonhosted.org/packages/85/90/82bd0373946894c86946f7327adafe97801b685a2cf7cb049098beb9d7d8/autosig-0.9.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b924364036e05f8324bf6e05e5ff277e", "sha256": "8bd7d734af65de2d88b1c76ea4a24a29a268180d5267df7625604eed8e783484" }, "downloads": -1, "filename": "autosig-0.9.2.tar.gz", "has_sig": false, "md5_digest": "b924364036e05f8324bf6e05e5ff277e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5,<4.0", "size": 7928, "upload_time": "2019-10-01T16:19:27", "url": "https://files.pythonhosted.org/packages/3f/6c/de7f0d1f44e33de6f48e855274ab34bc1fd3889ee7dc32d7cf4f4daa3b97/autosig-0.9.2.tar.gz" } ] }