{ "info": { "author": "Auth0", "author_email": "support@auth0.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7" ], "description": "**************\nAuth0 - Python\n**************\n\n|pypi| |build| |coverage| |license|\n\nIn this repository, you'll find all the information about integrating Auth0 with Python.\n\n\n==============\nWhat is Auth0?\n==============\n\nAuth0 helps you to:\n\n* Add authentication with `multiple authentication sources `_,\n either social like **Google, Facebook, Microsoft Account, LinkedIn, GitHub, Twitter, Box, Salesforce, among others**,\n or enterprise identity systems like **Windows Azure AD, Google Apps, Active Directory, ADFS or any SAML Identity Provider**.\n* Add authentication through more traditional `username/password databases `_.\n* Add support for `linking different user accounts `_ with the same user.\n* Support for generating signed `JSON Web Tokens `_ to call your APIs and **flow the user identity** securely.\n* Analytics of how, when and where users are logging in.\n* Pull data from other sources and add it to the user profile, through `JavaScript rules `_.\n\n\n===========================\nCreate a free Auth0 Account\n===========================\n\n1. Go to `Auth0`_ and click Sign Up.\n2. Use Google, GitHub or Microsoft Account to log in.\n\n============\nInstallation\n============\n\nYou can install the auth0 Python SDK using the following command.\n\n.. code-block::\n\n pip install auth0-python\n\nFor python3, use the following command\n\n.. code-block::\n\n pip3 install auth0-python\n\nPython 3.2 and 3.3 have reached `EOL `_ and support will be removed in the near future.\n\n====================\nManagement SDK Usage\n====================\n\nTo use the management library you will need to instantiate an Auth0 object with a domain and a `Management API v2 token `_. Please note that these token last 24 hours, so if you need it constantly you should ask for it programmatically using the client credentials grant with a `non interactive client `_ authorized to access the API. For example:\n\n.. code-block:: python\n\n from auth0.v3.authentication import GetToken\n\n domain = 'myaccount.auth0.com'\n non_interactive_client_id = 'exampleid'\n non_interactive_client_secret = 'examplesecret'\n\n get_token = GetToken(domain)\n token = get_token.client_credentials(non_interactive_client_id,\n non_interactive_client_secret, 'https://{}/api/v2/'.format(domain))\n mgmt_api_token = token['access_token']\n\n\nThen use the token you've obtained as follows:\n\n.. code-block:: python\n\n from auth0.v3.management import Auth0\n\n domain = 'myaccount.auth0.com'\n mgmt_api_token = 'MGMT_API_TOKEN'\n\n auth0 = Auth0(domain, mgmt_api_token)\n\nThe ``Auth0()`` object is now ready to take orders!\nLet's see how we can use this to get all available connections.\n(this action requires the token to have the following scope: ``read:connections``)\n\n.. code-block:: python\n\n auth0.connections.all()\n\nWhich will yield a list of connections similar to this:\n\n.. code-block:: python\n\n [\n {\n 'enabled_clients': [u'rOsnWgtw23nje2QCDuDJNVpxlsCylSLE'],\n 'id': u'con_ErZf9LpXQDE0cNBr',\n 'name': u'Amazon-Connection',\n 'options': {u'profile': True, u'scope': [u'profile']},\n 'strategy': u'amazon'\n },\n {\n 'enabled_clients': [u'rOsnWgtw23nje2QCDuDJNVpxlsCylSLE'],\n 'id': u'con_i8qF5DPiZ3FdadwJ',\n 'name': u'Username-Password-Authentication',\n 'options': {u'brute_force_protection': True},\n 'strategy': u'auth0'\n }\n ]\n\nModifying an existing connection is equally as easy. Let's change the name\nof connection ``'con_ErZf9LpXQDE0cNBr'``.\n(The token will need scope: ``update:connections`` to make this one work)\n\n.. code-block:: python\n\n auth0.connections.update('con_ErZf9LpXQDE0cNBr', {'name': 'MyNewName'})\n\nThat's it! Using the ``get`` method of the connections endpoint we can verify\nthat the rename actually happened.\n\n.. code-block:: python\n\n modified_connection = auth0.connections.get('con_ErZf9LpXQDE0cNBr')\n\nWhich returns something like this\n\n.. code-block:: python\n\n {\n 'enabled_clients': [u'rOsnWgtw23nje2QCDuDJNVpxlsCylSLE'],\n 'id': u'con_ErZf9LpXQDE0cNBr',\n 'name': u'MyNewName',\n 'options': {u'profile': True, u'scope': [u'profile']},\n 'strategy': u'amazon'\n }\n\nSuccess!\n\nAll endpoints follow a similar structure to ``connections``, and try to follow as\nclosely as possible the `API documentation `_.\n\n========================\nAuthentication SDK Usage\n========================\n\nThe Authentication SDK is divided into components mimicking the structure of the\n`API's documentation `_.\nFor example:\n\n.. code-block:: python\n\n from auth0.v3.authentication import Social\n\n social = Social('myaccount.auth0.com')\n\n s.login(client_id='...', access_token='...', connection='facebook')\n\nAvailable Management Endpoints\n==============================\n\n- Blacklists() ( ``Auth0().blacklists`` )\n- Clients() ( ``Auth0().clients`` )\n- ClientGrants() ( ``Auth0().client_grants`` )\n- Connections() ( ``Auth0().connections`` )\n- DeviceCredentials() ( ``Auth0().device_credentials`` )\n- Emails() ( ``Auth0().emails`` )\n- EmailTemplates() ( ``Auth0().email_templates`` )\n- Guardian() ( ``Auth0().guardian`` )\n- Jobs() ( ``Auth0().jobs`` )\n- Logs() ( ``Auth0().logs`` )\n- ResourceServers() (``Auth0().resource_servers`` )\n- Rules() ( ``Auth0().rules`` )\n- Stats() ( ``Auth0().stats`` )\n- Tenants() ( ``Auth0().tenants`` )\n- Tickets() ( ``Auth0().tickets`` )\n- UserBlocks() (``Auth0().user_blocks`` )\n- Users() ( ``Auth0().users`` )\n- UsersByEmail() ( ``Auth0().users_by_email`` )\n\nAvailable Authentication Endpoints\n==================================\n\n- Users ( ``authentication.Users`` )\n- Database ( ``authentication.Database`` )\n- Delegated ( ``authentication.Delegated`` )\n- Enterprise ( ``authentication.Enterprise`` )\n- Passwordless ( ``authentication.Passwordless`` )\n- Social ( ``authentication.Social`` )\n- API Authorization - Get Token ( ``authentication.GetToken``)\n- API Authorization - Authorization Code Grant (``authentication.AuthorizeClient``)\n \u00a0 \u00a0\n\n==========\nChange Log\n==========\n\nPlease see `CHANGELOG.md `_.\n\n===============\nIssue Reporting\n===============\n\nIf you have found a bug or if you have a feature request, please report them at this repository issues section.\nPlease do not report security vulnerabilities on the public GitHub issue tracker.\nThe `Responsible Disclosure Program `_ details the procedure for disclosing security issues.\n\n======\nAuthor\n======\n\n`Auth0`_\n\n=======\nLicense\n=======\n\nThis project is licensed under the MIT license. See the `LICENSE `_\nfile for more info.\n\n.. _Auth0: https://auth0.com\n\n.. |pypi| image:: https://img.shields.io/pypi/v/auth0-python.svg?style=flat-square&label=latest%20version\n :target: https://pypi.org/project/auth0-python/\n :alt: Latest version released on PyPI\n\n.. |build| image:: https://img.shields.io/circleci/project/github/auth0/auth0-python.svg?style=flat-square&label=circleci\n :target: https://circleci.com/gh/auth0/auth0-python\n :alt: Build status\n\n.. |coverage| image:: https://img.shields.io/codecov/c/github/auth0/auth0-python.svg?style=flat-square&label=codecov\n :target: https://codecov.io/gh/auth0/auth0-python\n :alt: Test coverage\n\n.. |license| image:: https://img.shields.io/:license-mit-blue.svg?style=flat-square\n :target: https://opensource.org/licenses/MIT\n :alt: License\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/auth0/auth0-python", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "auth0-python", "package_url": "https://pypi.org/project/auth0-python/", "platform": "", "project_url": "https://pypi.org/project/auth0-python/", "project_urls": { "Homepage": "https://github.com/auth0/auth0-python" }, "release_url": "https://pypi.org/project/auth0-python/3.9.1/", "requires_dist": [ "requests", "mock ; extra == 'test'" ], "requires_python": ">=2.7, !=3.0.*, !=3.1.*", "summary": "Auth0 Python SDK", "version": "3.9.1" }, "last_serial": 5615717, "releases": { "2.0.0": [ { "comment_text": "built for Darwin-15.2.0", "digests": { "md5": "c743b0cede4e26405c2af0eba32b9210", "sha256": "e7fb854a3123985cc62b2de0b228ad98b9d32abe14565f969262f3136e859882" }, "downloads": -1, "filename": "auth0-python-2.0.0.macosx-10.10-x86_64.tar.gz", "has_sig": false, "md5_digest": "c743b0cede4e26405c2af0eba32b9210", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 31097, "upload_time": "2016-01-27T16:48:49", "url": "https://files.pythonhosted.org/packages/af/42/e8c6889eb54316eb8edb2fca628f7f433fc2120aa394e376522b2e3ffd66/auth0-python-2.0.0.macosx-10.10-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "40ed295efd3a00a545b35a34fb20fcdd", "sha256": "21a4f2e06fb6cc6e4d33a459b7a55e6543b376d6a3d5141f9943e1e862ff6f40" }, "downloads": -1, "filename": "auth0-python-2.0.0.tar.gz", "has_sig": false, "md5_digest": "40ed295efd3a00a545b35a34fb20fcdd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15857, "upload_time": "2016-01-27T16:48:44", "url": "https://files.pythonhosted.org/packages/a5/15/039b3cc0ebb54b33d77e61e9c1567a2d00529c8c789cd539a7d4f42ccbe6/auth0-python-2.0.0.tar.gz" } ], "2.0.0b1": [], "2.0.0b2": [ { "comment_text": "built for Darwin-15.0.0", "digests": { "md5": "07c5c4a6fddb1ba453e76d24cf89ae71", "sha256": "cbf475e7b82bfabc999ac95a07ae4c1b6c09aeb09b0b32c80e08056cd71a5503" }, "downloads": -1, "filename": "auth0-python-2.0.0b2.macosx-10.10-x86_64.tar.gz", "has_sig": false, "md5_digest": "07c5c4a6fddb1ba453e76d24cf89ae71", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 22006, "upload_time": "2015-11-25T15:54:32", "url": "https://files.pythonhosted.org/packages/4d/37/55fbad175efd68f3a62936269eaf0ed2d97e814fdfdb300fa2da0666bf18/auth0-python-2.0.0b2.macosx-10.10-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "772c88546f399328f110220d5be0fea7", "sha256": "c7ccdb6e67a1c0a07caff7cc505908dd07c93f88281b48758c6f183b5e53ceb5" }, "downloads": -1, "filename": "auth0-python-2.0.0b2.tar.gz", "has_sig": false, "md5_digest": "772c88546f399328f110220d5be0fea7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10774, "upload_time": "2015-11-25T15:54:20", "url": "https://files.pythonhosted.org/packages/8d/82/7eea77f3ef697cd9359845aa28faee73a8b3a630405ea13c28c6c0e048ce/auth0-python-2.0.0b2.tar.gz" } ], "2.0.1": [ { "comment_text": "built for Darwin-15.6.0", "digests": { "md5": "71019e36c481affae683d5178be62738", "sha256": "2dec8407e55c4e152f0b5055b729724be336cf972abe0af1386a625ee06dc27c" }, "downloads": -1, "filename": "auth0-python-2.0.1.macosx-10.11-intel.tar.gz", "has_sig": false, "md5_digest": "71019e36c481affae683d5178be62738", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 31034, "upload_time": "2016-08-19T17:56:11", "url": "https://files.pythonhosted.org/packages/fc/11/bf67a7a72fe3500cdb9f0ef26745d49f642b23e37357caaff9ab8a3414f6/auth0-python-2.0.1.macosx-10.11-intel.tar.gz" }, { "comment_text": "", "digests": { "md5": "a51a801d73a7f09dd9660f0452e8c488", "sha256": "fa8025f3e552a0a61219799e1dffa9e81a184c1fa7c0d0e2d46be0d47425208f" }, "downloads": -1, "filename": "auth0-python-2.0.1.tar.gz", "has_sig": false, "md5_digest": "a51a801d73a7f09dd9660f0452e8c488", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15823, "upload_time": "2016-08-19T17:56:08", "url": "https://files.pythonhosted.org/packages/8d/5d/010feb9498b3ee4681d03b5f63a5c732a02d3ed1775dc1d31b2aa62c3033/auth0-python-2.0.1.tar.gz" } ], "3.0.0": [ { "comment_text": "built for Darwin-16.5.0", "digests": { "md5": "75db4eb8a080a7270edee195b6d8f258", "sha256": "d710a5e1a96365d0d7b1b8101aec70246afd17f2c37979d0edc336f085e1106e" }, "downloads": -1, "filename": "auth0-python-3.0.0.macosx-10.12-intel.tar.gz", "has_sig": false, "md5_digest": "75db4eb8a080a7270edee195b6d8f258", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 41992, "upload_time": "2017-04-20T13:54:33", "url": "https://files.pythonhosted.org/packages/35/9d/16d28ad1488b1eb4c45c919f7f0b0bc268ad21ce8ef21e095b13560f33df/auth0-python-3.0.0.macosx-10.12-intel.tar.gz" }, { "comment_text": "", "digests": { "md5": "1770aca0779d4afb40acd40bf4d2d4d8", "sha256": "b88a030cd9602623395bdd089c74d639465952fd078f03435995011eb49f9464" }, "downloads": -1, "filename": "auth0-python-3.0.0.tar.gz", "has_sig": false, "md5_digest": "1770aca0779d4afb40acd40bf4d2d4d8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20807, "upload_time": "2017-04-20T13:54:30", "url": "https://files.pythonhosted.org/packages/13/31/f807152fd300b1642ba0520d7f029c4b12de3d98ad7d6a48018fb0818e2a/auth0-python-3.0.0.tar.gz" } ], "3.1.0": [ { "comment_text": "built for Darwin-16.6.0", "digests": { "md5": "1438f2818dfc6538f47cf4be806b5dfb", "sha256": "1276bb5e1a78f3992ce71759223b9c0ac486036e7ea590dcfd2c814b83ffa015" }, "downloads": -1, "filename": "auth0-python-3.1.0.macosx-10.12-x86_64.tar.gz", "has_sig": false, "md5_digest": "1438f2818dfc6538f47cf4be806b5dfb", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 43233, "upload_time": "2017-06-27T19:23:02", "url": "https://files.pythonhosted.org/packages/f0/5c/240139bc14b06f4e0c920ed704491fcde6e56dd8b8abc36e67db2e480999/auth0-python-3.1.0.macosx-10.12-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "16eaf8f42eec4ac6b720967ee4e98831", "sha256": "57569f032267fde3cbf8bf2b33bce42af51f0ccfa583b7a20e6238e84b95a315" }, "downloads": -1, "filename": "auth0-python-3.1.0.tar.gz", "has_sig": false, "md5_digest": "16eaf8f42eec4ac6b720967ee4e98831", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21318, "upload_time": "2017-06-27T19:23:00", "url": "https://files.pythonhosted.org/packages/01/a8/409639c1c1d52d87788054521880f210e2d143a16c0f24ac38ac299c2bb4/auth0-python-3.1.0.tar.gz" } ], "3.1.1": [ { "comment_text": "built for Darwin-16.6.0", "digests": { "md5": "8853ace474a6be011fefecfc17f0e65d", "sha256": "50f3cabada86e1570312309551e5af5c0cbe177de7dcd43ac15343f541a8bb9b" }, "downloads": -1, "filename": "auth0-python-3.1.1.macosx-10.12-x86_64.tar.gz", "has_sig": false, "md5_digest": "8853ace474a6be011fefecfc17f0e65d", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 43321, "upload_time": "2017-06-28T19:20:25", "url": "https://files.pythonhosted.org/packages/23/6a/a4687b766b04835fb86d50d4884e144e3877321f2e8003409a7caa825c3f/auth0-python-3.1.1.macosx-10.12-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "5d71fc4bcfd5c100465923f5492ab6d8", "sha256": "e040bf8b28ac61bd886b6a75080aeb404dda54132405030100b7ed6afa182bd7" }, "downloads": -1, "filename": "auth0-python-3.1.1.tar.gz", "has_sig": false, "md5_digest": "5d71fc4bcfd5c100465923f5492ab6d8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21324, "upload_time": "2017-06-28T19:20:23", "url": "https://files.pythonhosted.org/packages/33/e1/5429f559ca730216c5631ab9ce9c6c25ca7b9f9271de58ae8115d33674b5/auth0-python-3.1.1.tar.gz" } ], "3.1.2": [ { "comment_text": "built for Darwin-16.6.0", "digests": { "md5": "b54e15f1cdf3f207e868760a3aa75d8e", "sha256": "a078028b756fe8d089f0351f1e2de7941b629cf0e346ce55deeef39c10d68606" }, "downloads": -1, "filename": "auth0-python-3.1.2.macosx-10.12-x86_64.tar.gz", "has_sig": false, "md5_digest": "b54e15f1cdf3f207e868760a3aa75d8e", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 43564, "upload_time": "2017-07-18T15:37:13", "url": "https://files.pythonhosted.org/packages/26/7f/9c6802bd14bd01a7c90768a2b7989715cdb6f44789d6e3a3a2de8ef6ae6b/auth0-python-3.1.2.macosx-10.12-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "6df9c17d6d4e5b282a5ab8d689ebdb79", "sha256": "b7b5291918895880f087cc279724125acf376a8557097baa1f3b3f3a91b35e2f" }, "downloads": -1, "filename": "auth0-python-3.1.2.tar.gz", "has_sig": false, "md5_digest": "6df9c17d6d4e5b282a5ab8d689ebdb79", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21454, "upload_time": "2017-07-18T15:37:11", "url": "https://files.pythonhosted.org/packages/6c/bf/6933f657ee8129542ac6a32b7ce1f7679723e074b462d95aed23642d9bf3/auth0-python-3.1.2.tar.gz" } ], "3.1.3": [ { "comment_text": "built for Linux-4.9.49-moby-x86_64-with-glibc2.2.5", "digests": { "md5": "db5993030ca562c0e57f967f5e6be52e", "sha256": "e03eed1393ae8535d5e243e4c9b3c831987374f2d37b27cc53f93fe795802f5f" }, "downloads": -1, "filename": "auth0-python-3.1.3.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "db5993030ca562c0e57f967f5e6be52e", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 48569, "upload_time": "2017-10-06T18:02:21", "url": "https://files.pythonhosted.org/packages/69/01/957377826c2b59311159cdc4049f673c2c5370b532b0f0fe9e0ab53c026f/auth0-python-3.1.3.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "c9422110e08fcfd74fd6910dbad4c296", "sha256": "dc37a4e79722755789b3f599192c1167a4d33df898e6a354893566707e530922" }, "downloads": -1, "filename": "auth0-python-3.1.3.tar.gz", "has_sig": false, "md5_digest": "c9422110e08fcfd74fd6910dbad4c296", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21524, "upload_time": "2017-10-06T18:02:17", "url": "https://files.pythonhosted.org/packages/e9/60/00f11f616f99011ed2bad3949f0c7097f9bbb17ad14bfa182649fd8e642a/auth0-python-3.1.3.tar.gz" } ], "3.1.4": [ { "comment_text": "built for Linux-4.9.49-moby-x86_64-with-glibc2.2.5", "digests": { "md5": "c665bfc3601746ac15affc3b610b0341", "sha256": "2c1d003581af482ef398fcd5a33ba9dcd7788ef2e09c9d826d769d4cd17f62aa" }, "downloads": -1, "filename": "auth0-python-3.1.4.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "c665bfc3601746ac15affc3b610b0341", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 48777, "upload_time": "2017-10-21T00:47:08", "url": "https://files.pythonhosted.org/packages/4d/b5/427686f4b9871a5fecde2af726b5ce9d27decf54864c9a929e807f47ca9e/auth0-python-3.1.4.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "d08886f3f727b1e05f03fc4ba466e680", "sha256": "0e5279fa36da23873f5542eb73dd6c8072adf7af3c96b92cdfbbd68e2aa6a671" }, "downloads": -1, "filename": "auth0-python-3.1.4.tar.gz", "has_sig": false, "md5_digest": "d08886f3f727b1e05f03fc4ba466e680", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21607, "upload_time": "2017-10-21T00:47:05", "url": "https://files.pythonhosted.org/packages/78/e6/8061ee5f00c0cb1bba98d05476ed39d33a3ac3242591c16c6cdc6839a7c6/auth0-python-3.1.4.tar.gz" } ], "3.2.0": [ { "comment_text": "", "digests": { "md5": "1fac7c165fb4d5ab8144770e500198e3", "sha256": "57f90de2462436d4ae0c37758d261e4b4a18787e3693d166224a782e589c8eb2" }, "downloads": -1, "filename": "auth0-python-3.2.0.macosx-10.13-intel.tar.gz", "has_sig": false, "md5_digest": "1fac7c165fb4d5ab8144770e500198e3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48177, "upload_time": "2018-04-27T19:39:25", "url": "https://files.pythonhosted.org/packages/fe/45/68651f64b6be19728687d51bb360c90bc509d3e9ab66f923b76b880e4da7/auth0-python-3.2.0.macosx-10.13-intel.tar.gz" }, { "comment_text": "", "digests": { "md5": "237de6f8c6512fdccbd26cabe3b72da5", "sha256": "1f7e101bf25ad66cfa6b9f43b81971d3f07d3dc956b5983f685ff96f291d4737" }, "downloads": -1, "filename": "auth0_python-3.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "237de6f8c6512fdccbd26cabe3b72da5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 47806, "upload_time": "2018-04-27T19:49:01", "url": "https://files.pythonhosted.org/packages/7c/d7/84d6f9bd713b87aa9bc8076cc5e37e0dbb26722bc7065ac1dfe56fdbb434/auth0_python-3.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "548baab57c68b4335365c9f95435e0af", "sha256": "baab32ee324f0c37e297d1468a3915d5134dbdb63daf01df2a68b96f8f92c6d1" }, "downloads": -1, "filename": "auth0_python-3.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "548baab57c68b4335365c9f95435e0af", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 47802, "upload_time": "2018-04-27T19:49:03", "url": "https://files.pythonhosted.org/packages/23/d8/7747143412ebc16582a355ac43f676a021446a82fae3c65bd424fb59e522/auth0_python-3.2.0-py3-none-any.whl" } ], "3.2.2": [ { "comment_text": "", "digests": { "md5": "411d40c1d05f5a00b28c069ebe00c0a8", "sha256": "56887ef601cc818dcede1e7959ac754c276450b50990a6ab57b94cc1430bfbc8" }, "downloads": -1, "filename": "auth0-python-3.2.2.macosx-10.13-x86_64.tar.gz", "has_sig": false, "md5_digest": "411d40c1d05f5a00b28c069ebe00c0a8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51843, "upload_time": "2018-05-09T14:03:00", "url": "https://files.pythonhosted.org/packages/ed/92/7e32358504dd213afc323b910d2f77c01a3ced91206afe7d267f17c366d9/auth0-python-3.2.2.macosx-10.13-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "7b92dd4d9404c4684d474bd6d6ec9580", "sha256": "559d4bf454ddc22e7f8b24293b0ec655ecb73afd5f88e99bd03600d674d0db23" }, "downloads": -1, "filename": "auth0_python-3.2.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7b92dd4d9404c4684d474bd6d6ec9580", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 47648, "upload_time": "2018-05-09T14:06:54", "url": "https://files.pythonhosted.org/packages/e8/be/9e53615e9e4e6c945e3b77cc55ff9bef7e504ff39be2b0f598657a2be0d2/auth0_python-3.2.2-py2.py3-none-any.whl" } ], "3.3.0": [ { "comment_text": "", "digests": { "md5": "e5ef1907ecb815f782951bd9d6e202a3", "sha256": "b5d264cdd8e9ee40f21e331a97544339bf87159c36d4ed61a805b5779650566f" }, "downloads": -1, "filename": "auth0-python-3.3.0.macosx-10.13-x86_64.tar.gz", "has_sig": false, "md5_digest": "e5ef1907ecb815f782951bd9d6e202a3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55373, "upload_time": "2018-07-12T21:36:29", "url": "https://files.pythonhosted.org/packages/ea/7c/621c90b28855ae0eb8477d04f03a10fae41eeb3b2df9beef9d26f8beb245/auth0-python-3.3.0.macosx-10.13-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "dfdfd27df3e2c72d33aa63737a2e66fb", "sha256": "c8298efe8c6b3cc983069c0c7fa9967ec97c8e99eed4e958538bf9fe2a0a43a3" }, "downloads": -1, "filename": "auth0_python-3.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "dfdfd27df3e2c72d33aa63737a2e66fb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 52168, "upload_time": "2018-07-12T21:36:27", "url": "https://files.pythonhosted.org/packages/33/06/9d18cd4928445952f687fdfe7c84c0d64dc338f762fc162b92b304288c2b/auth0_python-3.3.0-py2.py3-none-any.whl" } ], "3.4.0": [ { "comment_text": "built for Darwin-17.7.0", "digests": { "md5": "6ddef7e8ce03176cdceb9fecff1fce8f", "sha256": "a989bf70e812193d2fb137c983892230f1dbeeaf0dc95df13129cf45d44ce9af" }, "downloads": -1, "filename": "auth0-python-3.4.0.macosx-10.13-x86_64.tar.gz", "has_sig": false, "md5_digest": "6ddef7e8ce03176cdceb9fecff1fce8f", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 63246, "upload_time": "2018-11-09T17:38:02", "url": "https://files.pythonhosted.org/packages/49/6a/b8f187df0dd5818bfdf10601056f68b4258e2f23ab633cf9fa72e7ab3221/auth0-python-3.4.0.macosx-10.13-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "92684a27e7c09085d4a02879b9dc9081", "sha256": "727a1886c59e424b92e544fa897f04da7450dd0ff43b9a0263b4436d2868968b" }, "downloads": -1, "filename": "auth0-python-3.4.0.tar.gz", "has_sig": false, "md5_digest": "92684a27e7c09085d4a02879b9dc9081", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30015, "upload_time": "2018-11-09T17:37:59", "url": "https://files.pythonhosted.org/packages/bb/26/df0d52c8f7daa938f30cf9aaed7e6b4347bb6b956ca96fc6a0c7e0e5e8c1/auth0-python-3.4.0.tar.gz" } ], "3.5.0": [ { "comment_text": "", "digests": { "md5": "1c4169a7499e2233129edcc0ac14f97e", "sha256": "86a6b436bd7b60fe06d44788ec162db2afc4a20796f195a36f5e1a4813645fd4" }, "downloads": -1, "filename": "auth0_python-3.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1c4169a7499e2233129edcc0ac14f97e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*", "size": 59939, "upload_time": "2018-12-27T19:08:48", "url": "https://files.pythonhosted.org/packages/e5/c1/af6ad936ff5072000eb064730fa4bd467abd78ace68497eba9bcd59f27c7/auth0_python-3.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "18cc730b609467bbccea9942ed2397fc", "sha256": "d96aeb734375c8f45c65837d5ba385a42e13f52f992f0a7ad7b43d38fcdd9016" }, "downloads": -1, "filename": "auth0-python-3.5.0.tar.gz", "has_sig": false, "md5_digest": "18cc730b609467bbccea9942ed2397fc", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*", "size": 30882, "upload_time": "2018-12-27T19:08:50", "url": "https://files.pythonhosted.org/packages/84/3d/c599f48749467220399131ea5c39163aaa1782475907f1a06e41f3a2c887/auth0-python-3.5.0.tar.gz" } ], "3.6.0": [ { "comment_text": "", "digests": { "md5": "dfc1d651e5f8cb96b121d3b3e333ece8", "sha256": "b738b2ce17ad3f3748641f3a2d29b9ef6c51451e249489333c394e4401a4ba47" }, "downloads": -1, "filename": "auth0_python-3.6.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "dfc1d651e5f8cb96b121d3b3e333ece8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*", "size": 64527, "upload_time": "2019-01-04T16:15:54", "url": "https://files.pythonhosted.org/packages/71/3d/b159c37a4b69fd140b0edd52de3fa8aa5df4c55b1f3fe30c00d41ad11d37/auth0_python-3.6.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9c9906be63423de5b22eb4fa53022ccc", "sha256": "53acb7c38574db57a163d25c33b17bed1a26e203abf114e5bbb92b998c9a47b9" }, "downloads": -1, "filename": "auth0-python-3.6.0.tar.gz", "has_sig": false, "md5_digest": "9c9906be63423de5b22eb4fa53022ccc", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*", "size": 32309, "upload_time": "2019-01-04T16:15:58", "url": "https://files.pythonhosted.org/packages/38/55/95b4d490c0a96153b508fcd0b3002bd0112d4f91ecd885b2f4d22aaca5fb/auth0-python-3.6.0.tar.gz" } ], "3.6.1": [ { "comment_text": "", "digests": { "md5": "7c3a0c7fee20dd1d8d1b43115ee370a1", "sha256": "92f6906ec475da984034fbeac2c00c353430570c9d4e0f7cece5854a96429bd1" }, "downloads": -1, "filename": "auth0_python-3.6.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7c3a0c7fee20dd1d8d1b43115ee370a1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*", "size": 66637, "upload_time": "2019-01-04T19:57:05", "url": "https://files.pythonhosted.org/packages/f0/9b/577e51e66668d2cd466e776f6a8885a237da9be99b984b1566ba6691f59b/auth0_python-3.6.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7b2623994c055d89b15253150fb700a7", "sha256": "83234aec79b19546c679d495ee925dd77a4ce7a089d9e2386d5f119f1a35f8b3" }, "downloads": -1, "filename": "auth0-python-3.6.1.tar.gz", "has_sig": false, "md5_digest": "7b2623994c055d89b15253150fb700a7", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*", "size": 32831, "upload_time": "2019-01-04T19:57:07", "url": "https://files.pythonhosted.org/packages/0f/09/233f8b5d5231a0dd7a0b3ce0493fd9a8ab4799ea91f6dff68523c900914b/auth0-python-3.6.1.tar.gz" } ], "3.7.0": [ { "comment_text": "", "digests": { "md5": "769cb69cc08ae43ab9f75875e136fa1f", "sha256": "ba22c45009983ae7e2d6930e59a8c8e83d8400e32fb20f44fff3f0b779451473" }, "downloads": -1, "filename": "auth0_python-3.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "769cb69cc08ae43ab9f75875e136fa1f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*", "size": 66664, "upload_time": "2019-04-04T15:43:08", "url": "https://files.pythonhosted.org/packages/3d/74/c1a2ce8a229641d90081a2b79c85ff5acc100ccb016b125ed29cc2ad35e9/auth0_python-3.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "59050df9c304de4a511241998ff1ff89", "sha256": "7434861d1cc51a178cf63f0dd8fc7c089972c61762759abc539f9137458ba505" }, "downloads": -1, "filename": "auth0-python-3.7.0.tar.gz", "has_sig": false, "md5_digest": "59050df9c304de4a511241998ff1ff89", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*", "size": 32864, "upload_time": "2019-04-04T15:43:10", "url": "https://files.pythonhosted.org/packages/fc/bb/12456f18f7e2dcb548d1c7c95e4e0458bf61c57ff43d63ae02339270c7d8/auth0-python-3.7.0.tar.gz" } ], "3.7.1": [ { "comment_text": "", "digests": { "md5": "fa892e7d1e33b9da14bd5fa629c596a6", "sha256": "609e347ea3c4fb8b23e42cba7da4259051d7fd00cae3333427e233a040f7d0e1" }, "downloads": -1, "filename": "auth0_python-3.7.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fa892e7d1e33b9da14bd5fa629c596a6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*", "size": 65199, "upload_time": "2019-04-12T19:35:23", "url": "https://files.pythonhosted.org/packages/1e/10/29c56e8d635e8b40233ee1c246905c2fcab9cc51d9c36be3b5fe49a52321/auth0_python-3.7.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1b10bad44cb5fbc3ed7886fc37389aef", "sha256": "e04cc8812a721c1bd96bf25b405ada6b52c4f3acee1ffc03ffe9f2a527a41751" }, "downloads": -1, "filename": "auth0-python-3.7.1.tar.gz", "has_sig": false, "md5_digest": "1b10bad44cb5fbc3ed7886fc37389aef", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*", "size": 32716, "upload_time": "2019-04-12T19:35:25", "url": "https://files.pythonhosted.org/packages/ee/09/681920ce51dc149e4fea54814f71ea69dba588d931de6de86fdc650c302a/auth0-python-3.7.1.tar.gz" } ], "3.7.2": [ { "comment_text": "", "digests": { "md5": "4ab7a0e0da819e3174dd0b8d4cdea3c6", "sha256": "d70f3e666787b69cfeaf6b270c1050364da0e65308a949f3255bb1fe5553f2be" }, "downloads": -1, "filename": "auth0_python-3.7.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4ab7a0e0da819e3174dd0b8d4cdea3c6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*", "size": 65206, "upload_time": "2019-05-02T20:59:28", "url": "https://files.pythonhosted.org/packages/fd/4b/123e8496c7753849dafcbe33e6313a29abd1d8d6063aaedd64dd980e8f9c/auth0_python-3.7.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8495a16be1dbd78a53254dbf11779311", "sha256": "098ce1275f1e276e45c7d7fa4e8af1257993b2ed3ec19a37090230df3d6296c5" }, "downloads": -1, "filename": "auth0-python-3.7.2.tar.gz", "has_sig": false, "md5_digest": "8495a16be1dbd78a53254dbf11779311", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*", "size": 32743, "upload_time": "2019-05-02T20:59:29", "url": "https://files.pythonhosted.org/packages/2c/a1/a6b9e35cfdb1fb71652e088582b284162de99728c74c7420f828d8eb30b3/auth0-python-3.7.2.tar.gz" } ], "3.8.0": [ { "comment_text": "", "digests": { "md5": "9f09b7fd086668104de8e0198dd742ca", "sha256": "1ac5b7b52d0a526bf748f5e82dac0935e5bfd264d4b8ee94f3942c773b11084e" }, "downloads": -1, "filename": "auth0_python-3.8.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9f09b7fd086668104de8e0198dd742ca", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*", "size": 65173, "upload_time": "2019-06-07T18:55:36", "url": "https://files.pythonhosted.org/packages/de/fc/b883287e2766198eed954d849712089168f0de421e763456384e0edde65b/auth0_python-3.8.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c8864da7f7edce66bed7a667041d0f11", "sha256": "f9a6a6117beb1ad21666ffe6e56d3f1d03fb6de55f48cf5cf5f1c61ecb75d37b" }, "downloads": -1, "filename": "auth0-python-3.8.0.tar.gz", "has_sig": false, "md5_digest": "c8864da7f7edce66bed7a667041d0f11", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*", "size": 32733, "upload_time": "2019-06-07T18:55:38", "url": "https://files.pythonhosted.org/packages/83/b3/19c3bcd4f40aabdf9681937c54effa3efb42e85e2b56508af1434010ff9b/auth0-python-3.8.0.tar.gz" } ], "3.8.1": [ { "comment_text": "", "digests": { "md5": "6a5fdf12e9550dda7cb4f3a56ecd7fe1", "sha256": "cc92656db2c5fe158e5376049d431924c4788aa28668f62b6e28943c406407c7" }, "downloads": -1, "filename": "auth0_python-3.8.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6a5fdf12e9550dda7cb4f3a56ecd7fe1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*", "size": 64884, "upload_time": "2019-06-14T20:26:10", "url": "https://files.pythonhosted.org/packages/35/18/1af2870260435ef4ea241c8660c782306f6ba430f6195dfd65afe7b14f9d/auth0_python-3.8.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e4f8c9d68ad2ee4844c9304401f8df46", "sha256": "10e5690dbe7ed649f0a61b0017c908529fa81b76a3217caed64aeeb5fb269b30" }, "downloads": -1, "filename": "auth0-python-3.8.1.tar.gz", "has_sig": false, "md5_digest": "e4f8c9d68ad2ee4844c9304401f8df46", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*", "size": 32846, "upload_time": "2019-06-14T20:26:11", "url": "https://files.pythonhosted.org/packages/75/01/d51084971d9418b4b3ae583620d4ec2a69bde299e24ddf9ff1fc1ff584a4/auth0-python-3.8.1.tar.gz" } ], "3.9.0": [ { "comment_text": "", "digests": { "md5": "cd264bafb81de911782a94359d09674f", "sha256": "c27d826896e590dcf43fc0ec94bcd999fcec7bdf3283d6463b4ee98c2ef0e411" }, "downloads": -1, "filename": "auth0_python-3.9.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cd264bafb81de911782a94359d09674f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*", "size": 67646, "upload_time": "2019-07-02T20:05:58", "url": "https://files.pythonhosted.org/packages/03/c4/ea41de1350efd1bdb528946e75467986936ef9b9093ff3ae4c0e6c44ce6d/auth0_python-3.9.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7f6b0ef6d528f91de036b45d77b3fdf7", "sha256": "91e775715144c3726cba50e641b8c71cc50ec22c75959e65cf2ca4b6c803b2c0" }, "downloads": -1, "filename": "auth0-python-3.9.0.tar.gz", "has_sig": false, "md5_digest": "7f6b0ef6d528f91de036b45d77b3fdf7", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*", "size": 34214, "upload_time": "2019-07-02T20:06:00", "url": "https://files.pythonhosted.org/packages/4a/b4/bc31f8c780cc4f0f0c5b5f3afad93438e6376a41bbf49dc60ba79f8f8fb0/auth0-python-3.9.0.tar.gz" } ], "3.9.1": [ { "comment_text": "", "digests": { "md5": "e8183c2013b53cc644720ec168fa5a17", "sha256": "bdeb7b0c5e74dd91aab67af9e4bf466a30df34d1eb5f7ea638db542108a29a51" }, "downloads": -1, "filename": "auth0_python-3.9.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e8183c2013b53cc644720ec168fa5a17", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*", "size": 67645, "upload_time": "2019-07-31T21:28:54", "url": "https://files.pythonhosted.org/packages/f9/cf/7cc32b233da2af3877b31e36ca22a046da73096a9f41065b5388c57d15a7/auth0_python-3.9.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3cdeba2a633d463a89868f34f8e97483", "sha256": "c2fdc3ff230638a2776d2b3761e787ca93dc33a26f841504fc260f947256f453" }, "downloads": -1, "filename": "auth0-python-3.9.1.tar.gz", "has_sig": false, "md5_digest": "3cdeba2a633d463a89868f34f8e97483", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*", "size": 34219, "upload_time": "2019-07-31T21:28:56", "url": "https://files.pythonhosted.org/packages/6f/1a/57a3c6744aa39de5b41555d2bd9c9956bbb6d825928cdfcfdf853f74c9fc/auth0-python-3.9.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "e8183c2013b53cc644720ec168fa5a17", "sha256": "bdeb7b0c5e74dd91aab67af9e4bf466a30df34d1eb5f7ea638db542108a29a51" }, "downloads": -1, "filename": "auth0_python-3.9.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e8183c2013b53cc644720ec168fa5a17", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*", "size": 67645, "upload_time": "2019-07-31T21:28:54", "url": "https://files.pythonhosted.org/packages/f9/cf/7cc32b233da2af3877b31e36ca22a046da73096a9f41065b5388c57d15a7/auth0_python-3.9.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3cdeba2a633d463a89868f34f8e97483", "sha256": "c2fdc3ff230638a2776d2b3761e787ca93dc33a26f841504fc260f947256f453" }, "downloads": -1, "filename": "auth0-python-3.9.1.tar.gz", "has_sig": false, "md5_digest": "3cdeba2a633d463a89868f34f8e97483", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*", "size": 34219, "upload_time": "2019-07-31T21:28:56", "url": "https://files.pythonhosted.org/packages/6f/1a/57a3c6744aa39de5b41555d2bd9c9956bbb6d825928cdfcfdf853f74c9fc/auth0-python-3.9.1.tar.gz" } ] }