{ "info": { "author": "John Didion", "author_email": "github@didion.net", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8" ], "description": "# AutoClick\n\nAutoClick creates Click-based CLIs using type annotations.\n\nThe simplest use of AutoClick requires annotating your main method with `@autoclick.command`:\n\n```python\n# test.py\nimport autoclick\n\n@autoclick.command(\"greet\")\ndef main(greeting: str, name: str):\n print(f\"{greeting} {name}\")\n\nif __name__ == \"__main__\":\n main()\n```\n\n```bash\n$ python test.py --help\nUsage: test.py [OPTIONS] [GREETING] [NAME]\n\nOptions:\n --help Show this message and exit.\n```\n\nFor additional customization, keyword arguments can be passed to the command decorator:\n\n```python\nimport autoclick\n\n@autoclick.command(\n short_names={\n \"greeting\": \"G\",\n \"name\": \"n\"\n },\n show_defaults=True\n)\ndef main(greeting: str = \"hello\", name: str = \"human\"):\n print(f\"{greeting} {name}\")\n```\n\n```bash\n$ python test.py --help\nUsage: test.py [OPTIONS]\n\nOptions:\n -G, --greeting TEXT [default: hello]\n -n, --name TEXT [default: human]\n --help Show this message and exit.\n```\n\n## Type conversion\n\nIn Click, type conversion can be done either in a callback or by using a callable type (such as a subclass of ParamType) as the type. In AutoClick, type conversions are performed automatically based on type annotations for callable types. However, for more complex type conversion, there are three additional methods:\n\n1. Automatic conversion functions. A conversion function is decorated by `@conversion`. The conversion decorator by default infers the type being converted to from the return annotation. Otherwise, the destination type can be specified as an argument to the decorator. The decorator registers the function as the converter for the specified type. When that type is encountered as an annotation of a parameter to a command function, the converter function is used to convert the string argument to that type.\n\n```python\nimport autoclick\n\nclass Bork:\n def __init__(self, n: int):\n self.n = n\n\n def __str__(self):\n print(\",\".join([\"bork\"] * self.n))\n\n@autoclick.conversion()\ndef bork(n: int) -> Bork:\n return Bork(n)\n\n@autoclick.command(\"bork\")\ndef main(b: Bork):\n print(b)\n```\n\nIn the case where there needs to be specialized handling of common types, new types can be created using `typing.NewType`:\n\n```python\nimport autoclick\nimport typing\n\nDoubleInt = typing.NewType(\"DoubleInt\", int)\n\n@autoclick.conversion(DoubleInt)\ndef double_int(i: str):\n return int(i) * 2\n\n@autoclick.command(\"double\")\ndef main(i1: int, i2: DoubleInt):\n print(i1, i2)\n```\n\n2. Conversion functions can also be specified explicitly in the command decorator:\n\n```python\nimport autoclick\n\n@autoclick.command(\n types={\n \"a\": double_int\n }\n)\ndef main(a: int):\n print(a)\n```\n\nNote that any of the types in the `click.Types` package can also be used in this way.\n\n3. For composite types, the `autoclick.composite_type` and `autoclick.composite_factory` functions can be used. An example of a composite type is a class that requires more than one parameter to its constructor. For composite types, the same annotation-based CLI creation is performed, and the parameters are injected into the CLI in place of the composite parameter.\n\n```python\nimport autoclick\n@autoclick.composite_type()\nclass Foo:\n def __init__(self, bar: str, baz: int):\n self.bar = bar\n self.baz = baz\n\n@autoclick.command()\ndef main(foo: Foo):\n print(foo.bar, foo.baz)\n```\n\nIn this case, the options to main would be `--foo-bar` and `--foo-baz`. Once the CLI is processed, the values of these options are used to construct the `Foo` instance, which is then passed to the call to `main`. The parameter name in the command function is prepended to the parameter names of the composite type, so that a composite type can be used multiple types in a command function signature.\n\nA `autoclick.composite_factory` function returns a complex type. For example, the code below is equivalent to the code above:\n\n```python\nimport autoclick\n\nclass Foo:\n def __init__(self, bar: str, baz: int):\n ...\n\n@autoclick.composite_factory(Foo)\ndef foo_factory(bar: str, baz: int):\n return Foo(bar, baz)\n```\n\n## Conditionals and Validations\n\nConditionals and Validations are similar - they are both decorators that take `**kwargs` parameter. The keywords are parameter names and values are parameter values. When the function takes multiple parameters, they should specify the order; ordering depends on python 3.5+ behavior that dictionaries are ordered implicitly.\n\nA conditional function is used to modify the values of one or more parameters conditional on the value(s) of other parameters. A conditional function may return a dict with keys being parameter names that should be updated, and values being the new parameter values.\n\nA validation function is intended to check that one or more parameter values conform to certain restrictions. The return value of a validation function is ignored.\n\nBoth conditional and validation functions can throw ValidationError.\n\nThese functions can be associated with parameters in two ways. First, using the `conditionals` and `validations` arguments of the command decorator. These are dicts with a parameter name or tuple of parameter names being the key and the function being the value. Second, validation functions can be associated with parameters when they are decorated with `@autoclick.validation` and the parameter type matches the type argument of the validation decorator. Multi-parameter validations can only be associated via the first method. Since conditionals are expected to be multi-valued, there is no `@autoclick.conditional` annotation, i.e. they must always be explicitly specified.\n\n### Type matching\n\nYou can also use distinct types created by the `typing.NewType` function for type matching validations. For example, if you want to define a parameter that must be positive and even:\n\n```python\nimport autoclick\nfrom typing import NewType\n\nPositiveEven = NewType('PositiveEven', int)\n\n@autoclick.validation(PositiveEven)\ndef validate_positive_even(arg: int):\n if arg < 0:\n raise autoclick.ValidationError()\n if arg % 2 != 0:\n raise autoclick.ValidationError()\n```\n\nNote that the typing library does not currently provide an intersection type. Thus, Positive, Even, and PositiveEven must all be distinct validations. There are two ways to simplify:\n\n1. Add the parameter to the validation dict of the command decorator with a tuple of mutliple functions as the value:\n\n```python\nimport autoclick\n\n@autoclick.command(\n validations={\n \"a\": positive, even\n }\n)\n```\n\n2. Create a composite validation:\n\n```python\nimport autoclick\n\n@autoclick.validation(PositiveEven, (positive, even))\ndef validate_positive_even(arg: int):\n pass\n```\n\nor even\n\n```python\nimport autoclick\nautoclick.validation(PositiveEven, (positive, even))\n```\n\n### Docstring utilization\n\nAutoClick uses the [docparse](https://github.com/jdidion/docparse) library to parse the docstrings of command functions and composites to extract help text. Note that currently docparse only supports Google-style docstrings.\n\n```python\n# test.py\nimport autoclick\n\n@autoclick.command(show_defaults=True)\ndef main(x: str = \"hello\"):\n \"\"\"Print a string\n\n Args:\n x: The string to print.\n \"\"\"\n print(x)\n\nif __name__ == \"__main__\":\n main()\n```\n\n```bash\n$ python test.py --help\nUsage: test.py [OPTIONS] [X]\n\n Print a string\n\nOptions:\n -x, --x TEXT The string to print. [default: hello]\n --help Show this message and exit.\n```\n\n## Groups\n\nAutoClick CLIs can have multiple subcommands, by creating command groups:\n\n```python\nfrom autoclick import group\n\n@group(\"myprog\")\ndef myprog():\n pass\n\n@myprog.command(\"hi\")\ndef say_hi(name: str):\n print(f\"hello {name}\")\n \n@myprog.command(\"bye\")\ndef say_bye(name: str):\n print(f\"byebye {name}\")\n```\n\nAutoClick provides alternative group types. For example, `DefaultAutoClickGroup` can take a default command name to run when a command is not specified:\n\n```python\nfrom autoclick import group\nfrom autoclick.commands import DefaultAutoClickGroup\n\n@group(\n \"myprog\",\n group_class=DefaultAutoClickGroup,\n default=\"hello\"\n)\ndef myprog():\n pass\n\n# This command is run by default if the command name is not specified\ndef hello(name: str):\n print(f\"hi {name}\")\n```\n\n## Installation\n\n```bash\n$ pip intall autoclick\n```\n\n## Runtime Dependencies\n\n* Python 3.6+\n* docparse\n\n## Build dependencies\n\n* poetry 0.12+\n* pytest (with pytest-cov plugin)\n\n## Details\n\n### Option attribute inference\n\nThe following sections describe details of how the arguments to click classes/functions are inferred from the type and docstring information:\n\n#### All Parameters\n\n* name (long): parameter name; underscores converted to dashes unless keep_underscores=True in the command decorator.\n* name (short): starting from the left-most character of the parameter name, the first character that is not used by another parameter or by any built-in; can be overridden by specifying the 'parameter_names' dictionary in the command decorator.\n* type: inferred from the type hint; if type hint is missing, inferred from the default value; if default value is missing, str.\n* required: by default, true for positional arguments (Arguments) and false for keyword arguments (Options); if positionals_as_options=True in the command decorator, positional arguments are instead required Options. Required keyword arguments can be specified in the 'required' list in the command decorator.\n* default: unset for positional arguments, keyword value for keyword arguments.\n* nargs: 1 unless type is Tuple (in which case nargs is the number of arguments to the Tuple).\n\n#### Option-only\n\n* hide_input: False unless the command 'hidden' parameter is specified and includes the parameter name.\n* is_flag: True for keyword arguments of type boolean; assumed to be the True option unless the name starts with 'no'; the other option will always be inferred by adding/removing 'no-'\n* multiple: True for sequence types\n* help: Parsed from docstring.\n\n## Todo\n\n* Documentation for positional arguments (see [](https://github.com/pallets/click/issues/587))\n* Handle return values (e.g. if a int, treat as a return code; if a dict, convert to JSON and write to stdout, etc)\n* Look at incorporating features from contributed packages: [](https://github.com/click-contrib)", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/jdidion/autoclick", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "autoclick", "package_url": "https://pypi.org/project/autoclick/", "platform": "", "project_url": "https://pypi.org/project/autoclick/", "project_urls": { "Homepage": "https://github.com/jdidion/autoclick", "Repository": "https://github.com/jdidion/autoclick.git" }, "release_url": "https://pypi.org/project/autoclick/0.8.1/", "requires_dist": [ "click (==7.0)", "docparse" ], "requires_python": ">=3.6,<4.0", "summary": "Auto-generate Click-based CLIs from python3 type annotations.", "version": "0.8.1", "yanked": false, "yanked_reason": null }, "last_serial": 6800670, "releases": { "0.2.0": [ { "comment_text": "", "digests": { "md5": "7f2dbc295bd213839dce6e0c8ac37902", "sha256": "65a6f85101b2756403640adb423bf58d477f8cfe114fdb6def5edf8d84ef4f64" }, "downloads": -1, "filename": "autoclick-0.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "7f2dbc295bd213839dce6e0c8ac37902", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 42460, "upload_time": "2018-12-18T20:19:58", "upload_time_iso_8601": "2018-12-18T20:19:58.742603Z", "url": "https://files.pythonhosted.org/packages/1b/52/43dd90b76565556057c45b1c8b5d8b20a48df73b262af3b580df7dfedde1/autoclick-0.2.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "90beb6a95a7c4dbe144f738bd68d2cea", "sha256": "234e6dae9e1d79feb9f96838c95158fcbf62882dab08d500ececffa8a2acd580" }, "downloads": -1, "filename": "autoclick-0.2.0.tar.gz", "has_sig": false, "md5_digest": "90beb6a95a7c4dbe144f738bd68d2cea", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 16065, "upload_time": "2018-12-18T20:20:00", "upload_time_iso_8601": "2018-12-18T20:20:00.836554Z", "url": "https://files.pythonhosted.org/packages/56/cc/8cc4858ea0c93da24d01000d6e2906f547e31566451356d95e392cdcb9c7/autoclick-0.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "f90259b632bf6c3798b6c2aae7740155", "sha256": "ef4be1ef94bc5123b97ef774c7a825f9de64c167253397a16f14fd7e0f2e1fbe" }, "downloads": -1, "filename": "autoclick-0.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "f90259b632bf6c3798b6c2aae7740155", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 42511, "upload_time": "2018-12-18T20:23:45", "upload_time_iso_8601": "2018-12-18T20:23:45.428785Z", "url": "https://files.pythonhosted.org/packages/a4/5b/b7b0ecac7c9acf1a79b5a8cde273954d4d3b2cf101ec36d69fda90308cbf/autoclick-0.2.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d170b99a8ba1f33d7f9b47d5c9b7d0f5", "sha256": "cd731f600d70c2709277dcd9dc16d3007e0454933336b6722e69955b628e9f9d" }, "downloads": -1, "filename": "autoclick-0.2.1.tar.gz", "has_sig": false, "md5_digest": "d170b99a8ba1f33d7f9b47d5c9b7d0f5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 16183, "upload_time": "2018-12-18T20:23:47", "upload_time_iso_8601": "2018-12-18T20:23:47.115228Z", "url": "https://files.pythonhosted.org/packages/43/86/990aed1f4ab0c389cc642d97da86f66df39fcb3272766f07704488d64186/autoclick-0.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "c15ce4921d93dec76449bc3731917792", "sha256": "07767bdeae5d7c50f60c365cb6ff7af517123aef02170201a6ba389d75b1074a" }, "downloads": -1, "filename": "autoclick-0.2.2-py3-none-any.whl", "has_sig": false, "md5_digest": "c15ce4921d93dec76449bc3731917792", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 45674, "upload_time": "2018-12-30T17:55:49", "upload_time_iso_8601": "2018-12-30T17:55:49.331997Z", "url": "https://files.pythonhosted.org/packages/31/a2/7849bada5f062c818fd9d58aea7e13f38a8fe194d41e3f77242fc2ded43b/autoclick-0.2.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6deb830ce843d86b0c31ac10c525da8a", "sha256": "c01ee566a706889af31fc6a8910b85353045006ce15759038052a717c072cbb6" }, "downloads": -1, "filename": "autoclick-0.2.2.tar.gz", "has_sig": false, "md5_digest": "6deb830ce843d86b0c31ac10c525da8a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 16936, "upload_time": "2018-12-30T17:55:50", "upload_time_iso_8601": "2018-12-30T17:55:50.709952Z", "url": "https://files.pythonhosted.org/packages/d1/18/77e67586e4cec7a01fa2bd008adbf111199a06da5ab111c8d8f1cc745dff/autoclick-0.2.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "6ab31911e65fb8e49171935e448ed8f9", "sha256": "b1ec16b2b61622dadf82f5bdb8495120223c518964a5435188b02a41b9db4df7" }, "downloads": -1, "filename": "autoclick-0.2.3-py3-none-any.whl", "has_sig": false, "md5_digest": "6ab31911e65fb8e49171935e448ed8f9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 48820, "upload_time": "2019-01-15T15:17:39", "upload_time_iso_8601": "2019-01-15T15:17:39.998134Z", "url": "https://files.pythonhosted.org/packages/8b/09/90fc9ef8579e6778aaa9299015d8f4c2dcbc3e4acd92652b28cf091af485/autoclick-0.2.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e3fad5f9594f762a9f0bb1c97d375dcd", "sha256": "655b1d44d2453272ab8dd26852a105310b1655bc8926bd134ae8a76edf9d6316" }, "downloads": -1, "filename": "autoclick-0.2.3.tar.gz", "has_sig": false, "md5_digest": "e3fad5f9594f762a9f0bb1c97d375dcd", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 17592, "upload_time": "2019-01-15T15:17:42", "upload_time_iso_8601": "2019-01-15T15:17:42.335702Z", "url": "https://files.pythonhosted.org/packages/99/fc/c98bd4e70383be96fe30d47a77c08b246975e3402ece009a1924d1ebfeb0/autoclick-0.2.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "cf83f1a5548f3d448d98961f73fe41d9", "sha256": "0e577dd11914e6b78189034c1d61dd628743159c51a02774dfa1d2114a900d8e" }, "downloads": -1, "filename": "autoclick-0.2.4-py3-none-any.whl", "has_sig": false, "md5_digest": "cf83f1a5548f3d448d98961f73fe41d9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 58074, "upload_time": "2019-03-29T16:53:53", "upload_time_iso_8601": "2019-03-29T16:53:53.079917Z", "url": "https://files.pythonhosted.org/packages/16/26/657c3786f38427fe5f81d6cb2760fe399021985671d576f4e067760baa78/autoclick-0.2.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a73b7090bfeb4e10a3870c5e1b1276fd", "sha256": "ffd55520fbdc6919192f54fe9b8d2b39a3104158fda769288721d0ed66d85f32" }, "downloads": -1, "filename": "autoclick-0.2.4.tar.gz", "has_sig": false, "md5_digest": "a73b7090bfeb4e10a3870c5e1b1276fd", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 19938, "upload_time": "2019-03-29T16:53:54", "upload_time_iso_8601": "2019-03-29T16:53:54.749588Z", "url": "https://files.pythonhosted.org/packages/07/e4/3f48df2d6db3767361834ae3f4c075eec86e770be6c178ac2ff336a80c5d/autoclick-0.2.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "24581c26f48a5acf10003f96bd95751c", "sha256": "98ba87533de32323476bc0cc686bef3dc7ad558c0d13c08ea1716d799b8da35c" }, "downloads": -1, "filename": "autoclick-0.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "24581c26f48a5acf10003f96bd95751c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 62720, "upload_time": "2019-04-09T19:51:51", "upload_time_iso_8601": "2019-04-09T19:51:51.573841Z", "url": "https://files.pythonhosted.org/packages/6e/e0/2a015ebd6fa2c8d4a0c25fba88469a377d94fac2c5b31cef7257d6f820d9/autoclick-0.4.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f93f9d06fc52240af6bc507ee23987fd", "sha256": "695cb6e8010c0a4a35efee288188e6d6e59470f5068e86676ac3bcd03c10ac1e" }, "downloads": -1, "filename": "autoclick-0.4.0.tar.gz", "has_sig": false, "md5_digest": "f93f9d06fc52240af6bc507ee23987fd", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 21207, "upload_time": "2019-04-09T19:51:52", "upload_time_iso_8601": "2019-04-09T19:51:52.945462Z", "url": "https://files.pythonhosted.org/packages/96/de/b2fc0ffd6f57e19231f7563cbd10ffd911a7d73bbd937b5ba1d7b23f145a/autoclick-0.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "9a93bacdc7d932bbf0d45bb1fc71ecf3", "sha256": "1468986a25a275f1cf046487015910297d78ae11e683de7cff50ba287d22c7f6" }, "downloads": -1, "filename": "autoclick-0.5.0-py3-none-any.whl", "has_sig": false, "md5_digest": "9a93bacdc7d932bbf0d45bb1fc71ecf3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 77871, "upload_time": "2019-04-11T13:53:49", "upload_time_iso_8601": "2019-04-11T13:53:49.689953Z", "url": "https://files.pythonhosted.org/packages/b7/bb/06876500d83048dba4245831e1ddac9d133909040b629493227bad98303a/autoclick-0.5.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b34afa5fc1691d856b0a56b8349ebc1f", "sha256": "32f1bff9657106bf9555e19c16b08534c8747563d1689166267bc13f3f2d6da6" }, "downloads": -1, "filename": "autoclick-0.5.0.tar.gz", "has_sig": false, "md5_digest": "b34afa5fc1691d856b0a56b8349ebc1f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 22972, "upload_time": "2019-04-11T13:53:51", "upload_time_iso_8601": "2019-04-11T13:53:51.000744Z", "url": "https://files.pythonhosted.org/packages/cc/7c/e99f4d5103093390ae7510ead465b84e5a60480d8cf88823f5d76a7e3d66/autoclick-0.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "7d83f2f25efced6d3d9dd1b7146e0143", "sha256": "f8ac5232257cb9c0d7e00414bff923bafc349f9d8426eb1803c8b5b50f1618e0" }, "downloads": -1, "filename": "autoclick-0.5.1-py3-none-any.whl", "has_sig": false, "md5_digest": "7d83f2f25efced6d3d9dd1b7146e0143", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 78286, "upload_time": "2019-04-11T16:03:33", "upload_time_iso_8601": "2019-04-11T16:03:33.377597Z", "url": "https://files.pythonhosted.org/packages/53/0f/5b1c90b6fac9cff9ec7cf1c8c5888579bf79ea7527284a327638453ac9a5/autoclick-0.5.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2f588d3adf56a0c75f7da81b5392242f", "sha256": "e7686ce4337abce18c06fe6987e946db3edae5cb60beccc3125377f6755b478f" }, "downloads": -1, "filename": "autoclick-0.5.1.tar.gz", "has_sig": false, "md5_digest": "2f588d3adf56a0c75f7da81b5392242f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 23107, "upload_time": "2019-04-11T16:03:34", "upload_time_iso_8601": "2019-04-11T16:03:34.574885Z", "url": "https://files.pythonhosted.org/packages/00/66/5a09b771cb7ff43e1ce98e7e52ed2be749d0d07ab5b3c6838890f12cf8eb/autoclick-0.5.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "28f36ac734d730a7d843ff3302bcaeff", "sha256": "01c1ab5e00b36c04d77239a89fed5c3614bdf31b33c982d4a9196566bf5bdb5c" }, "downloads": -1, "filename": "autoclick-0.6.0-py3-none-any.whl", "has_sig": false, "md5_digest": "28f36ac734d730a7d843ff3302bcaeff", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 84753, "upload_time": "2019-06-07T21:05:21", "upload_time_iso_8601": "2019-06-07T21:05:21.925733Z", "url": "https://files.pythonhosted.org/packages/51/1f/ce73b05d3d10e26da7cfb310435cd7b7d03f85ef51ef6f1b4945cf0aa27a/autoclick-0.6.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4f59f6d5bccaf8106587301f16220663", "sha256": "a440a415b8b82022e1e8f3fa0c6ed7a2efcaa31c9207099d9e3b8594425c2b1e" }, "downloads": -1, "filename": "autoclick-0.6.0.tar.gz", "has_sig": false, "md5_digest": "4f59f6d5bccaf8106587301f16220663", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 25298, "upload_time": "2019-06-07T21:05:23", "upload_time_iso_8601": "2019-06-07T21:05:23.540755Z", "url": "https://files.pythonhosted.org/packages/2a/85/9094c34737a1429acb971c338bc302093a66353f9fc42c5416f899525861/autoclick-0.6.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "819a3523d0757296be6cefd9979f5072", "sha256": "53d482a469f15dcab3163791a77ea5ac6299eef87db66889ff1676a8a72106df" }, "downloads": -1, "filename": "autoclick-0.6.1-py3-none-any.whl", "has_sig": false, "md5_digest": "819a3523d0757296be6cefd9979f5072", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 27882, "upload_time": "2019-09-28T20:50:44", "upload_time_iso_8601": "2019-09-28T20:50:44.550776Z", "url": "https://files.pythonhosted.org/packages/49/90/cb38d3cd03617b0e8a56b70ca0ff645f32e67abcdaa201f4b4df6805c66b/autoclick-0.6.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b9984b12876d6558db616c7377eee1c4", "sha256": "2d72ab7c97f69fc81015ad1909c7acedec3baaf184fc2fb7a87d9fbb437a53f0" }, "downloads": -1, "filename": "autoclick-0.6.1.tar.gz", "has_sig": false, "md5_digest": "b9984b12876d6558db616c7377eee1c4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 26291, "upload_time": "2019-09-28T20:50:47", "upload_time_iso_8601": "2019-09-28T20:50:47.317766Z", "url": "https://files.pythonhosted.org/packages/1e/e6/e206210d5d4241615a120d3fd6c8acacc10d74b0da41c1a901cdd0652857/autoclick-0.6.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "e0e9abb8786078fbb406846f63484625", "sha256": "ad79237a195990fb2a37292726dcaef5798a1ac16e4b179f1bb052bfba31e281" }, "downloads": -1, "filename": "autoclick-0.7.0-py3-none-any.whl", "has_sig": false, "md5_digest": "e0e9abb8786078fbb406846f63484625", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 28794, "upload_time": "2019-10-25T21:03:56", "upload_time_iso_8601": "2019-10-25T21:03:56.346260Z", "url": "https://files.pythonhosted.org/packages/37/88/d4e68891278a0a5c0f1ed5dd3240305049098f535f473e0b8c4e0c4ac364/autoclick-0.7.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4d721b69e4f7b6790e6504800960411a", "sha256": "078929a9a8bf58aa39bc9267132b8b50042959f7683d38f1d37b996dc3dd2eac" }, "downloads": -1, "filename": "autoclick-0.7.0.tar.gz", "has_sig": false, "md5_digest": "4d721b69e4f7b6790e6504800960411a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 27130, "upload_time": "2019-10-25T21:03:58", "upload_time_iso_8601": "2019-10-25T21:03:58.176171Z", "url": "https://files.pythonhosted.org/packages/55/c9/dd13a50a0cac83e0315642c7ea3c8e001ba501f5e8dc9928e1a6ce952503/autoclick-0.7.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "9089f4dc2a4c198a0c1f471084df0793", "sha256": "ae65dd817d3380fd98e24925d1cade272d322602c80f9b4a69784a088be61980" }, "downloads": -1, "filename": "autoclick-0.8.0-py3-none-any.whl", "has_sig": false, "md5_digest": "9089f4dc2a4c198a0c1f471084df0793", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 29108, "upload_time": "2019-11-19T18:30:35", "upload_time_iso_8601": "2019-11-19T18:30:35.922384Z", "url": "https://files.pythonhosted.org/packages/f8/d9/6612bacde7dcfceab1b0177e664fbcfa24ff809cae049ed70c150df12fc3/autoclick-0.8.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ffe3483c1f3f9bd95840882d9c7c2718", "sha256": "99c0c7ae13b18acd8cc1d63d416fabcea7d2bd00c5b1a4c33367214b4f8dabad" }, "downloads": -1, "filename": "autoclick-0.8.0.tar.gz", "has_sig": false, "md5_digest": "ffe3483c1f3f9bd95840882d9c7c2718", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 27358, "upload_time": "2019-11-19T18:30:37", "upload_time_iso_8601": "2019-11-19T18:30:37.599977Z", "url": "https://files.pythonhosted.org/packages/76/03/e5452b371df3f7c2097501d678ad2a163116d8f231c2dabb732b743cf65c/autoclick-0.8.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "48ada170f0d42117b9d96f95a21c6637", "sha256": "b777c13a65b69e4da82b7de74abe1ea03ab3f8f3137e3a826616d68b5c48cf3f" }, "downloads": -1, "filename": "autoclick-0.8.1-py3-none-any.whl", "has_sig": false, "md5_digest": "48ada170f0d42117b9d96f95a21c6637", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 29404, "upload_time": "2020-03-12T17:24:22", "upload_time_iso_8601": "2020-03-12T17:24:22.910800Z", "url": "https://files.pythonhosted.org/packages/91/91/a6493d6e51dd47b69d1b3394393e0e398065dce7426764a96dd21f7a82ce/autoclick-0.8.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7ab75f189bbe54324c2881fb386bb618", "sha256": "583b1c7e57eedd4a9a61b35ff5fbf491d3eb1fedda5895ffaffad7baaf6786d8" }, "downloads": -1, "filename": "autoclick-0.8.1.tar.gz", "has_sig": false, "md5_digest": "7ab75f189bbe54324c2881fb386bb618", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 27660, "upload_time": "2020-03-12T17:24:24", "upload_time_iso_8601": "2020-03-12T17:24:24.150692Z", "url": "https://files.pythonhosted.org/packages/8d/a0/54a14c5f1a8befb5499485ce597595a30b96de457a7012e10a1fc401f650/autoclick-0.8.1.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "48ada170f0d42117b9d96f95a21c6637", "sha256": "b777c13a65b69e4da82b7de74abe1ea03ab3f8f3137e3a826616d68b5c48cf3f" }, "downloads": -1, "filename": "autoclick-0.8.1-py3-none-any.whl", "has_sig": false, "md5_digest": "48ada170f0d42117b9d96f95a21c6637", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6,<4.0", "size": 29404, "upload_time": "2020-03-12T17:24:22", "upload_time_iso_8601": "2020-03-12T17:24:22.910800Z", "url": "https://files.pythonhosted.org/packages/91/91/a6493d6e51dd47b69d1b3394393e0e398065dce7426764a96dd21f7a82ce/autoclick-0.8.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7ab75f189bbe54324c2881fb386bb618", "sha256": "583b1c7e57eedd4a9a61b35ff5fbf491d3eb1fedda5895ffaffad7baaf6786d8" }, "downloads": -1, "filename": "autoclick-0.8.1.tar.gz", "has_sig": false, "md5_digest": "7ab75f189bbe54324c2881fb386bb618", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6,<4.0", "size": 27660, "upload_time": "2020-03-12T17:24:24", "upload_time_iso_8601": "2020-03-12T17:24:24.150692Z", "url": "https://files.pythonhosted.org/packages/8d/a0/54a14c5f1a8befb5499485ce597595a30b96de457a7012e10a1fc401f650/autoclick-0.8.1.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }