{ "info": { "author": "Gregory Oschwald", "author_email": "goschwald@maxmind.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Internet", "Topic :: Internet :: Proxy Servers", "Topic :: Internet :: WWW/HTTP" ], "description": "================================================\nminFraud Score, Insights, and Factors Python API\n================================================\n\nDescription\n-----------\n\nThis package provides an API for the `MaxMind minFraud Score, Insights, and \nFactors web services `_.\n\nInstallation\n------------\n\nTo install the ``minfraud`` module, type:\n\n.. code-block:: bash\n\n $ pip install minfraud\n\nIf you are not able to use pip, you may also use easy_install from the\nsource directory:\n\n.. code-block:: bash\n\n $ easy_install .\n\nDocumentation\n-------------\n\nComplete API documentation is available on `Read the Docs\n`_.\n\nUsage\n-----\n\nTo use this API, create a new ``minfraud.Client`` object. The constructor\ntakes your MaxMind account ID and license key:\n\n.. code-block:: pycon\n\n >>> client = Client(42, 'licensekey')\n\nThe Factors service is called with the ``factors()`` method:\n\n.. code-block:: pycon\n\n >>> factors = client.factors({'device': {'ip_address': '81.2.69.160'}})\n\nThe Insights service is called with the ``insights()`` method:\n\n.. code-block:: pycon\n\n >>> insights = client.insights({'device': {'ip_address': '81.2.69.160'}})\n\nThe Score web service is called with the ``score()`` method:\n\n.. code-block:: pycon\n\n >>> score = client.score({'device': {'ip_address': '81.2.69.160'}})\n\nEach of these methods takes a dictionary representing the transaction to be sent\nto the web service. The structure of this dictionary should be in `the format\nspecified in the REST API documentation\n`_.\nThe ``ip_address`` in the ``device`` sub-dictionary is required. All other\nfields are optional.\n\nAssuming validation has not been disabled, before sending the transaction to\nthe web service, the transaction dictionary structure and content will be\nvalidated. If validation fails, a ``minfraud.InvalidRequestError``\nwill be raised.\n\nIf the dictionary is valid, a request will be made to the web service. If the\nrequest succeeds, a model object for the service response will be returned.\nIf the request fails, one of the errors listed below will be raised.\n\nErrors\n------\n\nThe possible errors are:\n\n* ``minfraud.AuthenticationError`` - This will be raised when the server\n is unable to authenticate the request, e.g., if the license key or account\n ID is invalid.\n* ``minfraud.InsufficientFundsError`` - This will be raised when `your\n account `_ is out of funds.\n* ``minfraud.InvalidRequestError`` - This will be raised when the server\n rejects the request as invalid for another reason, such as a missing or\n reserved IP address. It is also raised if validation of the request before\n it is sent to the server fails.\n* ``minfraud.HttpError`` - This will be raised when an unexpected HTTP\n error occurs such as a firewall interfering with the request to the server.\n* ``minfraud.MinFraudError`` - This will be raised when some other error\n occurs such as unexpected content from the server. This also serves as the\n base class for the above errors.\n\nExample\n-------\n\n.. code-block:: pycon\n\n >>> from minfraud import Client\n >>>\n >>> client = Client(42, 'licensekey')\n >>>\n >>> request = {\n >>> 'device': {\n >>> 'ip_address': '81.2.69.160',\n >>> 'accept_language': 'en-US,en;q=0.8',\n >>> 'session_age': 3600,\n >>> 'session_id': 'a333a4e127f880d8820e56a66f40717c',\n >>> 'user_agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.89 Safari/537.36'\n >>> },\n >>> 'event': {\n >>> 'shop_id': 's2123',\n >>> 'type': 'purchase',\n >>> 'transaction_id': 'txn3134133',\n >>> 'time': '2014-04-12T23:20:50.052+00:00'\n >>> },\n >>> 'account': {\n >>> 'user_id': '3132',\n >>> 'username_md5': '570a90bfbf8c7eab5dc5d4e26832d5b1'\n >>> },\n >>> 'email': {\n >>> 'address': '977577b140bfb7c516e4746204fbdb01',\n >>> 'domain': 'maxmind.com'\n >>> },\n >>> 'billing': {\n >>> 'first_name': 'Jane',\n >>> 'last_name': 'Doe',\n >>> 'company': 'Company',\n >>> 'address': '101 Address Rd.',\n >>> 'address_2': 'Unit 5',\n >>> 'city': 'Hamden',\n >>> 'region': 'CT',\n >>> 'country': 'US',\n >>> 'postal': '06510',\n >>> 'phone_country_code': '1',\n >>> 'phone_number': '323-123-4321',\n >>> },\n >>> 'shipping': {\n >>> 'first_name': 'John',\n >>> 'last_name': 'Doe',\n >>> 'company': 'ShipCo',\n >>> 'address': '322 Ship Addr. Ln.',\n >>> 'address_2': 'St. 43',\n >>> 'city': 'New Haven',\n >>> 'region': 'CT',\n >>> 'country': 'US',\n >>> 'postal': '06510',\n >>> 'phone_country_code': '1',\n >>> 'phone_number': '403-321-2323',\n >>> 'delivery_speed': 'same_day',\n >>> },\n >>> 'credit_card': {\n >>> 'bank_phone_country_code': '1',\n >>> 'avs_result': 'Y',\n >>> 'bank_phone_number': '800-342-1232',\n >>> 'last_4_digits': '7643',\n >>> 'cvv_result': 'N',\n >>> 'bank_name': 'Bank of No Hope',\n >>> 'issuer_id_number': '323132'\n >>> },\n >>> 'payment': {\n >>> 'decline_code': 'invalid number',\n >>> 'was_authorized': False,\n >>> 'processor': 'stripe'\n >>> },\n >>> 'shopping_cart': [{\n >>> 'category': 'pets',\n >>> 'quantity': 2,\n >>> 'price': 20.43,\n >>> 'item_id': 'lsh12'\n >>> }, {\n >>> 'category': 'beauty',\n >>> 'quantity': 1,\n >>> 'price': 100.0,\n >>> 'item_id': 'ms12'\n >>> }],\n >>> 'order': {\n >>> 'affiliate_id': 'af12',\n >>> 'referrer_uri': 'http://www.amazon.com/',\n >>> 'subaffiliate_id': 'saf42',\n >>> 'discount_code': 'FIRST',\n >>> 'currency': 'USD',\n >>> 'amount': 323.21\n >>> },\n >>> 'custom_inputs': {\n >>> 'section': 'news',\n >>> 'num_of_previous_purchases': 19,\n >>> 'discount': 3.2,\n >>> 'previous_user': True\n >>> }\n >>> }\n >>>\n >>> client.score(request)\n Score(...)\n >>>\n >>> client.insights(request)\n Insights(...)\n >>>\n >>> client.factors(request)\n Factors(...)\n\nRequirements\n------------\n\nThis code requires Python 2.7+ or 3.3+. Older versions are not supported.\nThis library has been tested with CPython and PyPy.\n\nVersioning\n----------\n\nThe minFraud Python API uses `Semantic Versioning `_.\n\nSupport\n-------\n\nPlease report all issues with this code using the `GitHub issue tracker\n`_.\n\nIf you are having an issue with a MaxMind service that is not specific to the\nclient API, please contact `MaxMind support `_\nfor assistance.\n\nCopyright and License\n---------------------\n\nThis software is Copyright \u00a9 2015-2018 by MaxMind, Inc.\n\nThis is free software, licensed under the Apache License, Version 2.0.\n", "description_content_type": "", "docs_url": "https://pythonhosted.org/minfraud/", "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://www.maxmind.com/", "keywords": "", "license": "Apache License 2.0 ", "maintainer": "", "maintainer_email": "", "name": "minfraud", "package_url": "https://pypi.org/project/minfraud/", "platform": "any", "project_url": "https://pypi.org/project/minfraud/", "project_urls": { "Homepage": "http://www.maxmind.com/" }, "release_url": "https://pypi.org/project/minfraud/1.7.0/", "requires_dist": null, "requires_python": "", "summary": "MaxMind minFraud Score, Insights, and Factors API", "version": "1.7.0" }, "last_serial": 3752588, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "73e30f534fcdea874988dfde7cd33939", "sha256": "7faae22e7d52b3ebcc7b41964dd7a18bee1dc99c2eda7c8b838a80d43d81547e" }, "downloads": -1, "filename": "minfraud-0.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "73e30f534fcdea874988dfde7cd33939", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 12259, "upload_time": "2015-06-19T17:18:18", "url": "https://files.pythonhosted.org/packages/5f/53/72a0edfa321cc158ca0b7a8c5dff0d82affa9cbf9a24a57b17c8c2e080a4/minfraud-0.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d74db192d39312c3db8f52fd4d1af594", "sha256": "d930af290d239fcc82195ad36400dee6291302294a67b4a45361614942ba0fd2" }, "downloads": -1, "filename": "minfraud-0.0.1.tar.gz", "has_sig": false, "md5_digest": "d74db192d39312c3db8f52fd4d1af594", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 565988, "upload_time": "2015-06-19T17:18:14", "url": "https://files.pythonhosted.org/packages/01/dd/38cd0fc9cc24c7292d5176357f8dfeaeb3a120299d3f70024a834b97d8a4/minfraud-0.0.1.tar.gz" } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "1a9e4b044e0fabde3e397860df30fc8c", "sha256": "fbff3bd621b06cb7552e0922e286020563bded79de0c0731a3b885c4795c7a90" }, "downloads": -1, "filename": "minfraud-0.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1a9e4b044e0fabde3e397860df30fc8c", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 12258, "upload_time": "2015-06-29T16:14:03", "url": "https://files.pythonhosted.org/packages/c1/c8/27cb9f59b4277026b38244654aa2648f5af10c8100dd7c002474e3f4020e/minfraud-0.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d7e4841698ec2e3f18117468180948dd", "sha256": "9f7192ed0366d8c6b3fd79344a1b9653c5173027861cadd95267b1ae2c0302e7" }, "downloads": -1, "filename": "minfraud-0.1.0.tar.gz", "has_sig": false, "md5_digest": "d7e4841698ec2e3f18117468180948dd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 566481, "upload_time": "2015-06-29T16:13:58", "url": "https://files.pythonhosted.org/packages/f8/f4/cf1e68ce5d669a690df65dde6e3957cbadfa17f7212d41e0e6bbd332b41e/minfraud-0.1.0.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "4c35c5b35fbc8c0b9b44b37c49d4104c", "sha256": "49b969b1aa64414ef3b0131a25be496ab72a0dfaa0ad881cda02f3ba1c744f4c" }, "downloads": -1, "filename": "minfraud-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4c35c5b35fbc8c0b9b44b37c49d4104c", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 12429, "upload_time": "2015-08-10T16:17:57", "url": "https://files.pythonhosted.org/packages/4c/28/dce140e6c690f5d15396098ce16eacc13ff80aff1ec93235259dcab9f1d8/minfraud-0.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9830c85d4276ff44e58ed51454085309", "sha256": "581ecf5a6d962890fb3f51b344eb0ff8c1746523015b4ef1bac5d6ffa0878d9c" }, "downloads": -1, "filename": "minfraud-0.2.0.tar.gz", "has_sig": false, "md5_digest": "9830c85d4276ff44e58ed51454085309", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 566949, "upload_time": "2015-08-10T16:17:53", "url": "https://files.pythonhosted.org/packages/15/4a/f909b2641a41c9715ba895c857de1e61638c313d9c1be2228db4455bba35/minfraud-0.2.0.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "d31e537bd6ea0ef54276d9d673d0800c", "sha256": "5c95806e95cd91904d56704f0776966e88bbf1644d85d13103245ff091917e13" }, "downloads": -1, "filename": "minfraud-0.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d31e537bd6ea0ef54276d9d673d0800c", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 12965, "upload_time": "2016-01-20T20:40:12", "url": "https://files.pythonhosted.org/packages/a5/36/72badbef3a039f4a39df7517139ea311afaf61125b26225b146d727941ba/minfraud-0.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a7efcf2e3f2ed768b54688e445366524", "sha256": "4942e774a4d76faf3a8de85f42368dfde3e25c5d61d29d3a14556468aa3d405d" }, "downloads": -1, "filename": "minfraud-0.3.0.tar.gz", "has_sig": false, "md5_digest": "a7efcf2e3f2ed768b54688e445366524", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 572236, "upload_time": "2016-01-20T20:40:02", "url": "https://files.pythonhosted.org/packages/65/81/25cc5e3234c0f04276802ce83f5efca0f667d830b3da1a5f5ab425e578c0/minfraud-0.3.0.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "02da0e3c516ff96f257742316942ab80", "sha256": "be6e8572483fc48cba21a3681de82ed25a469d7b5ecf47ac81ca0ee8d4cc48ea" }, "downloads": -1, "filename": "minfraud-0.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "02da0e3c516ff96f257742316942ab80", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 13906, "upload_time": "2016-05-23T17:25:18", "url": "https://files.pythonhosted.org/packages/50/51/455441b6a28f875de5907e015ae1a222d0e52ce132a56ecdc2258236c95e/minfraud-0.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0c243e8d289efa6f657f387d51fca769", "sha256": "b2405b8e9190a665f36b11856f0bd14e1eed4deadc3a3df70e726c069b56d293" }, "downloads": -1, "filename": "minfraud-0.4.0.tar.gz", "has_sig": false, "md5_digest": "0c243e8d289efa6f657f387d51fca769", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 602810, "upload_time": "2016-05-23T17:25:10", "url": "https://files.pythonhosted.org/packages/7c/93/b846fc12011642a78826e96aa48d3494cb35ecfc953ea464bee35bb78033/minfraud-0.4.0.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "619a28ad5912f7f41048cd4a8cd98511", "sha256": "770b04dc790850cee19ada07679d09be24bc9e59d2390b658614b8cd76f54408" }, "downloads": -1, "filename": "minfraud-0.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "619a28ad5912f7f41048cd4a8cd98511", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 14205, "upload_time": "2016-06-08T22:16:30", "url": "https://files.pythonhosted.org/packages/86/d1/9d71058457eeb93a1adb50046ff838f731f612a7f4e8bf765ffa11622c98/minfraud-0.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "045eda402cc5fce9fe737216ed2a1717", "sha256": "b720d4a9cf48d1076a91db3e3004dd3a3c5718f71e6baef2df7c57ff74e8edff" }, "downloads": -1, "filename": "minfraud-0.5.0.tar.gz", "has_sig": false, "md5_digest": "045eda402cc5fce9fe737216ed2a1717", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 604916, "upload_time": "2016-06-08T22:16:24", "url": "https://files.pythonhosted.org/packages/12/80/8e635a47011c7d1e1a3b2f0e2457f088e6a89a623c3eee938927038e03b9/minfraud-0.5.0.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "e1d4fe05bd0836686f6d9e92fd529bab", "sha256": "faa4f70c4751f072f3385a7e71817e23b1ea6373bdf520ee50abd26dc447754e" }, "downloads": -1, "filename": "minfraud-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e1d4fe05bd0836686f6d9e92fd529bab", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 14238, "upload_time": "2016-09-15T21:05:20", "url": "https://files.pythonhosted.org/packages/e9/90/5916a40a3c0845c9d853dc654895cc53b61ba55530593c8a1a4146fda9bf/minfraud-1.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c4b746317fb7091f646f506d6c6c8860", "sha256": "a9a6ec3446686ff67520ec7d9cdd1d1294fd3a95a4ea31f4a764ba4bef4f10d3" }, "downloads": -1, "filename": "minfraud-1.0.0.tar.gz", "has_sig": false, "md5_digest": "c4b746317fb7091f646f506d6c6c8860", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 504782, "upload_time": "2016-09-15T21:05:17", "url": "https://files.pythonhosted.org/packages/2e/9c/707fb037dbc528b58bffb603ea14aa0aed66ab92e7214ba54342b4673d2b/minfraud-1.0.0.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "d794737635676066e1f301c2ccf49c10", "sha256": "1ee9ed610bc72a5a1f58a1e1c1cf5cad406dd0f79c731945f5948dce4496d419" }, "downloads": -1, "filename": "minfraud-1.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d794737635676066e1f301c2ccf49c10", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 14240, "upload_time": "2016-10-10T18:14:02", "url": "https://files.pythonhosted.org/packages/b3/77/e9c7f4f4baf896332c85beb24689628d25aca29bbc3ce558bc739409ae5f/minfraud-1.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5ec4350a3652370617f40dc9bf59d8fa", "sha256": "6c15fd981f951f0d254f7bdbc4904437a7ee641a516d6671359c47961e969013" }, "downloads": -1, "filename": "minfraud-1.1.0.tar.gz", "has_sig": false, "md5_digest": "5ec4350a3652370617f40dc9bf59d8fa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 504691, "upload_time": "2016-10-10T18:13:59", "url": "https://files.pythonhosted.org/packages/45/33/6b446e39def338874498bc851e8472c9be3ba33cebd37ef25d0e7686539d/minfraud-1.1.0.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "5dedaf4d14c65ee323fc6f4a31b44630", "sha256": "2a27035ee7107421faeede76d273fb16a4114f027dc545dee20fd7dcc2e43c3f" }, "downloads": -1, "filename": "minfraud-1.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5dedaf4d14c65ee323fc6f4a31b44630", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 14287, "upload_time": "2016-11-14T15:55:13", "url": "https://files.pythonhosted.org/packages/43/be/5fd32a4aaa8775e73588c031f7673685c200a2ffeaba71a821404d00097f/minfraud-1.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d0f747e781fa45dd4e9faaa0aeb54031", "sha256": "ac1d3103e089e82d2cc42e13bfed1320786ce9a977230f076e0d337c1b972297" }, "downloads": -1, "filename": "minfraud-1.2.0.tar.gz", "has_sig": false, "md5_digest": "d0f747e781fa45dd4e9faaa0aeb54031", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 508473, "upload_time": "2016-11-14T15:55:10", "url": "https://files.pythonhosted.org/packages/fb/c9/b6c60965390e8fefed7ee2ce28a00b854c6034ae71348b81f772577286db/minfraud-1.2.0.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "4b035f9d8dc0a3bb4911c28865e5611c", "sha256": "69af79eb39eebbc9b309a22211b6bb4018abc7e87a7b345a68e26cc1a3d34b0b" }, "downloads": -1, "filename": "minfraud-1.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4b035f9d8dc0a3bb4911c28865e5611c", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 19346, "upload_time": "2016-11-22T15:15:18", "url": "https://files.pythonhosted.org/packages/bc/9a/ac676ef44ea9bacb4a185ac8c107ce0e82fbf03efc930e9e168398eb2cd3/minfraud-1.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "28bbcc47a52eb1fac9bef3412fad79cc", "sha256": "6f8cef24a35262b9dc9b189878f123fd9845d5f2ff52bf61479e73aebc48ca59" }, "downloads": -1, "filename": "minfraud-1.3.0.tar.gz", "has_sig": false, "md5_digest": "28bbcc47a52eb1fac9bef3412fad79cc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 516495, "upload_time": "2016-11-22T15:15:16", "url": "https://files.pythonhosted.org/packages/68/a3/c5d6c58bc82b3a8b765a3e20664e5dff6541457fc1773d607591b9a4f1b5/minfraud-1.3.0.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "6e697a1fe24a03122ea5ecf5f56e2374", "sha256": "9fcbaea8765e98a8f1551e0d9621bed5461a190740e0e277eac362337a6ac29c" }, "downloads": -1, "filename": "minfraud-1.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6e697a1fe24a03122ea5ecf5f56e2374", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 19345, "upload_time": "2016-11-22T15:39:17", "url": "https://files.pythonhosted.org/packages/5d/67/fe3aac17a5cd2b0a86b86416f12abec359d1cfa5cef700b14ee86d71818d/minfraud-1.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "de55908a377cf0b0495adec63c85743e", "sha256": "8c9e93846a089fbb7bd859a7ab391ecb9e8e716901b8f336fca725b11bf324e5" }, "downloads": -1, "filename": "minfraud-1.3.1.tar.gz", "has_sig": false, "md5_digest": "de55908a377cf0b0495adec63c85743e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 507046, "upload_time": "2016-11-22T15:39:14", "url": "https://files.pythonhosted.org/packages/c4/7f/38594364f15ac7a8b8f80c9e758628a571331e09e79cc43afe217f2cea86/minfraud-1.3.1.tar.gz" } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "b8b760e87144a4cda6afaa2419e44749", "sha256": "7ceda09ed337744dfb3e45f0ae29281eea6c998b6a1212a200ab6a7500213153" }, "downloads": -1, "filename": "minfraud-1.3.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b8b760e87144a4cda6afaa2419e44749", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 19387, "upload_time": "2016-12-08T20:21:01", "url": "https://files.pythonhosted.org/packages/bc/22/21bfb07fdc5e168383ad2f64c26586a2a7be40f9b807cb8bb919287504e9/minfraud-1.3.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6b12ba1e426a051896d91d43979f4f95", "sha256": "b28c77b1a3b6377ad3b4af3ab0597d1708739271a6aee1a504bed407aa9c6231" }, "downloads": -1, "filename": "minfraud-1.3.2.tar.gz", "has_sig": false, "md5_digest": "6b12ba1e426a051896d91d43979f4f95", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 512183, "upload_time": "2016-12-08T20:20:59", "url": "https://files.pythonhosted.org/packages/85/49/f3b6b53cb48dcf40ef4a14ea0b417d6d129d2262b21ca813f48bec9b8b22/minfraud-1.3.2.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "68d2f9abccbd8296816b1241f2bf1825", "sha256": "c040e49016902c9b05c41c36600f4225afa6f4cae399fb5b066452f4bd51d042" }, "downloads": -1, "filename": "minfraud-1.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "68d2f9abccbd8296816b1241f2bf1825", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 19817, "upload_time": "2017-07-06T21:34:08", "url": "https://files.pythonhosted.org/packages/1b/ba/c54709829d75122278d22917318fc446e2d7ec7ac3eb7a666cb7d2b9bff1/minfraud-1.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "68c3cc27db518e6e7c299f7f238afee1", "sha256": "92d5cb067b43202ecf4c0a690b292b6556e53ab8d3be5ad32512ede41dc143d3" }, "downloads": -1, "filename": "minfraud-1.4.0.tar.gz", "has_sig": false, "md5_digest": "68c3cc27db518e6e7c299f7f238afee1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 560924, "upload_time": "2017-07-06T21:34:06", "url": "https://files.pythonhosted.org/packages/9a/ec/9f482eaf3fb829ef7cb6a44a23521f238fdb339ad468210942ba7b5ce8ba/minfraud-1.4.0.tar.gz" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "949a69dde81140b6e276da566ef1432f", "sha256": "e3dbb96506c74b686ae9300c67037c2c9da5f05ebffe8386c6589822ae664268" }, "downloads": -1, "filename": "minfraud-1.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "949a69dde81140b6e276da566ef1432f", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 19843, "upload_time": "2017-10-30T16:30:40", "url": "https://files.pythonhosted.org/packages/83/8f/97cafc1e950811fcd03c7ad6a95aff2ec21997df80e93513c9f02ce206ef/minfraud-1.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "771f14ef286dc21222f41b92f1e58984", "sha256": "31de7f5b2128ebc4d11696129bd66064f4d9b3a552423e3b565aaa6765bdb38b" }, "downloads": -1, "filename": "minfraud-1.5.0.tar.gz", "has_sig": false, "md5_digest": "771f14ef286dc21222f41b92f1e58984", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 570737, "upload_time": "2017-10-30T16:30:37", "url": "https://files.pythonhosted.org/packages/86/85/2bb62b96a98ebe24aab8ceb63534fe13ce9046c9010444631712379bc037/minfraud-1.5.0.tar.gz" } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "51d102ea58f602201a3a9f262ab56e27", "sha256": "09db71659927d47133cc555dcd0b0e8ae3bc9ee8990e3dbfedb6d37c2d5b60b3" }, "downloads": -1, "filename": "minfraud-1.6.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "51d102ea58f602201a3a9f262ab56e27", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 19885, "upload_time": "2018-01-18T18:58:13", "url": "https://files.pythonhosted.org/packages/b3/b0/263ea8d3e4a19732a7caa59395838b4e1f195b8d91281fd845f9f8096513/minfraud-1.6.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "90155236a3f37dd8e1bdff40f8ff9d8c", "sha256": "67cce309ffda20ea7cfde5f82b98eea93f4c1a89607b256d74e1e2837bec5644" }, "downloads": -1, "filename": "minfraud-1.6.0.tar.gz", "has_sig": false, "md5_digest": "90155236a3f37dd8e1bdff40f8ff9d8c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 571561, "upload_time": "2018-01-18T18:58:11", "url": "https://files.pythonhosted.org/packages/2f/f4/dbbd8c9ca696796becfa259d6875678046d16d14e0585925aa405ab4ddb5/minfraud-1.6.0.tar.gz" } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "700e246c1677d215b3d87f3835c5fc49", "sha256": "09aea7407f49425800fcbfb1a7655d0d03bee880e5655ba3ae5827730ce2918e" }, "downloads": -1, "filename": "minfraud-1.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "700e246c1677d215b3d87f3835c5fc49", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 16630, "upload_time": "2018-04-10T15:28:46", "url": "https://files.pythonhosted.org/packages/a0/75/1a786f50d5b90b499e7ee54efac37aed96446050a7be83074f287c9ef204/minfraud-1.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "77f1e24c546e91d5bcaa2e77de3a9593", "sha256": "88482b820d4ae59a8ca9f705eae0ade8275e16f6874c87c418ed58a4104f54e7" }, "downloads": -1, "filename": "minfraud-1.7.0.tar.gz", "has_sig": false, "md5_digest": "77f1e24c546e91d5bcaa2e77de3a9593", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 647215, "upload_time": "2018-04-10T15:28:45", "url": "https://files.pythonhosted.org/packages/52/88/82bc2d53dd45611860b6807d68a50814ddd82de0f27c0ca0759e07ddd08b/minfraud-1.7.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "700e246c1677d215b3d87f3835c5fc49", "sha256": "09aea7407f49425800fcbfb1a7655d0d03bee880e5655ba3ae5827730ce2918e" }, "downloads": -1, "filename": "minfraud-1.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "700e246c1677d215b3d87f3835c5fc49", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 16630, "upload_time": "2018-04-10T15:28:46", "url": "https://files.pythonhosted.org/packages/a0/75/1a786f50d5b90b499e7ee54efac37aed96446050a7be83074f287c9ef204/minfraud-1.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "77f1e24c546e91d5bcaa2e77de3a9593", "sha256": "88482b820d4ae59a8ca9f705eae0ade8275e16f6874c87c418ed58a4104f54e7" }, "downloads": -1, "filename": "minfraud-1.7.0.tar.gz", "has_sig": false, "md5_digest": "77f1e24c546e91d5bcaa2e77de3a9593", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 647215, "upload_time": "2018-04-10T15:28:45", "url": "https://files.pythonhosted.org/packages/52/88/82bc2d53dd45611860b6807d68a50814ddd82de0f27c0ca0759e07ddd08b/minfraud-1.7.0.tar.gz" } ] }