{ "info": { "author": "Oliver Herrera", "author_email": "oliver@ohm2.cl", "bugtrack_url": null, "classifiers": [ "Environment :: Web Environment", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: Dynamic Content" ], "description": "django-ohm2-handlers-light source code\n=============================\n\n\nInstallation:\n\n#. Create a Python +3.5 virtualenv\n\n#. Install dependencies::\n\n - ohm2_handlers_light\n - rest_framework\n\n#. Add 'ohm2_accounts_light' to installed apps::\n\n INSTALLED_APPS = [\n '''\n 'ohm2_accounts_light',\n ...\n ]\n\n#. Create tables::\n\n ./manage.py migrate\n\n\n\n\nModels\n------\n\nhandlers_light comes with two basic models::\n\t#from ohm2_handlers_light.models import BaseModel\n\n\tclass PasswordReset(BaseModel):\n\t\tuser = models.ForeignKey(User)\n\n\t\tlast_sent_date = models.DateTimeField(null = True, blank = True, default = None)\n\t\tactivation_date = models.DateTimeField(null = True, blank = True, default = None)\n\t\tip_address = models.GenericIPAddressField(null = True, blank = True, default = \"\")\n\t\tcode = models.CharField(max_length = settings.STRING_NORMAL, unique = True)\n\n\n\t\tdef send_again(self):\n\t\t\tif self.last_sent_date and not h_utils.is_older_than_now(self.last_sent_date, seconds = settings.MINIMUM_PASSWORD_RESET_DELAY):\n\t\t\t\treturn False\n\t\t\treturn True\n\n\t\tdef __str__(self):\n\t\t\treturn self.user.username\n\n\nPipelines\n---------\n\nUse this pipelines to handle cascade-functions.\n\nSignup (ohm2_accounts_light.pipelines.signup.default)::\n\t\n\t# 1: user = ohm2_accounts_light_utils.create_user(username, email, password)\n\t# 2: ohm2_accounts_light_utils.run_signup_pipeline(request, user, username, email, password)\n\n\nLogin (ohm2_accounts_light.pipelines.login.default)::\n\t\n\t# 1: auth_user = authenticate(username, password)\n\t# 2: ohm2_accounts_light_utils.run_login_pipeline(request, auth_user)\n\n\t\nLogout (ohm2_accounts_light.pipelines.logout.default)::\n\t\n\t# 1: ohm2_accounts_light_utils.run_logout_pipeline(request)\n\n\n\nBehavior can be change on the settins.py like this::\n\n\tOHM2_ACCOUNTS_LIGHT_SIGNUP_PIPELINE = (\n\t\t'your_app.pipelines.signup.pipeline_1',\n\t\t'your_app.pipelines.signup.pipeline_2',\n\t)\n\n\tOHM2_ACCOUNTS_LIGHT_LOGIN_PIPELINE = (\n\t\t'your_app.pipelines.login.pipeline_1',\n\t\t'your_app.pipelines.login.pipeline_2',\n\t)\n\n\tOHM2_ACCOUNTS_LIGHT_LOGOUT_PIPELINE = (\n\t\t'your_app.pipelines.logout.pipeline_1',\n\t\t'your_app.pipelines.logout.pipeline_2',\n\t)\n\n\n\n\n\nVariables\n---------\n\nOHM2_ACCOUNTS_LIGHT_CHECK_PASSWORD_SECURE: check if user password is secure (default: True)\nOHM2_ACCOUNTS_LIGHT_SIGNUPS_ENABLED: signup enabled (disabled) (default: True)\nOHM2_ACCOUNTS_LIGHT_ENABLE_EMAIL_LOGIN: users are able to login using their email address (default: True)\nOHM2_ACCOUNTS_LIGHT_UNIQUE_USER_EMAILS: if True, users must have unique email addresses (default: True)\nOHM2_ACCOUNTS_LIGHT_SIGNUP_PIPELINE: sets the signup pipeline\nOHM2_ACCOUNTS_LIGHT_LOGIN_PIPELINE: sets the login pipeline\nOHM2_ACCOUNTS_LIGHT_LOGOUT_PIPELINE: sets the logout pipeline\n\n\n\nAPI - v1\n--------\n\nAdd 'ohm2_accounts_light.api.v1.urls' to your 'urls.py'.\n\nSignup (ohm2_accounts_light.api.v1.views.signup)::\n\t\n\tRuns the signup pipeline checking this variables::\n\n\t\t1.- CHECK_PASSWORD_SECURE: if True, check user's password using 'ohm2_accounts_light.utils.is_password_secure'.\n\t\t2.- SIGNUPS_ENABLED: if True, signups are allowed. If False, no signups will take place.\n\n\nLogin(ohm2_accounts_light.api.v1.views.login)::\n\t\n\tRuns the login pipeline checking this variables::\n\n\t\t1.- ENABLE_EMAIL_LOGIN: if True, will try to use username as email address.\n\t\t2.- UNIQUE_USER_EMAILS: if True, will get user objects using 'h_utils.get_db' function\n\n\nLogout(ohm2_accounts_light.api.v1.views.logout)::\n\t\n\tRuns the logout pipeline.\n\n\n\t", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://www.ohm2.cl/", "keywords": "", "license": "BSD License", "maintainer": "", "maintainer_email": "", "name": "django-ohm2-accounts-light", "package_url": "https://pypi.org/project/django-ohm2-accounts-light/", "platform": "", "project_url": "https://pypi.org/project/django-ohm2-accounts-light/", "project_urls": { "Homepage": "http://www.ohm2.cl/" }, "release_url": "https://pypi.org/project/django-ohm2-accounts-light/0.5.2/", "requires_dist": null, "requires_python": "", "summary": "Django application to easily handle signup, login and logout", "version": "0.5.2" }, "last_serial": 5092611, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "e4c6cc50530cb920d4c013c4fe796a7d", "sha256": "cd64206de82d64b3622f2be595162e36c75fc81cb8174a6546cf0226045e5224" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.0.1.tar.gz", "has_sig": false, "md5_digest": "e4c6cc50530cb920d4c013c4fe796a7d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3810, "upload_time": "2017-05-11T15:24:48", "url": "https://files.pythonhosted.org/packages/7b/94/c3fedc40f8a3a1df20dacde50f7a786c6f6421ec40eae36c54cffee1f75a/django-ohm2-accounts-light-0.0.1.tar.gz" } ], "0.0.10": [ { "comment_text": "", "digests": { "md5": "ad59c24ddd099ba983bc847eb8091964", "sha256": "bf3a19d7ee809905bc75f8038b76618e047b3430ca95637154efc32923c36724" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.0.10.tar.gz", "has_sig": false, "md5_digest": "ad59c24ddd099ba983bc847eb8091964", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17432, "upload_time": "2017-05-17T03:36:53", "url": "https://files.pythonhosted.org/packages/db/a7/c710673c13e3c5816fa4caa7de14931985456520b3c7ef5891be1fcd515b/django-ohm2-accounts-light-0.0.10.tar.gz" } ], "0.0.11": [ { "comment_text": "", "digests": { "md5": "3904c2361051a0da50eb5851d0cb6ac7", "sha256": "9e170617e0b7350f94bed7af85c0c7dcc6c7f9e8e455503e942ee61afaaae339" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.0.11.tar.gz", "has_sig": false, "md5_digest": "3904c2361051a0da50eb5851d0cb6ac7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17861, "upload_time": "2017-05-17T04:24:33", "url": "https://files.pythonhosted.org/packages/f6/b9/e14326ee9ac77fe3c2384faf7b09f78be93ea5e98c65373cfc422452bf25/django-ohm2-accounts-light-0.0.11.tar.gz" } ], "0.0.12": [ { "comment_text": "", "digests": { "md5": "5c5713ef24cfcb58c7c50cdd9d26a306", "sha256": "d5b6bacd27763b0691cc9040ca4bca8ab1345c4e8c85bc8a224d311abaf41d95" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.0.12.tar.gz", "has_sig": false, "md5_digest": "5c5713ef24cfcb58c7c50cdd9d26a306", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18263, "upload_time": "2017-05-23T00:16:40", "url": "https://files.pythonhosted.org/packages/9e/2f/c5ed02445997eee95a2e1449028383931589104fbcca9e75ad4145b7489c/django-ohm2-accounts-light-0.0.12.tar.gz" } ], "0.0.13": [ { "comment_text": "", "digests": { "md5": "3af8864f84676bfa7b40b075e381203c", "sha256": "f8b5a27171f1677ef9b71225041e94fbcc9a7df806896f45b6d81955c4fccd73" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.0.13.tar.gz", "has_sig": false, "md5_digest": "3af8864f84676bfa7b40b075e381203c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18240, "upload_time": "2017-05-25T20:14:56", "url": "https://files.pythonhosted.org/packages/d0/d6/a604c066320a9e73dcc9e159ee192f28eb22c542182a3d61bea74f881bbf/django-ohm2-accounts-light-0.0.13.tar.gz" } ], "0.0.14": [ { "comment_text": "", "digests": { "md5": "d7395b11ee987d89807aa4a8c7792119", "sha256": "3624af94bbf914c236b9c6d6f54b2a5f2082ebc318e297e224d26cde534df6be" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.0.14.tar.gz", "has_sig": false, "md5_digest": "d7395b11ee987d89807aa4a8c7792119", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18386, "upload_time": "2017-05-25T23:11:08", "url": "https://files.pythonhosted.org/packages/9b/bd/2e244538fb753a21de0afa39631595f107888cb2c219cd302c187a615f0f/django-ohm2-accounts-light-0.0.14.tar.gz" } ], "0.0.15": [ { "comment_text": "", "digests": { "md5": "34d377d8c7362a388a51a52774497439", "sha256": "86795dbf029a9262de49fac09243736ec35985b965ae49320f0dca923c82c3a7" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.0.15.tar.gz", "has_sig": false, "md5_digest": "34d377d8c7362a388a51a52774497439", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18384, "upload_time": "2017-05-26T14:58:36", "url": "https://files.pythonhosted.org/packages/2d/e4/b4d621627c35761a3b155ef00efd7b278065194e4a629d17fea6162818dd/django-ohm2-accounts-light-0.0.15.tar.gz" } ], "0.0.16": [ { "comment_text": "", "digests": { "md5": "21c2dab4873357f3ca541cab1f7f0241", "sha256": "2191430d98cfe84e7104419228d0c54bf7fa0bf0d814390e55cf67a6a49e5ebd" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.0.16.tar.gz", "has_sig": false, "md5_digest": "21c2dab4873357f3ca541cab1f7f0241", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18391, "upload_time": "2017-05-26T15:04:14", "url": "https://files.pythonhosted.org/packages/fb/78/7c3f8ce4f075988dad20b90ab5976ac8e4d9462fca6cd34b62da62f03d2b/django-ohm2-accounts-light-0.0.16.tar.gz" } ], "0.0.17": [ { "comment_text": "", "digests": { "md5": "24c6096fc9cf537abb1fc12ed1ae9ecd", "sha256": "03e881020ab396baece908150541635ad602c4333e166d52c60b23f32c88832b" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.0.17.tar.gz", "has_sig": false, "md5_digest": "24c6096fc9cf537abb1fc12ed1ae9ecd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18402, "upload_time": "2017-05-26T22:19:26", "url": "https://files.pythonhosted.org/packages/ef/bc/62830aa7db2d0470d8f40d320a5c7f874fc81284c68ac8d292d99048e397/django-ohm2-accounts-light-0.0.17.tar.gz" } ], "0.0.18": [ { "comment_text": "", "digests": { "md5": "25088931c56b5371382ec0e717b97d78", "sha256": "c82b91897564acab38432671e3e1b8325b38885f4a7edf1fcfec227e32f66e25" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.0.18.tar.gz", "has_sig": false, "md5_digest": "25088931c56b5371382ec0e717b97d78", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18395, "upload_time": "2017-05-28T21:24:02", "url": "https://files.pythonhosted.org/packages/06/04/5b3971439353e82afd0804a3fcc431846a290e52441296f9f383597ef6da/django-ohm2-accounts-light-0.0.18.tar.gz" } ], "0.0.19": [ { "comment_text": "", "digests": { "md5": "b69883bba0c9770935eeb54659ee3de0", "sha256": "7e6a97457fd7b04fb05b833c8cceb94e065a964bb3c12b90b2ce9da180c2c760" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.0.19.tar.gz", "has_sig": false, "md5_digest": "b69883bba0c9770935eeb54659ee3de0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18400, "upload_time": "2017-05-28T21:52:43", "url": "https://files.pythonhosted.org/packages/21/f1/83b9e8f87a01139978d150c3838911d24a590ee292d549cab3273912b16d/django-ohm2-accounts-light-0.0.19.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "0ce552198edbdb6badba89b6219abc28", "sha256": "93612f5ba52b7a8f9b8f465d228e38f4465792a80f3271e517e3d7e536a1fb27" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.0.2.tar.gz", "has_sig": false, "md5_digest": "0ce552198edbdb6badba89b6219abc28", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7384, "upload_time": "2017-05-11T15:36:15", "url": "https://files.pythonhosted.org/packages/15/f9/f94621302cf59dc2f3bf13b3c3331dbcb36d3958de0515f53f0ec4e7f3fa/django-ohm2-accounts-light-0.0.2.tar.gz" } ], "0.0.20": [ { "comment_text": "", "digests": { "md5": "88fa36aa76a829521e42460c56a4a384", "sha256": "6bb96564fa035616693ab47ef37cea840326b79c78b72aa5aefd25c343fc2bd8" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.0.20.tar.gz", "has_sig": false, "md5_digest": "88fa36aa76a829521e42460c56a4a384", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18765, "upload_time": "2017-06-22T04:42:32", "url": "https://files.pythonhosted.org/packages/3f/35/68609ad069bcedbf34f035fff6ee4be6f3181b08ac63fac5493ab059b704/django-ohm2-accounts-light-0.0.20.tar.gz" } ], "0.0.3": [ { "comment_text": "", "digests": { "md5": "d31082bb4484c2c0ab74032d9e3d20e7", "sha256": "8785e5a5940234201e1a37a6f95d83ac389dd28a59a49f4d098a937451853246" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.0.3.tar.gz", "has_sig": false, "md5_digest": "d31082bb4484c2c0ab74032d9e3d20e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11408, "upload_time": "2017-05-11T16:20:08", "url": "https://files.pythonhosted.org/packages/05/31/86695de7d9ed5de9197f85ea9dbe59e2382e8736318ff76c7e3c2f221ca6/django-ohm2-accounts-light-0.0.3.tar.gz" } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "b4988a20a8f4ad25e5562cdb194c20c2", "sha256": "44f63b25e58e9742b2104cd3dbcd74f74e81f610cbb2c941bd8d7a06144cd5e7" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.0.4.tar.gz", "has_sig": false, "md5_digest": "b4988a20a8f4ad25e5562cdb194c20c2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11670, "upload_time": "2017-05-11T16:44:03", "url": "https://files.pythonhosted.org/packages/8d/4d/893ec89d93c30d660c0d31d6a4d710afff8f3f93571362815ad5f6a05541/django-ohm2-accounts-light-0.0.4.tar.gz" } ], "0.0.5": [ { "comment_text": "", "digests": { "md5": "1afe5fb93eac82c0bb65e9efb12dc88c", "sha256": "663a94488445d4e747968eab10b15298d0964f7a916d5121e1a0b8f2dd51f70d" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.0.5.tar.gz", "has_sig": false, "md5_digest": "1afe5fb93eac82c0bb65e9efb12dc88c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12652, "upload_time": "2017-05-12T19:03:41", "url": "https://files.pythonhosted.org/packages/6a/55/f312d5478b6ec1b51da618c88d68bf975ca0d1bd136c04edc69160ce4961/django-ohm2-accounts-light-0.0.5.tar.gz" } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "0cf8bc518070ae7a01be08d8c44e9535", "sha256": "c3245d261cb503bb446f0556e134b8ba6c19b09bb35f80de2ef0085c3e5c782c" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.0.6.tar.gz", "has_sig": false, "md5_digest": "0cf8bc518070ae7a01be08d8c44e9535", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12650, "upload_time": "2017-05-12T19:13:49", "url": "https://files.pythonhosted.org/packages/ec/54/1afe9abbb9a30fa5d6905ca461247f571b0beaae572dc64472fa3615a3c1/django-ohm2-accounts-light-0.0.6.tar.gz" } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "a2645c6c863447811e0a03ae16136889", "sha256": "2ba4786bcbaf52b85e1a8da4de80724330db66fc2bd3ac52b3d28ba46c6fd24f" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.0.7.tar.gz", "has_sig": false, "md5_digest": "a2645c6c863447811e0a03ae16136889", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12947, "upload_time": "2017-05-15T19:18:56", "url": "https://files.pythonhosted.org/packages/bb/11/994b4c9519b75c857402d47c72d2f86193cc2da83b5ee75fd99c9c0beb0a/django-ohm2-accounts-light-0.0.7.tar.gz" } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "2a9a9c05476d7a77002183eb2fb4bd31", "sha256": "4640c0c0055724911be2ced12baf8febf2fc376e91a593a5e307b68824296c23" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.0.8.tar.gz", "has_sig": false, "md5_digest": "2a9a9c05476d7a77002183eb2fb4bd31", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13000, "upload_time": "2017-05-15T23:23:17", "url": "https://files.pythonhosted.org/packages/13/07/bc034e4f52ea8412c5e4b9833d2901db9f1c68d6d9aa407084fa933f4482/django-ohm2-accounts-light-0.0.8.tar.gz" } ], "0.0.9": [ { "comment_text": "", "digests": { "md5": "9e8d0539cb735387a7e1baea79f0be1f", "sha256": "eb1f5704b0e317886754847213ce7fca5df19ed6d45eda9dfe4724269256918c" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.0.9.tar.gz", "has_sig": false, "md5_digest": "9e8d0539cb735387a7e1baea79f0be1f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17268, "upload_time": "2017-05-17T03:21:26", "url": "https://files.pythonhosted.org/packages/1b/57/7f16477fea45f357af676096d9f764f9a853e69939b3a18d968fd54fbae9/django-ohm2-accounts-light-0.0.9.tar.gz" } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "8b200fda6151726c2234c8711d6d0d0a", "sha256": "f451e1a756581907c48e0dae5ddc9f154c61f184818f2d7e5d0c0e3b88243285" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.1.0.tar.gz", "has_sig": false, "md5_digest": "8b200fda6151726c2234c8711d6d0d0a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20614, "upload_time": "2017-06-26T14:37:18", "url": "https://files.pythonhosted.org/packages/14/70/b059592d536ec5ae50ec69b9869693c0c09e599381e02f13389488ace4e3/django-ohm2-accounts-light-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "4b9313f1bfbf4fa826c77d2edd076d53", "sha256": "a700a5e8145b26c9d3687e118583a647003100c28519125fc6ab566433171898" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.1.1.tar.gz", "has_sig": false, "md5_digest": "4b9313f1bfbf4fa826c77d2edd076d53", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20618, "upload_time": "2017-06-26T21:40:26", "url": "https://files.pythonhosted.org/packages/ea/c2/1115953f84fdf0fcff20ea454e8a0dd0bfee2fe1d78ac5f94f7b1f354758/django-ohm2-accounts-light-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "70200885a803b3f2139f3fec419e0dce", "sha256": "774fa286cc3599331c746114b7136b459d955edc6b77025bbc726da05c41fd59" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.1.2.tar.gz", "has_sig": false, "md5_digest": "70200885a803b3f2139f3fec419e0dce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20637, "upload_time": "2017-06-27T16:55:09", "url": "https://files.pythonhosted.org/packages/00/19/22168952be067730daa7716866d3fd1020e617fdb09d179a96c8abe4e789/django-ohm2-accounts-light-0.1.2.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "4a5b04088afb34409bb4448f797ff959", "sha256": "c48cb3b4c8bb55f749b53c398b02ba21be25c6f31b407650b1faeb9ff9e3513c" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.2.0.tar.gz", "has_sig": false, "md5_digest": "4a5b04088afb34409bb4448f797ff959", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22885, "upload_time": "2017-07-25T21:12:27", "url": "https://files.pythonhosted.org/packages/5e/84/58dc2247ba611d1c26e6102a28d8448adec404dad480b63b22126d3e47da/django-ohm2-accounts-light-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "aaf9913efc2376578941313a342515fb", "sha256": "62a7ab314cc9953b7d5e8af742804d2d5f4c275d71bd3a76396327bfd05c245e" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.2.1.tar.gz", "has_sig": false, "md5_digest": "aaf9913efc2376578941313a342515fb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24129, "upload_time": "2017-07-27T22:07:38", "url": "https://files.pythonhosted.org/packages/d4/e0/d9a5b72484cae8ee6c76c3d5a6b13b2f1d39916cf419e3ea8113246e16e5/django-ohm2-accounts-light-0.2.1.tar.gz" } ], "0.2.10": [ { "comment_text": "", "digests": { "md5": "d6004cad0ef1281b6d6b16850fe7bf9c", "sha256": "c758e8589e3e67d29114823d7aa9676ddad5bb26b8c9b11263e202d26957be78" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.2.10.tar.gz", "has_sig": false, "md5_digest": "d6004cad0ef1281b6d6b16850fe7bf9c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25062, "upload_time": "2017-10-11T23:14:56", "url": "https://files.pythonhosted.org/packages/22/ec/b71e3b883d9ba8448d5a1b069a2b9f79fd6a5a4ecd0f7c383b5357f274c0/django-ohm2-accounts-light-0.2.10.tar.gz" } ], "0.2.12": [ { "comment_text": "", "digests": { "md5": "1ebdae43e1afca31cfe44e5c3f679d5c", "sha256": "770d4d7df20d6e3fc2217052b64318d7134975e358cc27eebf422d725b7e75df" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.2.12.tar.gz", "has_sig": false, "md5_digest": "1ebdae43e1afca31cfe44e5c3f679d5c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25097, "upload_time": "2017-11-03T20:04:30", "url": "https://files.pythonhosted.org/packages/c5/cf/13fa0ec1a7ecca226504efe121ddd8f187a671af679cd9ee5028d5d58134/django-ohm2-accounts-light-0.2.12.tar.gz" } ], "0.2.13": [ { "comment_text": "", "digests": { "md5": "aacbc76285093460367924f24ce79a17", "sha256": "17139d41b552985d7be02a571953fe1d9a1f020f5215bcc2ee31ee07f20aa16e" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.2.13.tar.gz", "has_sig": false, "md5_digest": "aacbc76285093460367924f24ce79a17", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25104, "upload_time": "2017-11-06T15:17:05", "url": "https://files.pythonhosted.org/packages/42/17/06625e7e5f8e4d23e3e4bb59a2d4ed2e6699df6d0a7141a35e39f453273d/django-ohm2-accounts-light-0.2.13.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "41bb9f6ca20ad1e714a302410b8578e1", "sha256": "d5f2d119a29e1fa536ff27321ee07554c9424e5ea9b8020f6bece9f6d731cade" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.2.2.tar.gz", "has_sig": false, "md5_digest": "41bb9f6ca20ad1e714a302410b8578e1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24064, "upload_time": "2017-07-27T22:48:54", "url": "https://files.pythonhosted.org/packages/b8/ed/fa5cca6a20d34f3e98f7db6cb74421159f01cd62df978ceec2fbe22f9fdc/django-ohm2-accounts-light-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "6ef6de177e1ca94525f4c5c1a5c40933", "sha256": "3d3616bb447842a54ba0f139d1cfd6e49ad85c18350685126ebc84da4050c5ae" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.2.3.tar.gz", "has_sig": false, "md5_digest": "6ef6de177e1ca94525f4c5c1a5c40933", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24013, "upload_time": "2017-08-20T20:18:59", "url": "https://files.pythonhosted.org/packages/0e/41/75952343375cd539b887c427740c74ef547159b9607d15a29c5c115ab340/django-ohm2-accounts-light-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "4b88a195b8d46143ef36a5f9fddd0e2b", "sha256": "558d480490a99adffa84d731661cfe3a741d4bd994541e9dc1955a9e3ddc5cff" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.2.4.tar.gz", "has_sig": false, "md5_digest": "4b88a195b8d46143ef36a5f9fddd0e2b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24016, "upload_time": "2017-08-20T23:23:28", "url": "https://files.pythonhosted.org/packages/19/dc/bd58498d768a8e00d8c1b490bac47a090c40d69dc0a9816bb7c57998acea/django-ohm2-accounts-light-0.2.4.tar.gz" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "f48a052ec73b8f78f9748a93cfbbcf89", "sha256": "874f5e68beaa2aae45c80de2beb4547487ae504fb6f013b9ea8262c61cc0fbcb" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.2.6.tar.gz", "has_sig": false, "md5_digest": "f48a052ec73b8f78f9748a93cfbbcf89", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24261, "upload_time": "2017-09-21T00:05:25", "url": "https://files.pythonhosted.org/packages/e4/e1/6da34be7b465256197152b6e930bf18ac844c6c0d087be5a040fd7ee8204/django-ohm2-accounts-light-0.2.6.tar.gz" } ], "0.2.8": [ { "comment_text": "", "digests": { "md5": "34e260e5e1ef324cd15468da15d1e3db", "sha256": "99318afa5a6b73ed56f9b727b534e85a6c9e4cba2402c6e43e0cd696cb9e179a" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.2.8.tar.gz", "has_sig": false, "md5_digest": "34e260e5e1ef324cd15468da15d1e3db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25034, "upload_time": "2017-10-03T20:04:52", "url": "https://files.pythonhosted.org/packages/56/28/62066a8f91bf363976a5bd879a5810e40ad1652eac57acf50edad3352d5c/django-ohm2-accounts-light-0.2.8.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "403c02abeddb79ff5d36ad418f578057", "sha256": "89081290735fdf902cf556b39d57d58b9e96cb67ac0284901d6d70668e3fa428" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.3.1.tar.gz", "has_sig": false, "md5_digest": "403c02abeddb79ff5d36ad418f578057", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25769, "upload_time": "2017-11-08T20:40:24", "url": "https://files.pythonhosted.org/packages/0e/78/01380c5dbf28a31170d8c7a59bd0b1a3856eda1e78ec8a2277d4825ca832/django-ohm2-accounts-light-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "4f5bc717e496088c8658754782d5cda9", "sha256": "e436ff8fc4b830a92e393cb00b8db3509986d698546eb3582dd850aef0472751" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.3.2.tar.gz", "has_sig": false, "md5_digest": "4f5bc717e496088c8658754782d5cda9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25789, "upload_time": "2017-11-08T20:52:17", "url": "https://files.pythonhosted.org/packages/af/fe/e107aae9c103a38786a3230a6591744ac7dbf24d2a854538fe1f6ca579cb/django-ohm2-accounts-light-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "180841f71cf24088bfd58557e6b43e60", "sha256": "c084837af1ef787543ed17443552a5e77125decd396533686fcc87e6ad98af32" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.3.3.tar.gz", "has_sig": false, "md5_digest": "180841f71cf24088bfd58557e6b43e60", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25856, "upload_time": "2017-11-08T23:23:58", "url": "https://files.pythonhosted.org/packages/49/0c/42aa7bed90877606e20d7cf0e37be0db5c9ec4a71c9b2398fa55e8584ac1/django-ohm2-accounts-light-0.3.3.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "6c07efd383195da9594596a2fd2479c8", "sha256": "17e842399325569ddb130fd3661de212e8d747cb355ef9e7d4a1b2b0d6b00ba4" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.4.0.tar.gz", "has_sig": false, "md5_digest": "6c07efd383195da9594596a2fd2479c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26307, "upload_time": "2017-12-28T18:27:39", "url": "https://files.pythonhosted.org/packages/ec/53/51e14c891dd294ddf3c3e35256fdf3f1aae19c2380e404394d8a4274e21e/django-ohm2-accounts-light-0.4.0.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "a675fe88f4857d5a582ef648ad560afd", "sha256": "d79859072154d7e5fee4fa46132827b4a0c51f8a6347ff94f599a5b05775d95d" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.4.2.tar.gz", "has_sig": false, "md5_digest": "a675fe88f4857d5a582ef648ad560afd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26337, "upload_time": "2018-02-25T21:32:48", "url": "https://files.pythonhosted.org/packages/f1/08/d6c3d0c8f01baa1287165c624c23cad930dfb65c50968c5176517e184e4c/django-ohm2-accounts-light-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "6a6a902eaac790e3d28a06ccca3b4814", "sha256": "9f061b43c3e0351bad70035c8bb24acac99817fd2ffa5f290fd8cb0f85842eda" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.4.3.tar.gz", "has_sig": false, "md5_digest": "6a6a902eaac790e3d28a06ccca3b4814", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26353, "upload_time": "2018-02-26T03:01:57", "url": "https://files.pythonhosted.org/packages/4b/33/71ff59011111b49a8ff5dee3f62b94269d1ad37de6e1600da8c5a71d0639/django-ohm2-accounts-light-0.4.3.tar.gz" } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "8ef56b994935f40c2ac32cd42b880cd0", "sha256": "4817593e75062c062a141ad909d1f94da600689f9ed47d4823bb0be77f9290e2" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.4.4.tar.gz", "has_sig": false, "md5_digest": "8ef56b994935f40c2ac32cd42b880cd0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26383, "upload_time": "2018-03-10T15:30:12", "url": "https://files.pythonhosted.org/packages/d2/e7/7e1437d9b0ec849beefa5c7129b008e6c6bd759f8acdddac198bb631ca6b/django-ohm2-accounts-light-0.4.4.tar.gz" } ], "0.4.5": [ { "comment_text": "", "digests": { "md5": "4ed24c8e5316cf2af5de1ef9be0ac3c0", "sha256": "3acc035cabca9a2268185a443a45e10c90ee27c908b18bd4b785181378a9aaa3" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.4.5.tar.gz", "has_sig": false, "md5_digest": "4ed24c8e5316cf2af5de1ef9be0ac3c0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26431, "upload_time": "2018-04-04T19:26:54", "url": "https://files.pythonhosted.org/packages/41/a0/286904ec2ac3a7ff7573cc3470f8330562f23422a990e6c246700cc0a082/django-ohm2-accounts-light-0.4.5.tar.gz" } ], "0.4.6": [ { "comment_text": "", "digests": { "md5": "aa427452f8121faf2d3698d52f3fcb79", "sha256": "af8674983487bc375921f7872ea69996db506e25d2eada30fbb2484811e7b436" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.4.6.tar.gz", "has_sig": false, "md5_digest": "aa427452f8121faf2d3698d52f3fcb79", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26128, "upload_time": "2018-05-07T16:47:17", "url": "https://files.pythonhosted.org/packages/9d/fc/e14fb3c6f63f30b16f091326c41eccfc1dcfa239ffe0ff6f407e43fb96c3/django-ohm2-accounts-light-0.4.6.tar.gz" } ], "0.4.7": [ { "comment_text": "", "digests": { "md5": "4191222cbc5edf2dfab1b57b3f0768d6", "sha256": "cf02a57acebc1d0dcc964b5fa13f32e1bb81ba3b6401b976eda966166125ed91" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.4.7.tar.gz", "has_sig": false, "md5_digest": "4191222cbc5edf2dfab1b57b3f0768d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26185, "upload_time": "2018-08-20T16:36:34", "url": "https://files.pythonhosted.org/packages/bd/f0/15be1004c2136fcbd6ec21fcb17b7e2b5cc83efbe1977160dbb8682e6ee8/django-ohm2-accounts-light-0.4.7.tar.gz" } ], "0.4.8": [ { "comment_text": "", "digests": { "md5": "aa2e0045a8fc4bc5131e116f2a184be3", "sha256": "6b3be0348e0a068a65d225a5e03df5aa4abc27e20f717dca105c8fcc0054935f" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.4.8.tar.gz", "has_sig": false, "md5_digest": "aa2e0045a8fc4bc5131e116f2a184be3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26181, "upload_time": "2018-11-19T20:46:37", "url": "https://files.pythonhosted.org/packages/1e/3b/70cce5463f9a3d98e26b34a95abe3065b1d22e18b7831bfa75e0b740604d/django-ohm2-accounts-light-0.4.8.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "a86891d8db8cc352b24871abf93a3300", "sha256": "366c606f9ff277818778dd206428b7daf55601aa3d8c5de4f9e43aa8936fc06b" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.5.0.tar.gz", "has_sig": false, "md5_digest": "a86891d8db8cc352b24871abf93a3300", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26963, "upload_time": "2018-11-19T21:20:41", "url": "https://files.pythonhosted.org/packages/0f/36/0826c113d09cbd69c58cbc7549becd101f30eb9805bf40f64c63d994e171/django-ohm2-accounts-light-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "fb635793f3c0d4673a881ffbf9713703", "sha256": "cb68020361f1e0fd8c1bc61fe37f931f1a18560740683f1249195a2cf4c93c6f" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.5.1.tar.gz", "has_sig": false, "md5_digest": "fb635793f3c0d4673a881ffbf9713703", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27562, "upload_time": "2019-04-03T19:02:12", "url": "https://files.pythonhosted.org/packages/63/21/4363a4c1efdf873914456225fbbb9692bd2e1f0aa4d162bb15f378b195a4/django-ohm2-accounts-light-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "5b6f428de15aed1fdc6b065464e29231", "sha256": "ca7b941f3fed7b2ed4f16cabfe2f7883c1f10e80eb1ba74f20109cd4662180c8" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.5.2.tar.gz", "has_sig": false, "md5_digest": "5b6f428de15aed1fdc6b065464e29231", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27567, "upload_time": "2019-04-03T19:18:48", "url": "https://files.pythonhosted.org/packages/92/5d/fa20a1cef0580317202daf97021c62ed5aab5ca229314a6df36b5ddf57a8/django-ohm2-accounts-light-0.5.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "5b6f428de15aed1fdc6b065464e29231", "sha256": "ca7b941f3fed7b2ed4f16cabfe2f7883c1f10e80eb1ba74f20109cd4662180c8" }, "downloads": -1, "filename": "django-ohm2-accounts-light-0.5.2.tar.gz", "has_sig": false, "md5_digest": "5b6f428de15aed1fdc6b065464e29231", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27567, "upload_time": "2019-04-03T19:18:48", "url": "https://files.pythonhosted.org/packages/92/5d/fa20a1cef0580317202daf97021c62ed5aab5ca229314a6df36b5ddf57a8/django-ohm2-accounts-light-0.5.2.tar.gz" } ] }