{ "info": { "author": "Shezad Khan", "author_email": "shezadkhan137@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: Implementation :: CPython", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "# required: Easy multi-field validation\n\n[![PyPI](https://img.shields.io/pypi/v/required.svg)]()\n[![Build Status](https://travis-ci.org/shezadkhan137/required.svg?branch=master)](https://travis-ci.org/shezadkhan137/required)\n[![Coverage Status](https://coveralls.io/repos/github/shezadkhan137/required/badge.svg?branch=master)](https://coveralls.io/github/shezadkhan137/required?branch=master)\n\nRequired is a simple library which allows you to validate dependencies\nacross multiple fields. The goal is to make writing things like forms, seralizers and functions much easier by providing a declarative way to encode validation logic. It aims to:\n\n- Have a declarative way to encode validation logic\n- Allow you to maintain validation logic easily\n- Allow you to reuse your validation logic easily\n- Be flexible with what you want to validate\n\nIf this all sounds good. Read On!\n\n## Installation \n\nInstall using `pip`\n\n```\npip install required\n```\n\n## Quickstart\n\nYou can use required in a number of ways. The easiest way is to use the `validate` decorator to validate inputs to function calls. \n\n```python\nfrom required import validate\n\n@validate\ndef calculate_sum(positive_number, negative_number):\n \"\"\"\n positive_number -> positive_number > 0\n negative_number -> negative_number < 0\n \"\"\"\n return positive_number + negative_number\n\n# the following will raise a validation exception\ncalculate_sum(1, 1)\n\n# this will pass validation\ncalculate_sum(1, -1) # 0\n```\n\nIf you want to have other information in the docstring, the validation rules can be wrapped inside of `Requires { }` as shown below:\n\n```python\n\n@validate\ndef calculate_sum(positive_number, negative_number):\n \"\"\"\n Other documentation relating to calculate_sum\n\n Requires {\n positive_number -> positive_number > 0\n negative_number -> negative_number < 0\n }\n\n You can also put information after the requires rules\n \"\"\"\n return positive_number + negative_number\n```\n\nValidation rules are written in the doc string of the function. They look like: \n\n`[param] -> [expression_1] [comparator] [expression_2]`\n\nWhen `param` is present, it requires `expression_1 [comparator] expression_2` to evaluate to true. \n\nThe most simple expressions are just variables passed into the function to validate, however they can be more complex. See cookbook for more examples.\n\nThe comparator can be one of the standard python comparator operations; `==`, `!=`, `in`, `>=` `<=`, `>`, `<`.\n\n\n\n## Cookbook\n\nThe following shows some examples for writing validation rules\n\n```\n\n# Arithmetic on the objects follow normal maths rules.\n# you need to put brackets to define expressions\nx -> (x + 1) < 1\nx -> (x - y) == 1\n\n# A value `x` needs to be in an array\nx -> x in arr\n\n# The length of x must be 10\n# see section on registering functions\nx -> len(x) == 10\n\n# The length of x and y must be the same\nx -> len(x) == len(y)\n\n# when x is present y must not be present\n# TODO: not implemented in DSL yet\nx -> x == \n\n# x must be equal to the return value of a function\nx -> x == func(x)\n\n# Partial dependencies can be also specified\n\n# when x == 1 then y must be 2\nx == 1 -> y == 2\n\n# when x == 1 then y must be set\nx == 1 -> y\n```\n\n## Registering callables\n\nYou can register callables into the validation scope. This is useful when you want to call normal python builtins or custom callables. \n\n```python\nfrom required import validate\n\nscoped_validate = validate.register_callables({\n \"len\": len,\n \"abs\": abs\n})\n\n@scoped_validate\ndef return_first_element(arr):\n \"\"\"\n arr -> len(arr) >= 1\n \"\"\"\n return arr[0]\n\n\n# validation scoped callables can also be nested\n# len, abs and my_func are available in the second_scoped_validate decorator\n\nsecond_scoped_validate = scoped_validate.register_callables({\n \"my_func\": my_func\n})\n\n# or inserted at function level\n@validate(callable_dict={\"new_func\": new_func})\ndef other_function(var):\n \"\"\"\n var -> new_func(var) >= 1\n \"\"\"\n return var\n```\n\n\n## Contributing \n\nIf you want to contribute you are most welcome! This project is distributed under the [MIT](https://choosealicense.com/licenses/mit/) licence. It is tested using [tox](https://pypi.python.org/pypi/tox) against Python 2.7 and 3.4+\n\n\n", "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/shezadkhan137/required", "keywords": "dependency,validator", "license": "MIT", "maintainer": "Shezad Khan", "maintainer_email": "shezadkhan137@gmail.com", "name": "required", "package_url": "https://pypi.org/project/required/", "platform": "", "project_url": "https://pypi.org/project/required/", "project_urls": { "Homepage": "https://github.com/shezadkhan137/required" }, "release_url": "https://pypi.org/project/required/0.4.0/", "requires_dist": [ "six", "lark-parser" ], "requires_python": "", "summary": "A easy dependency validator", "version": "0.4.0" }, "last_serial": 4591829, "releases": { "0.1.1": [ { "comment_text": "", "digests": { "md5": "d671c79f3b50b12b267c0f1144cf2428", "sha256": "a6cd28c409b1c7c162535b39fc0d971d9d850930b2da263e813131893ad3b018" }, "downloads": -1, "filename": "required-0.1.1.tar.gz", "has_sig": false, "md5_digest": "d671c79f3b50b12b267c0f1144cf2428", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5820, "upload_time": "2017-02-17T17:38:10", "url": "https://files.pythonhosted.org/packages/2f/c3/c8fb8b3bf7b320e45e28499404926ca340486c36735e90a0f5154d14b7f9/required-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "299a1754e7e9bbd6fd00dad71177ef15", "sha256": "f67cebe7f8b09549b4d927829d8ad6229a985db762d9d2e9d62005bb7c2ba665" }, "downloads": -1, "filename": "required-0.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "299a1754e7e9bbd6fd00dad71177ef15", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8600, "upload_time": "2017-03-03T00:07:25", "url": "https://files.pythonhosted.org/packages/d2/50/9dbaf5452ae2079fa2e0f7729591b9b7bdc9c0d41f2281e79ce55a6b4173/required-0.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b6c97d830c3d73fbbbc5e0fd35d44e96", "sha256": "fb2cc3adfac944e742142c85c60791e2fcc3435aaec4a17063edd8f462abccbb" }, "downloads": -1, "filename": "required-0.1.2.tar.gz", "has_sig": false, "md5_digest": "b6c97d830c3d73fbbbc5e0fd35d44e96", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7348, "upload_time": "2017-03-03T00:07:27", "url": "https://files.pythonhosted.org/packages/69/9f/66730a1ce1dbc990afb32fa32d074e195912056a8ded44da1f3d2e96697d/required-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "749ff01f324757bce2a25e394f6c9956", "sha256": "9e5a9567a4b0c22f0bbfdf56cf59908988327b6b4a676892ab249f34867b3c23" }, "downloads": -1, "filename": "required-0.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "749ff01f324757bce2a25e394f6c9956", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8637, "upload_time": "2017-03-03T16:19:57", "url": "https://files.pythonhosted.org/packages/ff/eb/4d99c65f77ed5559e55f5077dc76d88b1d4793dfb17ab7993af06c56eab3/required-0.1.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "723e49bf1ac3604538e442a844619ac0", "sha256": "82d31343ac849ebdb99774b5f5805561780755645821b7c90543f46d7c177045" }, "downloads": -1, "filename": "required-0.1.3.tar.gz", "has_sig": false, "md5_digest": "723e49bf1ac3604538e442a844619ac0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7490, "upload_time": "2017-03-03T16:19:59", "url": "https://files.pythonhosted.org/packages/57/f9/d9fbaaf5ac2aeeb73fb3fd1d039bb75af0264013505df9e7fb58ae10a53a/required-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "b3dd245b903fe58c7858a4b3a82a501b", "sha256": "1fd6033246c755bff4b5e60e87cdf4675fce5a18e906e334dbcc846aeddea3b3" }, "downloads": -1, "filename": "required-0.1.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b3dd245b903fe58c7858a4b3a82a501b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8665, "upload_time": "2017-03-06T00:22:11", "url": "https://files.pythonhosted.org/packages/85/97/2fa8555e4c03860a07768a9f72498d36351fc2184bd6db515f1e1779aecf/required-0.1.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "421a7f69043dc41e983159f1cc690b5b", "sha256": "e9e266f3105df12a3b495f65a905d7946ea355c0d3b8aaf6b9536ae92c1dbd74" }, "downloads": -1, "filename": "required-0.1.4.tar.gz", "has_sig": false, "md5_digest": "421a7f69043dc41e983159f1cc690b5b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7537, "upload_time": "2017-03-06T00:22:13", "url": "https://files.pythonhosted.org/packages/67/57/71173196cecfa9d7481eeecc949cece92a4a8b45dddf9f32bc6a5ceae473/required-0.1.4.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "67a8cb71d392cc51f1b0d4be383d7214", "sha256": "fa6814b71d9666338c3dc93021bff4ebf62aa454c6a29740e7db45a79ab0552a" }, "downloads": -1, "filename": "required-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "67a8cb71d392cc51f1b0d4be383d7214", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8627, "upload_time": "2017-03-17T12:20:15", "url": "https://files.pythonhosted.org/packages/4d/29/bdfe1ab4335f328e8c451ed79cf8039bba66b0b134a09a0c90f5ffc74100/required-0.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "06564dbbfdbe26b5a0129daaa83d95c5", "sha256": "d58e5738a4bf1c71f9382e1c36575d591580b284433006a8ff1db639dff5217d" }, "downloads": -1, "filename": "required-0.2.0.tar.gz", "has_sig": false, "md5_digest": "06564dbbfdbe26b5a0129daaa83d95c5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7532, "upload_time": "2017-03-17T12:20:17", "url": "https://files.pythonhosted.org/packages/bd/f0/5f5f9b805620936f733eb0007b64306586f45874ca5cfaf4b8e3a96e7d77/required-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "507bf8bb4d6570d0bc06e7645ed07ec3", "sha256": "ba34ace24ad9227a985b88a698e247ab75a3e81fd1215ade2ef2d0d2253398ac" }, "downloads": -1, "filename": "required-0.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "507bf8bb4d6570d0bc06e7645ed07ec3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8631, "upload_time": "2017-03-17T12:28:05", "url": "https://files.pythonhosted.org/packages/3f/2b/061fbd73eaefed2e474b8e9a95af3e0d2e486ea2a466d49065aac002fd32/required-0.2.1-py2.py3-none-any.whl" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "f93bf4c2f090fe2d700b9455c05280bc", "sha256": "bc77409a54e74831ed1c4a4fc2c3757e1aad265390bcf76db77da62f7ac48e79" }, "downloads": -1, "filename": "required-0.2.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f93bf4c2f090fe2d700b9455c05280bc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8631, "upload_time": "2017-03-17T13:52:16", "url": "https://files.pythonhosted.org/packages/3f/e0/36be003ce9929ee3a631d5435ae1ed4292c78fae4e8a4bacd29d5d00af01/required-0.2.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fe078fb12cac70528a836c7df866a658", "sha256": "792bee12bdc6443b5e164ed44c3f8fd4f8daa7eda3269df4f9c00855a6a2804c" }, "downloads": -1, "filename": "required-0.2.2.tar.gz", "has_sig": false, "md5_digest": "fe078fb12cac70528a836c7df866a658", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7525, "upload_time": "2017-03-17T13:52:18", "url": "https://files.pythonhosted.org/packages/4a/aa/c30c442678364e7c462470be372cf8c77e753ecdd295bc1e8d9e5c1c0499/required-0.2.2.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "ecb788c036653d957fd2165663ee671c", "sha256": "cac9bb67a2b35dac9ee84f9613c562866df67769c6ffe06e956d02beffb67af8" }, "downloads": -1, "filename": "required-0.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ecb788c036653d957fd2165663ee671c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9041, "upload_time": "2017-05-13T23:58:15", "url": "https://files.pythonhosted.org/packages/ab/56/b67fbf4c57d5d25f591ca1991aee3d2d3b59246e31f92f065f79849749c9/required-0.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a4db9dd7cfb28178567b74a7a86584f3", "sha256": "cef61a9d32a66d42a2fd902e78945674a39ad48dfc5084e6b441cef41c810064" }, "downloads": -1, "filename": "required-0.3.0.tar.gz", "has_sig": false, "md5_digest": "a4db9dd7cfb28178567b74a7a86584f3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7997, "upload_time": "2017-05-13T23:58:18", "url": "https://files.pythonhosted.org/packages/a4/ae/40853de0483e945331fd7228a2f393cc7d6aecf1fcceba5585c96a6de4c7/required-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "214a3ced7778ed3802c5efe62a519f5c", "sha256": "d1eeff60f993e9e26722de5ef982f2e9ebfc250beb07bf7744d88118fa0c8352" }, "downloads": -1, "filename": "required-0.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "214a3ced7778ed3802c5efe62a519f5c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8941, "upload_time": "2017-05-16T22:39:44", "url": "https://files.pythonhosted.org/packages/ff/c4/eaa54f2a9aa0420ea40a670ed1575cf8783593ae43d37adeba04e944f5d3/required-0.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "872babfdd57e05977a373777a7321b18", "sha256": "6f165e4f64c15edce3899a8db95f18f7bc1d3a37a61dc2c5d4803155f9bc5029" }, "downloads": -1, "filename": "required-0.3.1.tar.gz", "has_sig": false, "md5_digest": "872babfdd57e05977a373777a7321b18", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8034, "upload_time": "2017-05-16T22:39:46", "url": "https://files.pythonhosted.org/packages/74/92/d5aa08b25ac6c977e62b518078d8d169f0f2eb76dec4b1c1448a53f1342c/required-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "53fb4eb4c38be92d3a3f27a89ec6e85f", "sha256": "844b858535010320effcf63b3e102369616f51963db53892df08aa3e701e1f83" }, "downloads": -1, "filename": "required-0.3.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "53fb4eb4c38be92d3a3f27a89ec6e85f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9239, "upload_time": "2017-07-25T09:37:55", "url": "https://files.pythonhosted.org/packages/a3/e0/8991a467f90a8745059c0c90c7611a9c24c55d50cd1f0b4e3cdd53433be7/required-0.3.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ef4d5a0d94ef066613f7e071e24cb749", "sha256": "4adb81fe50bc07eea4eacfd2ebedfa167b2b9f871a95091e250290e4e6bfc90e" }, "downloads": -1, "filename": "required-0.3.2.tar.gz", "has_sig": false, "md5_digest": "ef4d5a0d94ef066613f7e071e24cb749", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8978, "upload_time": "2017-07-25T09:37:56", "url": "https://files.pythonhosted.org/packages/b0/90/fc2fd56b8dd1358400e605b1ed4a305adab979cd8bae2ac002f75d1cc434/required-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "79351d07c0a711c40bbc9a35dc6dd2b6", "sha256": "82d201748e7dd2cff3c27d2bcf450d8e7b7996b43e76ec7201baaa9deb1943fe" }, "downloads": -1, "filename": "required-0.3.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "79351d07c0a711c40bbc9a35dc6dd2b6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10873, "upload_time": "2017-09-18T04:17:25", "url": "https://files.pythonhosted.org/packages/99/21/c7e0047138d785d0892d61f982194344da0043d0b09b1ba9d9d31f8793ff/required-0.3.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6f89c0e69f440985e5bf3838036150cd", "sha256": "685b0f969ef3a7444f7760f6a64d19c2a0a2bfcadd18158455084727037bb651" }, "downloads": -1, "filename": "required-0.3.3.tar.gz", "has_sig": false, "md5_digest": "6f89c0e69f440985e5bf3838036150cd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10766, "upload_time": "2017-09-18T04:17:27", "url": "https://files.pythonhosted.org/packages/be/d3/dd9350b5aee1f190ac7f9f8c12c3018d5e6853faa872e4d40c3c4843ed87/required-0.3.3.tar.gz" } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "b226a6313d317786d67108545ef6d310", "sha256": "a9fd60e7e3813a41a924bf3a4927b5c91ef5ad23aa13a7bdb225628c1201dade" }, "downloads": -1, "filename": "required-0.3.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b226a6313d317786d67108545ef6d310", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 5958, "upload_time": "2018-12-01T03:34:42", "url": "https://files.pythonhosted.org/packages/06/1a/1724f8e2e76a0ec3d390d9731a670672f29c5e4a7257be2d4607552c677a/required-0.3.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b6b142ea1be2433c9ab871292b6f8ed6", "sha256": "9fc06051c7e89e68d71dcabd054b6a292d86e26891c5c42730129bcf00e86988" }, "downloads": -1, "filename": "required-0.3.4.tar.gz", "has_sig": false, "md5_digest": "b6b142ea1be2433c9ab871292b6f8ed6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9830, "upload_time": "2018-12-01T03:34:43", "url": "https://files.pythonhosted.org/packages/41/a1/fa55911bebe7c952d170e1a2605ada8479b3c4860c8186444d9d52c22d0b/required-0.3.4.tar.gz" } ], "0.3.4.post1": [ { "comment_text": "", "digests": { "md5": "d6c75b716801b0af615626ecab93cbeb", "sha256": "a7acde3fed2f1fe483a7e8a994ef153d536c5dfe99847a2eed7418878ee2a13b" }, "downloads": -1, "filename": "required-0.3.4.post1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d6c75b716801b0af615626ecab93cbeb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8011, "upload_time": "2018-12-01T03:49:51", "url": "https://files.pythonhosted.org/packages/bb/1b/1b96db2dff196ec10c17be5644c840c8f4dcaed709802db9aae4c03dcf30/required-0.3.4.post1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4aec144348778400bb18360f2d43280e", "sha256": "d4a3b51724003664513a3bd20cb960aed9663e832f547489fa2c672ea2f22384" }, "downloads": -1, "filename": "required-0.3.4.post1.tar.gz", "has_sig": false, "md5_digest": "4aec144348778400bb18360f2d43280e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10812, "upload_time": "2018-12-01T03:49:52", "url": "https://files.pythonhosted.org/packages/1f/3a/a9a30bcf2ebafb9bf059673f040df61270f53f4fa9047b142bed64c2f523/required-0.3.4.post1.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "894caa9d6e34ceb98e5a8ac23b41bcbd", "sha256": "5979aa5904907903c6d79916234cfd35e80045eed9656b2467b55639c16522a9" }, "downloads": -1, "filename": "required-0.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "894caa9d6e34ceb98e5a8ac23b41bcbd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11139, "upload_time": "2018-12-12T21:31:18", "url": "https://files.pythonhosted.org/packages/d2/81/9cb374380207b12322b97fac7cb324468264033fb77f705e96bcf59521fd/required-0.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "67b1a9dae2a1a835484ad0047fc8e1cf", "sha256": "96c0f51486dd627ef47dd97fb4e55ca5455e5b1815162ee92946e18599d5e915" }, "downloads": -1, "filename": "required-0.4.0.tar.gz", "has_sig": false, "md5_digest": "67b1a9dae2a1a835484ad0047fc8e1cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15584, "upload_time": "2018-12-12T21:31:19", "url": "https://files.pythonhosted.org/packages/67/e1/f3d5ae9477e467bc498e71122f138e8aa8f0c28a8f533d345903f2b3da62/required-0.4.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "894caa9d6e34ceb98e5a8ac23b41bcbd", "sha256": "5979aa5904907903c6d79916234cfd35e80045eed9656b2467b55639c16522a9" }, "downloads": -1, "filename": "required-0.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "894caa9d6e34ceb98e5a8ac23b41bcbd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 11139, "upload_time": "2018-12-12T21:31:18", "url": "https://files.pythonhosted.org/packages/d2/81/9cb374380207b12322b97fac7cb324468264033fb77f705e96bcf59521fd/required-0.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "67b1a9dae2a1a835484ad0047fc8e1cf", "sha256": "96c0f51486dd627ef47dd97fb4e55ca5455e5b1815162ee92946e18599d5e915" }, "downloads": -1, "filename": "required-0.4.0.tar.gz", "has_sig": false, "md5_digest": "67b1a9dae2a1a835484ad0047fc8e1cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15584, "upload_time": "2018-12-12T21:31:19", "url": "https://files.pythonhosted.org/packages/67/e1/f3d5ae9477e467bc498e71122f138e8aa8f0c28a8f533d345903f2b3da62/required-0.4.0.tar.gz" } ] }