{ "info": { "author": "Nathaniel J. Smith", "author_email": "njs@pobox.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Security :: Cryptography", "Topic :: Software Development :: Testing", "Topic :: System :: Networking" ], "description": ".. note that this README gets 'include'ed into the main documentation\n\n==============================================\n trustme: #1 quality TLS certs while you wait\n==============================================\n\n.. image:: https://vignette2.wikia.nocookie.net/jadensadventures/images/1/1e/Kaa%27s_hypnotic_eyes.jpg/revision/latest?cb=20140310173415\n :width: 200px\n :align: right\n\nYou wrote a cool network client or server. It encrypts connections\nusing `TLS\n`__. Your test\nsuite needs to make TLS connections to itself.\n\nUh oh. Your test suite *probably* doesn't have a valid TLS\ncertificate. Now what?\n\n``trustme`` is a tiny Python package that does one thing: it gives you\na `fake `__\ncertificate authority (CA) that you can use to generate fake TLS certs\nto use in your tests. Well, technically they're real certs, they're\njust signed by your CA, which nobody trusts. But you can trust\nit. Trust me.\n\n\nVital statistics\n================\n\n**Install:** ``pip install -U trustme``\n\n**Documentation:** https://trustme.readthedocs.io\n\n**Bug tracker and source code:** https://github.com/python-trio/trustme\n\n**Tested on:** Python 2.7 and Python 3.5+, CPython and PyPy\n\n**License:** MIT or Apache 2, your choice.\n\n**Code of conduct:** Contributors are requested to follow our `code of\nconduct\n`__\nin all project spaces.\n\n\nCheat sheet\n===========\n\nProgrammatic usage:\n\n.. code-block:: python\n\n import trustme\n\n # ----- Creating certs -----\n\n # Look, you just created your certificate authority!\n ca = trustme.CA()\n\n # And now you issued a cert signed by this fake CA\n # https://en.wikipedia.org/wiki/Example.org\n server_cert = ca.issue_cert(u\"test-host.example.org\")\n\n # That's it!\n\n # ----- Using your shiny new certs -----\n\n # You can configure SSL context objects to trust this CA:\n ca.configure_trust(ssl_context)\n # Or configure them to present the server certificate\n server_cert.configure_cert(ssl_context)\n # You can use standard library or PyOpenSSL context objects here,\n # trustme is happy either way.\n\n # ----- or -----\n\n # Save the PEM-encoded data to a file to use in non-Python test\n # suites:\n ca.cert_pem.write_to_path(\"ca.pem\")\n server_cert.private_key_and_cert_chain_pem.write_to_path(\"server.pem\")\n\n # ----- or -----\n\n # Put the PEM-encoded data in a temporary file, for libraries that\n # insist on that:\n with ca.cert_pem.tempfile() as ca_temp_path:\n requests.get(\"https://...\", verify=ca_temp_path)\n\nCommand line usage:\n\n.. code-block:: console\n\n $ # Certs may be generated from anywhere. Here's where we are:\n $ pwd\n /tmp\n $ # ----- Creating certs -----\n $ python -m trustme\n Generated a certificate for 'localhost', '127.0.0.1', '::1'\n Configure your server to use the following files:\n cert=/tmp/server.pem\n key=/tmp/server.key\n Configure your client to use the following files:\n cert=/tmp/client.pem\n $ # ----- Using certs -----\n $ gunicorn --keyfile server.key --certfile server.pem app:app\n $ curl --cacert client.pem https://localhost:8000/\n Hello, world!\n\n\nFAQ\n===\n\n**Should I use these certs for anything real?** Certainly not.\n\n**Why not just use self-signed certificates?** These are more\nrealistic. You don't have to disable your certificate validation code\nin your test suite, which is good because you want to test what you\nrun in production, and you would *never* disable your certificate\nvalidation code in production, right? Plus, they're just as easy to\nwork with. Actually easier, in many cases.\n\n**What if I want to test how my code handles some bizarre TLS\nconfiguration?** We think trustme hits a sweet spot of ease-of-use\nand generality as it is. The defaults are carefully chosen to work\non all major operating systems and be as fast as possible. We don't\nwant to turn trustme into a second-rate re-export of everything in\n`cryptography `__. If you have more complex\nneeds, consider using them directly, possibly starting from the\ntrustme code.\n\n**Will you automate installing CA cert into system trust store?** No.\n`mkcert `__ already does this\nwell, and we would not have anything to add.\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/python-trio/trustme", "keywords": "", "license": "MIT -or- Apache License 2.0", "maintainer": "", "maintainer_email": "", "name": "trustme", "package_url": "https://pypi.org/project/trustme/", "platform": "", "project_url": "https://pypi.org/project/trustme/", "project_urls": { "Homepage": "https://github.com/python-trio/trustme" }, "release_url": "https://pypi.org/project/trustme/0.9.0/", "requires_dist": [ "cryptography", "idna", "ipaddress ; python_version < \"3.3\"" ], "requires_python": "", "summary": "#1 quality TLS certs while you wait, for the discerning tester", "version": "0.9.0", "yanked": false, "yanked_reason": null }, "last_serial": 11164212, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "9ac5f505bf4f4054863aa0f6f6e853fe", "sha256": "65d270b0d8d28cf1af96a33228d01dfe096248e2e0231070b9ddb0a4232310bd" }, "downloads": -1, "filename": "trustme-0.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9ac5f505bf4f4054863aa0f6f6e853fe", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9293, "upload_time": "2017-07-18T06:05:44", "upload_time_iso_8601": "2017-07-18T06:05:44.317506Z", "url": "https://files.pythonhosted.org/packages/eb/d4/76844eee31296cffa6a7bb7ac6a647b21fc51601573cd316677bb629827e/trustme-0.1.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c6ec3d630ce9659506661665d1200512", "sha256": "9cb7a3dd6583cfc751658d01faa6c994b4607da6bd7241f3a291babd6d62773c" }, "downloads": -1, "filename": "trustme-0.1.0.tar.gz", "has_sig": false, "md5_digest": "c6ec3d630ce9659506661665d1200512", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13201, "upload_time": "2017-07-18T06:05:47", "upload_time_iso_8601": "2017-07-18T06:05:47.029484Z", "url": "https://files.pythonhosted.org/packages/42/c5/829584610901dc132c46c79abca3f34ab22507aa977e11d032d86f24e446/trustme-0.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "4f9264a9661e8477bbdc1798eb938119", "sha256": "8c822e14ead34e853c98ef3d21595424e32803df4b1bf4ddf8205b7a91dafb4e" }, "downloads": -1, "filename": "trustme-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4f9264a9661e8477bbdc1798eb938119", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9376, "upload_time": "2017-08-02T22:46:44", "upload_time_iso_8601": "2017-08-02T22:46:44.616061Z", "url": "https://files.pythonhosted.org/packages/56/cc/e8cf6b7302e85df8568d6b5aa08fad30820708acb3588367c64a644c967a/trustme-0.2.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "48aab734f56f8d96dd4b18543e5c23dd", "sha256": "0a975824dc7bdb9ae7b64c31014cacf0f8da0058f9ccf924aa7fcb6d881ab164" }, "downloads": -1, "filename": "trustme-0.2.0.tar.gz", "has_sig": false, "md5_digest": "48aab734f56f8d96dd4b18543e5c23dd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20314, "upload_time": "2017-08-02T22:46:46", "upload_time_iso_8601": "2017-08-02T22:46:46.420526Z", "url": "https://files.pythonhosted.org/packages/65/c0/7423f6b0e9a0979f11618840a767ced87520da55f8431ead8515ec92f734/trustme-0.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "b756af6810df957dfe095783bffa5478", "sha256": "e1ef04a20c7a7ef3a336f2b0e976aa921cd30ce43e088abe46588be1265163f2" }, "downloads": -1, "filename": "trustme-0.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b756af6810df957dfe095783bffa5478", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9375, "upload_time": "2017-08-03T07:23:16", "upload_time_iso_8601": "2017-08-03T07:23:16.359865Z", "url": "https://files.pythonhosted.org/packages/d6/64/216d8f0e95421a56b3aa007e90cc8b7618dbece7ef88211ee483e69777a0/trustme-0.3.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ac409bc0ff00dfecdf30682de276d41a", "sha256": "a650d908a0ce40641b61587cadc7c082420274e8ed851b418c22337ce0e6f9bd" }, "downloads": -1, "filename": "trustme-0.3.0.tar.gz", "has_sig": false, "md5_digest": "ac409bc0ff00dfecdf30682de276d41a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20414, "upload_time": "2017-08-03T07:23:17", "upload_time_iso_8601": "2017-08-03T07:23:17.786792Z", "url": "https://files.pythonhosted.org/packages/d8/e1/fbc10a0d27b27db2e33cfb9b61732e6fef32ea295ff0715cdb91c22a6c9e/trustme-0.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "328da63ca65b6cb3645b6abe8c47413f", "sha256": "76339d3471ddd32db574beace1f55dc270c1e5b6857ed363a9e37cf82f92bffa" }, "downloads": -1, "filename": "trustme-0.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "328da63ca65b6cb3645b6abe8c47413f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10198, "upload_time": "2017-08-07T07:49:03", "upload_time_iso_8601": "2017-08-07T07:49:03.224236Z", "url": "https://files.pythonhosted.org/packages/80/76/79bb5073134df15a18de29392d5ac109cb1d5bc872251983522c95e93c9f/trustme-0.4.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7e216f299e51a02e7080aea8edcc4091", "sha256": "f32ba9b880464b9ae5e624b52cf06ed191d69d405ef957b6fe0e30434dde2588" }, "downloads": -1, "filename": "trustme-0.4.0.tar.gz", "has_sig": false, "md5_digest": "7e216f299e51a02e7080aea8edcc4091", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22023, "upload_time": "2017-08-07T07:49:05", "upload_time_iso_8601": "2017-08-07T07:49:05.094012Z", "url": "https://files.pythonhosted.org/packages/cb/0b/4c1545475a5c92a66d5b5e5c2a21c9d75e5383ccc54160e50a830f600781/trustme-0.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "c61ffd5976d836fc9fd5aad328cff07f", "sha256": "49c671fd882095b1ac7774432d8081122c696b78410e4a23c1d88da0db76c017" }, "downloads": -1, "filename": "trustme-0.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c61ffd5976d836fc9fd5aad328cff07f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8439, "upload_time": "2019-01-22T05:11:16", "upload_time_iso_8601": "2019-01-22T05:11:16.532929Z", "url": "https://files.pythonhosted.org/packages/90/37/07952a1de00cdcd4d70494bad489efb0d1cc722c15455183a26df6662b4f/trustme-0.5.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "641f0707cd0930d4314020e728465014", "sha256": "89b8d689013afeaa34b63e77f6d60eebad63edc4b247e744c7d6d891ed13a564" }, "downloads": -1, "filename": "trustme-0.5.0.tar.gz", "has_sig": false, "md5_digest": "641f0707cd0930d4314020e728465014", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21232, "upload_time": "2019-01-22T05:11:18", "upload_time_iso_8601": "2019-01-22T05:11:18.356228Z", "url": "https://files.pythonhosted.org/packages/26/e1/0933b14ee03eb21de2dcfad40ed42fac468a5fd193efa9050b0fef23426d/trustme-0.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "68dfccf1da33eed250c966fd44150b04", "sha256": "6554e9c7771732d5c5177c16ad626df1b55a5028c8233dc01409945d94228447" }, "downloads": -1, "filename": "trustme-0.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "68dfccf1da33eed250c966fd44150b04", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8499, "upload_time": "2019-04-15T09:15:16", "upload_time_iso_8601": "2019-04-15T09:15:16.401477Z", "url": "https://files.pythonhosted.org/packages/97/ea/192ece38458b023dc15bdf4768d964ebb5447ada47ca07e7ec94edb6951d/trustme-0.5.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f5e9729cee5349868e3ad428401c4418", "sha256": "8d12837c6242afe1660dee08d44d96f40c9a5074cc58caf39f8c8fdf4b526529" }, "downloads": -1, "filename": "trustme-0.5.1.tar.gz", "has_sig": false, "md5_digest": "f5e9729cee5349868e3ad428401c4418", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21369, "upload_time": "2019-04-15T09:15:18", "upload_time_iso_8601": "2019-04-15T09:15:18.076505Z", "url": "https://files.pythonhosted.org/packages/3c/a8/dff7c9394cb94397bb199ddbfd00997a74f4ede4b971c01b0a4480d1292f/trustme-0.5.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "cfe3eaf1fc260567eaf45d899f394c77", "sha256": "39985bd115d9c9b4d8a8afa288b60410a792a8484205def795db569a624bcc86" }, "downloads": -1, "filename": "trustme-0.5.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cfe3eaf1fc260567eaf45d899f394c77", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13865, "upload_time": "2019-06-03T09:18:29", "upload_time_iso_8601": "2019-06-03T09:18:29.772500Z", "url": "https://files.pythonhosted.org/packages/e6/fe/4fa04b5a57422d59fbd9cb8ab6ceed32efac6fcfae7b3d49e317bf951674/trustme-0.5.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "34e0f194fdec080bc139b12da01a419b", "sha256": "8b804c55c7bcb5186f1f408c9da1e5fda915e6fe0142f4411ea900c380456e80" }, "downloads": -1, "filename": "trustme-0.5.2.tar.gz", "has_sig": false, "md5_digest": "34e0f194fdec080bc139b12da01a419b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21819, "upload_time": "2019-06-03T09:18:31", "upload_time_iso_8601": "2019-06-03T09:18:31.282492Z", "url": "https://files.pythonhosted.org/packages/64/25/677e7bfcae24b2ad7ba3c79516d84c137e3facb87328cf762a3c457af756/trustme-0.5.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "fd0a7997ed75eb196508fd2fa45f2208", "sha256": "4fae44b64f66189f3ead093c0e3e4d64ed57c00674c8b35961d45ed3be987aa0" }, "downloads": -1, "filename": "trustme-0.5.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fd0a7997ed75eb196508fd2fa45f2208", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14070, "upload_time": "2019-10-31T08:10:52", "upload_time_iso_8601": "2019-10-31T08:10:52.351463Z", "url": "https://files.pythonhosted.org/packages/6d/79/790248f59bbb8e2dcaa6e3ad7b3c9e9d65d0024eccd784b63f8dff3a6560/trustme-0.5.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d5912f35702e75b6d6097a518cf3ea1f", "sha256": "f0f96a21b430cc29661644d3569a1112a397ca9cc8595b964d4ae71e5e957529" }, "downloads": -1, "filename": "trustme-0.5.3.tar.gz", "has_sig": false, "md5_digest": "d5912f35702e75b6d6097a518cf3ea1f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35946, "upload_time": "2019-10-31T08:10:55", "upload_time_iso_8601": "2019-10-31T08:10:55.020417Z", "url": "https://files.pythonhosted.org/packages/ff/78/00c782a9998604629ba4fa7a7af5fa531b9a3bcaadc64b6f49adfea63af6/trustme-0.5.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "9c12c525c1d12a711cea3a0a83c87523", "sha256": "b0581d8f65beade785a721cf7986685a3ffad7ff26236a6d9b54d13b04301ec6" }, "downloads": -1, "filename": "trustme-0.6.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9c12c525c1d12a711cea3a0a83c87523", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 14250, "upload_time": "2019-12-19T14:08:17", "upload_time_iso_8601": "2019-12-19T14:08:17.609280Z", "url": "https://files.pythonhosted.org/packages/1c/76/0a9306fa033766ef75db10b775e27229978622b1ec9ebe3c02f17f3093c3/trustme-0.6.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4f354b9f9563a0f9bd05bb189a713afd", "sha256": "9dfb18b568729d0219f758cddca1a91bab59f62ca41ee0e8acce5e657ec97b6c" }, "downloads": -1, "filename": "trustme-0.6.0.tar.gz", "has_sig": false, "md5_digest": "4f354b9f9563a0f9bd05bb189a713afd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24062, "upload_time": "2019-12-19T14:08:19", "upload_time_iso_8601": "2019-12-19T14:08:19.907200Z", "url": "https://files.pythonhosted.org/packages/76/de/8dc6d402ac6037ee419a4f8bf29b4374068f0517a599234adfcfcc961bc8/trustme-0.6.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "fd3e56852896f7610c9ca67370fa3954", "sha256": "a9e080e0dbdff1aea85cf752b9f61f2b4447f1a65e0e2482badb2416342453ff" }, "downloads": -1, "filename": "trustme-0.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fd3e56852896f7610c9ca67370fa3954", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15819, "upload_time": "2021-02-10T07:00:18", "upload_time_iso_8601": "2021-02-10T07:00:18.717510Z", "url": "https://files.pythonhosted.org/packages/71/b5/52bb21ebdf6d0fa09f9ddada4765941c105aa7275ffdeeda2381134db394/trustme-0.7.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "54e862158a249f2fbb8b19e05179b077", "sha256": "1fde1dd27052ab5e5693e1fbe3ba091a6496daf1125409d73232561145fca369" }, "downloads": -1, "filename": "trustme-0.7.0.tar.gz", "has_sig": false, "md5_digest": "54e862158a249f2fbb8b19e05179b077", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27853, "upload_time": "2021-02-10T07:00:20", "upload_time_iso_8601": "2021-02-10T07:00:20.278787Z", "url": "https://files.pythonhosted.org/packages/0d/dd/b333c008e0714ca62b3d07d8983d70f3efffa4512216f82d9b4e1db17740/trustme-0.7.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "705c253f3eb1d1680902d47addd43559", "sha256": "7c05b1b15dc13adb959925734030e42e6d3fa42f0469b2533f7e4ec25dc5ea9d" }, "downloads": -1, "filename": "trustme-0.8.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "705c253f3eb1d1680902d47addd43559", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 16242, "upload_time": "2021-06-08T18:52:59", "upload_time_iso_8601": "2021-06-08T18:52:59.757205Z", "url": "https://files.pythonhosted.org/packages/6e/5a/63557fd366ff36e6a29970e140db63987c765848893dbd2e08202ec43d14/trustme-0.8.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "65c8cb3c2c09f1190763529f2ef2b03b", "sha256": "3dcfbe186bf33d146347c6180b67564257f2708960027ab6d24fea2865daabca" }, "downloads": -1, "filename": "trustme-0.8.0.tar.gz", "has_sig": false, "md5_digest": "65c8cb3c2c09f1190763529f2ef2b03b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29046, "upload_time": "2021-06-08T18:53:02", "upload_time_iso_8601": "2021-06-08T18:53:02.710792Z", "url": "https://files.pythonhosted.org/packages/70/d0/4dbfc0b607456cd07f763d73f824a919dbae5b87e538f2f015c7afbaf4a6/trustme-0.8.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "c9bea0fe381c549f0eef1717773ae738", "sha256": "a6e53039cc43e70548ebd9a42ec1af5cba803a16d14321cd96352d2b4e010e04" }, "downloads": -1, "filename": "trustme-0.9.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c9bea0fe381c549f0eef1717773ae738", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 16855, "upload_time": "2021-08-12T20:04:59", "upload_time_iso_8601": "2021-08-12T20:04:59.056249Z", "url": "https://files.pythonhosted.org/packages/15/70/aba454c03b2b64bf56fb0ed6653bee04d5804268b711e7f5790168fc2805/trustme-0.9.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0e4d698e5aecaf8306cf440bf3dcbbe0", "sha256": "5e07b23d70ceed64f3bb36ae4b9abc52354c16c98d45ab037bee2b5fbffe586c" }, "downloads": -1, "filename": "trustme-0.9.0.tar.gz", "has_sig": false, "md5_digest": "0e4d698e5aecaf8306cf440bf3dcbbe0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30081, "upload_time": "2021-08-12T20:05:01", "upload_time_iso_8601": "2021-08-12T20:05:01.354092Z", "url": "https://files.pythonhosted.org/packages/34/8e/66203d0c8c4557db28772678359e0878610624db8438b1ed9361ceeaad1d/trustme-0.9.0.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "c9bea0fe381c549f0eef1717773ae738", "sha256": "a6e53039cc43e70548ebd9a42ec1af5cba803a16d14321cd96352d2b4e010e04" }, "downloads": -1, "filename": "trustme-0.9.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c9bea0fe381c549f0eef1717773ae738", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 16855, "upload_time": "2021-08-12T20:04:59", "upload_time_iso_8601": "2021-08-12T20:04:59.056249Z", "url": "https://files.pythonhosted.org/packages/15/70/aba454c03b2b64bf56fb0ed6653bee04d5804268b711e7f5790168fc2805/trustme-0.9.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0e4d698e5aecaf8306cf440bf3dcbbe0", "sha256": "5e07b23d70ceed64f3bb36ae4b9abc52354c16c98d45ab037bee2b5fbffe586c" }, "downloads": -1, "filename": "trustme-0.9.0.tar.gz", "has_sig": false, "md5_digest": "0e4d698e5aecaf8306cf440bf3dcbbe0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30081, "upload_time": "2021-08-12T20:05:01", "upload_time_iso_8601": "2021-08-12T20:05:01.354092Z", "url": "https://files.pythonhosted.org/packages/34/8e/66203d0c8c4557db28772678359e0878610624db8438b1ed9361ceeaad1d/trustme-0.9.0.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }