{ "info": { "author": "shimizukawa", "author_email": "shimizukawa@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Plugins", "Framework :: Django", "Framework :: Django :: 1.11", "Framework :: Django :: 2.0", "Framework :: Django :: 2.1", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "====================================\nRedshift database backend for Django\n====================================\n\nThis is a `Amazon Redshift`_ database backend for Django_.\n\n.. image:: https://jazzband.co/static/img/badge.svg\n :target: https://jazzband.co/\n :alt: Jazzband\n\n.. image:: https://img.shields.io/readthedocs/django-redshift-backend/master.svg\n :alt: Read the Docs (master)\n :target: http://django-redshift-backend.rtfd.io/\n\n.. image:: https://img.shields.io/pypi/v/django-redshift-backend.svg\n :alt: PyPI\n :target: http://pypi.org/p/django-redshift-backend\n\n.. image:: https://img.shields.io/pypi/pyversions/django-redshift-backend.svg\n :alt: PyPI - Python Version\n\n.. image:: https://img.shields.io/pypi/djversions/django-redshift-backend.svg\n :alt: PyPI - Django Version\n\n.. image:: https://img.shields.io/github/license/jazzband/django-redshift-backend.svg\n :alt: License\n :target: https://github.com/jazzband/django-redshift-backend/blob/master/LICENSE\n\n.. image:: https://img.shields.io/travis/jazzband/django-redshift-backend/master.svg\n :alt: Travis (.org) branch\n :target: https://travis-ci.org/jazzband/django-redshift-backend\n\n.. image:: https://img.shields.io/github/stars/jazzband/django-redshift-backend.svg?style=social&label=Stars\n :alt: GitHub stars\n :target: https://github.com/jazzband/django-redshift-backend\n\n.. _Amazon Redshift: https://aws.amazon.com/jp/redshift/\n.. _Django: https://www.djangoproject.com/\n\nDocumentation\n=============\n\n- http://django-redshift-backend.rtfd.io/\n\nDjango settings\n===============\n\nENGINE for DATABASES is 'django_redshift_backend'. You can set the name in your settings.py as::\n\n DATABASES = {\n 'default': {\n 'ENGINE': 'django_redshift_backend',\n 'NAME': '',\n 'USER': '',\n 'PASSWORD': '',\n 'HOST': '',\n 'PORT': '5439',\n }\n }\n\nFor more information, please refer: Documentation_\n\n\nLICENSE\n=======\nApache Software License\n\n\n.. CHANGES.rst will be concatenated here by setup.py\n\n\nCHANGES\n=======\n\n1.1.0 (2019/08/02)\n------------------\n\n* #60 Change dependencies to support Python 3.7 Thanks to Asher Foa.\n\n1.0.0 (2019/01/29)\n------------------\n\nGeneral:\n\n* The first release from Jazzband_ organization.\n* Using `Development Status :: 5 - Production/Stable`.\n* All GitHub/Travis/other URLs in this product has been migrated to `/jazzband/`.\n\nNew Features:\n\n* #56 Support Django 2.1.\n* #57 Support Python 3.7\n\nBug Fixes:\n\n* #53,#54: UUIDField django model field will cause clash. Thanks to Corentin Dupret.\n\nDevelopment:\n\n* Adopt setuptools_scm for versioning from git tag.\n\n.. _Jazzband: https://jazzband.co/\n\n0.9.1 (2018-09-29)\n------------------\n\n* fix trove classifier 'License' from BSD to Apache.\n* Documentation: Add `Contribution Guideline`_\n\n.. _Contribution Guideline: https://django-redshift-backend.readthedocs.io/en/master/dev.html#contribution-guideline\n\n0.9 (2018-07-24)\n----------------\n\n* #35: Drop support for Django 1.8, 1.9 and 1.10.\n* #40: Support Django 2.0.\n* #42: Support DISTKEY. Thanks to Benjy Weinberger.\n* Documentation: http://django-redshift-backend.rtfd.io/\n* Change LICENSE from 'BSD License' to 'Apache Software License'\n\n0.8.1 (2018-06-19)\n------------------\n\n* #38: Fix 0.8 doesn't compatible with Python 2. Thanks to Benjy Weinberger.\n\n0.8 (2018-06-01)\n----------------\n\nIncompatible Changes:\n\n* #23,#10: Redshift support time zones in time stamps for migration\n\n **IMPORTANT**:\n With this change, the newly created DateTimeField column will be timestamp\n with timezone (TIMESTAMPTZ) by migration. Therefore, the existing\n DateTimeField and the new DateTimeField will have different data types as a\n redshift schema column type.\n There are no migration feature by django-redshift-backend.\n see also: https://github.com/jazzband/django-redshift-backend/pull/23\n\nNew Features:\n\n* #20,#26: Support for sortkey. Thanks to Maxime Vdb and Kosei Kitahara.\n* #24: Add UUIDField support. Thanks to Sindri Gu\u00f0mundsson.\n* #14: More compat with redshift: not use SELECT DISTINCT ON.\n\nBug Fixes:\n\n* #15,#21: More compat with redshift: not use CHECK. Thanks to Vasil Vangelovski.\n* #18: Fix error on migration with django-1.9 or later that raises AttributeError\n of 'sql_create_table_unique'.\n* #27: annotate() does not work on Django-1.9 and later. Thanks to Takayuki Hirai.\n\n\nDocumentation:\n\n* Add documentation: http://django-redshift-backend.rtfd.io/\n\n\n0.7 (2017-06-08)\n----------------\n\n* Drop Python-3.4\n* Drop Django-1.7\n* Support Python-3.6\n* Support Django-1.11\n\n0.6 (2016-12-15)\n----------------\n\n* Fix crush problem when using bulk insert.\n\n0.5 (2016-10-05)\n----------------\n\n* Support Django-1.10\n* #9: Add support for BigAutoField. Thanks to Maxime Vdb.\n* Fix crush problem on sqlmigrate when field modified.\n\n0.4 (2016-05-17)\n----------------\n\n* Support Python-3.4 and 3.5\n* #7: Restore support django-1.7. Version 0.3 doesn't support django-1.7.\n* #4: More compat with redshift: not use SET CONSTRAINTS. Thanks to Maxime Vdb.\n* #6: More compat with redshift: not use sequence reset query. Thanks to Maxime Vdb.\n* #5: Add REDSHIFT_VARCHAR_LENGTH_MULTIPLIER settings. Thanks to Maxime Vdb.\n* Support column type changing on migration.\n\n0.3 (2016-05-14)\n----------------\n\n* #3: more compat with Redshift (AutoField, DateTimeField, Index). Thanks to Maxime Vdb.\n* More compat with redshift: add TextField\n* More compat with redshift: not use DEFERRABLE, CONSTRAINT, DROP DEFAULT\n* More compat with redshift: support modify column\n\n\n0.2.1 (2016-02-01)\n------------------\n\n* \"SET TIME_ZONE\" warning is changed as debug log for 'django.db.backend' logger.\n\n0.2 (2016-01-08)\n----------------\n\n* Disable \"SET TIME_ZONE\" SQL execution even if settings.TIME_ZONE is specified.\n\n0.1.2 (2015-06-5)\n-----------------\n\n* Support Django-1.8\n\n0.1.1 (2015-03-27)\n------------------\n* Disable \"SELECT FOR UPDATE\" SQL execution.\n\n0.1 (2015-03-24)\n----------------\n* Support Django-1.7\n* Support \"INSERT INTO\" SQL execution without \"RETURNING\" clause.", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/jazzband/django-redshift-backend", "keywords": "", "license": "Apache Software License", "maintainer": "", "maintainer_email": "", "name": "django-redshift-backend", "package_url": "https://pypi.org/project/django-redshift-backend/", "platform": "", "project_url": "https://pypi.org/project/django-redshift-backend/", "project_urls": { "Homepage": "https://github.com/jazzband/django-redshift-backend" }, "release_url": "https://pypi.org/project/django-redshift-backend/1.1.0/", "requires_dist": null, "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "summary": "Redshift database backend for Django", "version": "1.1.0" }, "last_serial": 5633023, "releases": { "0.2.1": [ { "comment_text": "", "digests": { "md5": "5dfa9a7f022629c0d86024db6e454347", "sha256": "71fc08949d1e53c0cff500a5ac1d3825da2e0f43ac950e8003e5ea7e87257869" }, "downloads": -1, "filename": "django_redshift_backend-0.2.1-py2-none-any.whl", "has_sig": false, "md5_digest": "5dfa9a7f022629c0d86024db6e454347", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 4074, "upload_time": "2016-02-01T03:12:25", "url": "https://files.pythonhosted.org/packages/cd/08/13ac600e7861307b3fa8c3218080b7d42b8f2636a2ad4bde740c8b024dc1/django_redshift_backend-0.2.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d7b21e1ba877665d95b7a0d9dd2fef0d", "sha256": "41ba45b62dbe8f295e62a1eb46e9bb27bc4f25d42b15492cb5bcf072b06e8904" }, "downloads": -1, "filename": "django-redshift-backend-0.2.1.tar.gz", "has_sig": false, "md5_digest": "d7b21e1ba877665d95b7a0d9dd2fef0d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2303, "upload_time": "2016-02-01T03:12:13", "url": "https://files.pythonhosted.org/packages/30/26/fdb2d52339273851bc3f27b38e614a3bf0d924f2dcca52004609fff52dbf/django-redshift-backend-0.2.1.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "2ad8aea57dd9b7d08c082da22e4a7bce", "sha256": "fae380bf748998e9a9122ecdf584fa194420f1fa0554d1a274abd526ea3a7341" }, "downloads": -1, "filename": "django_redshift_backend-0.3-py2-none-any.whl", "has_sig": false, "md5_digest": "2ad8aea57dd9b7d08c082da22e4a7bce", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 8567, "upload_time": "2016-05-14T02:31:28", "url": "https://files.pythonhosted.org/packages/f2/d3/f5d06bb26e5d578598d3e5c43ed9202f70247174e608ece4966b76a4b8fe/django_redshift_backend-0.3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "733d3e433225f79c799c20931fe0437a", "sha256": "a581496a9005a54dd3624bff89a9ee3938bd4bd14bc4c1433a11af19c33a5ebb" }, "downloads": -1, "filename": "django-redshift-backend-0.3.tar.gz", "has_sig": false, "md5_digest": "733d3e433225f79c799c20931fe0437a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6465, "upload_time": "2016-05-14T02:31:22", "url": "https://files.pythonhosted.org/packages/53/a7/50ceb7dd7e74a2f76cad73b4f65698fc4d67d118f0c167279f7bc35c6e73/django-redshift-backend-0.3.tar.gz" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "37e89b4f4b0993e2c1c4a17cb9e0cd4a", "sha256": "b9695c07696fee9502165727a68c0d61abb81dc6dab851110709c89c91052653" }, "downloads": -1, "filename": "django_redshift_backend-0.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "37e89b4f4b0993e2c1c4a17cb9e0cd4a", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 9547, "upload_time": "2016-05-17T00:58:39", "url": "https://files.pythonhosted.org/packages/53/83/1d8bdd5df98031891d2620b3916d6728c0dcb5cbf537f250ef4df39f7fee/django_redshift_backend-0.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "71a0d8c486884f928aade19fd512377d", "sha256": "c6ceae1cddd97658725f271ec16e3c37097564cf7b6d5f4a4d8671497d67b6fa" }, "downloads": -1, "filename": "django-redshift-backend-0.4.tar.gz", "has_sig": false, "md5_digest": "71a0d8c486884f928aade19fd512377d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8064, "upload_time": "2016-05-17T00:58:30", "url": "https://files.pythonhosted.org/packages/dd/bf/0803d9f5182d76c5c07f4165a31ce3337a04e76df2370ff92051e631ceff/django-redshift-backend-0.4.tar.gz" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "bf358410bb49f47354165695bb0f6f1e", "sha256": "45e94da27ea0e3275eabf764d60dee4b1538c756b3fca1b4fdcaa25087cf2532" }, "downloads": -1, "filename": "django_redshift_backend-0.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bf358410bb49f47354165695bb0f6f1e", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 10755, "upload_time": "2016-10-05T09:36:27", "url": "https://files.pythonhosted.org/packages/58/0c/f95799f70f578f8b10e06b34f3c848d8a1a486d086fad00fa8e26c219d9b/django_redshift_backend-0.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4a98481839f65803cdd01ce93a29e78c", "sha256": "8389a5955f2c6f1f746f0bcc55179295ba266a2f975175307fca1f07a04a465c" }, "downloads": -1, "filename": "django-redshift-backend-0.5.tar.gz", "has_sig": false, "md5_digest": "4a98481839f65803cdd01ce93a29e78c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7963, "upload_time": "2016-10-05T09:36:25", "url": "https://files.pythonhosted.org/packages/82/60/7a3e398437863168e7a3d16c35474be6d01370d70595867d5977614ed67e/django-redshift-backend-0.5.tar.gz" } ], "0.6": [ { "comment_text": "", "digests": { "md5": "c56d9f935231aea94c4a242c4e004692", "sha256": "248ca77573b31ad23763124960211a2620fe689f0a000d11aabc1c827018398b" }, "downloads": -1, "filename": "django_redshift_backend-0.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c56d9f935231aea94c4a242c4e004692", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 10973, "upload_time": "2016-12-15T10:25:12", "url": "https://files.pythonhosted.org/packages/dc/f0/69f0c263a2ca22004d55effe0328cb23f77fb12ee6bb92c8fb728940184f/django_redshift_backend-0.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fe4da6d162ed4e04adb30d4fb27abcbe", "sha256": "96ccdda8535feb550042c16a12043bbdd75a2e2a1193d8444563077fc05ae58b" }, "downloads": -1, "filename": "django-redshift-backend-0.6.tar.gz", "has_sig": false, "md5_digest": "fe4da6d162ed4e04adb30d4fb27abcbe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8869, "upload_time": "2016-12-15T10:25:10", "url": "https://files.pythonhosted.org/packages/b3/9e/dca1061123647258708f8120466983107c1381b83e7435bcdc0c44d55b1a/django-redshift-backend-0.6.tar.gz" } ], "0.7": [ { "comment_text": "", "digests": { "md5": "3b9627f78be998e2cbf2af47a3a0385e", "sha256": "e9ed4a46742b272004237a79e0104847e735bdecaaa944c3eec5795fb5a4bd73" }, "downloads": -1, "filename": "django_redshift_backend-0.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3b9627f78be998e2cbf2af47a3a0385e", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 11061, "upload_time": "2017-06-08T05:35:28", "url": "https://files.pythonhosted.org/packages/23/5b/10eb939883aabd47be817806f01b71b6bbe8919192790dab5d5f262b30a2/django_redshift_backend-0.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ead46964381dee3ddaed9ccbd29d44af", "sha256": "3872a48bf4f93e28e0d87317aa6e29f910df852a0545c5cb9bc2fde19e15fb07" }, "downloads": -1, "filename": "django-redshift-backend-0.7.tar.gz", "has_sig": false, "md5_digest": "ead46964381dee3ddaed9ccbd29d44af", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8953, "upload_time": "2017-06-08T05:35:25", "url": "https://files.pythonhosted.org/packages/ca/9c/166eda7d27209d56f78c874251839944b999e155bb0e340d0941619cbbd3/django-redshift-backend-0.7.tar.gz" } ], "0.8": [ { "comment_text": "", "digests": { "md5": "edbf03820dd8e0b561f57747d22c1186", "sha256": "04b39330898200a96c1db8a65183cf5ccdbd5140f01e67394d7e1898e2395463" }, "downloads": -1, "filename": "django_redshift_backend-0.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "edbf03820dd8e0b561f57747d22c1186", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13178, "upload_time": "2018-05-31T23:46:02", "url": "https://files.pythonhosted.org/packages/be/3c/f3e6606c2c3471348f317e9471d3c3a2903dbad6b3f97641c2139b35536b/django_redshift_backend-0.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e348c7d55157e1821d0b618ad93bdb02", "sha256": "5f54a3c54355c287c6e7c61f88071df07d4ef4651cd174076f9933fda265b19b" }, "downloads": -1, "filename": "django-redshift-backend-0.8.tar.gz", "has_sig": false, "md5_digest": "e348c7d55157e1821d0b618ad93bdb02", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10712, "upload_time": "2018-05-31T23:46:04", "url": "https://files.pythonhosted.org/packages/95/c6/e4e4df5a32e70951a76dff9e7ba311f7dbd3a99706ae3b8b9dc4fe259bd2/django-redshift-backend-0.8.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "313f855ae037ab6034d2a063e23c0b1a", "sha256": "89d20e57d3830752243cee1c2a88fe1e42c0553a78fe20bf42e04325f0dca2d5" }, "downloads": -1, "filename": "django_redshift_backend-0.8.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "313f855ae037ab6034d2a063e23c0b1a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 13262, "upload_time": "2018-06-19T12:27:11", "url": "https://files.pythonhosted.org/packages/42/99/e7e535d6f33cfee91461ed6cc397b6c96f7c27a386d61fd24ae17278505a/django_redshift_backend-0.8.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a63620c702c6b2365cb96f3b05c3ad9f", "sha256": "c6fdd7ed54c51beabd2c7caf99841100aa1c98406cfd7b5270fa0fd3155c424f" }, "downloads": -1, "filename": "django-redshift-backend-0.8.1.tar.gz", "has_sig": true, "md5_digest": "a63620c702c6b2365cb96f3b05c3ad9f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9614, "upload_time": "2018-06-19T12:27:16", "url": "https://files.pythonhosted.org/packages/87/33/2b2783a1897e7d685a2349d1d0de551b0290f5d0e58aa9a845a06b862b75/django-redshift-backend-0.8.1.tar.gz" } ], "0.9": [ { "comment_text": "", "digests": { "md5": "cb385103e9205c82926f7deb74a40af7", "sha256": "e351160ba8d76180569462ff4cf02f417e6dc2c91bd13a97bb6ae597a9b28ad0" }, "downloads": -1, "filename": "django_redshift_backend-0.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cb385103e9205c82926f7deb74a40af7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 9884, "upload_time": "2018-07-24T23:32:32", "url": "https://files.pythonhosted.org/packages/eb/a1/490efbbc8777dd37b065e0900d31a185fdeb7472fe55860de0997b3dd7ba/django_redshift_backend-0.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2725fbf36ecf68178c829ce69a4e08c2", "sha256": "0d0197ba7c8b44c928e859d94dc7aea32034705ae2b7a006c67fa896d51056d3" }, "downloads": -1, "filename": "django-redshift-backend-0.9.tar.gz", "has_sig": false, "md5_digest": "2725fbf36ecf68178c829ce69a4e08c2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 10168, "upload_time": "2018-07-24T23:32:34", "url": "https://files.pythonhosted.org/packages/55/12/10bc2452a6c3a2198aab484b7063724e2f251d3640edbad82f4a5782ee57/django-redshift-backend-0.9.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "11130379bb23dd1ff63347dad20e5644", "sha256": "73e7004ce13fcd26aa7e48efef1bf9001c3024d18066c9198365fcf49735d114" }, "downloads": -1, "filename": "django_redshift_backend-0.9.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "11130379bb23dd1ff63347dad20e5644", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 10360, "upload_time": "2018-09-29T05:36:57", "url": "https://files.pythonhosted.org/packages/4d/30/0be4372d0214b82baaeee4b81fcdc003eee8a0a3315e25e1220958160d72/django_redshift_backend-0.9.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3b54b7952d3ce20e8ec74893decf209a", "sha256": "9d66b1264184bc4505fbc6166a69db52fb90a8e483a7da93e92396d968b1c11a" }, "downloads": -1, "filename": "django-redshift-backend-0.9.1.tar.gz", "has_sig": false, "md5_digest": "3b54b7952d3ce20e8ec74893decf209a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 11509, "upload_time": "2018-09-29T05:36:59", "url": "https://files.pythonhosted.org/packages/d2/a0/e73b27e3af9d36663a0a83e19b2db286b8cb2a752af8a88613ca9aa2472b/django-redshift-backend-0.9.1.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "e00fff872df1435bed8a6b62790e599a", "sha256": "221496ee5a34f3c8378d9a46f6c54af814322fda289dc5d700e06e26f79b64b1" }, "downloads": -1, "filename": "django_redshift_backend-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e00fff872df1435bed8a6b62790e599a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 15158, "upload_time": "2019-01-29T13:53:05", "url": "https://files.pythonhosted.org/packages/0b/22/2306a3fcaff58ad34104d87b83b9f4969240c78cc9a17e07cb9e86e404ee/django_redshift_backend-1.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e97d4b67734bd290a1f59a7bbeac87c7", "sha256": "9e5c871486034f5a1fc3b3062e9dca9706b94e55e7a9f82ed3560589aa00de64" }, "downloads": -1, "filename": "django-redshift-backend-1.0.0.tar.gz", "has_sig": false, "md5_digest": "e97d4b67734bd290a1f59a7bbeac87c7", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 23926, "upload_time": "2019-01-29T13:53:28", "url": "https://files.pythonhosted.org/packages/b4/4c/b06ff7ef53c0c8822b215a5556658c0087425e95f3caf207558dfbf08fab/django-redshift-backend-1.0.0.tar.gz" } ], "1.0.0a2": [ { "comment_text": "", "digests": { "md5": "0f6f9f3a4fa8562f5ff2983da126a271", "sha256": "7a7b66a7ae4886105788bbff22111e0f765ff13c795d2fb03c6bec15dddf4ef2" }, "downloads": -1, "filename": "django_redshift_backend-1.0.0a2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0f6f9f3a4fa8562f5ff2983da126a271", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 15182, "upload_time": "2019-01-29T09:58:04", "url": "https://files.pythonhosted.org/packages/56/e6/45df199542d6e46316a96a6155d634868569542efdfbfb38897297478ad6/django_redshift_backend-1.0.0a2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bc9aafdd05f01beb6840fdc41f7bab38", "sha256": "f2e9ba91b7a79f002633d480ad15cda040f9ffbfe542bf6c774afd8f3ba8a835" }, "downloads": -1, "filename": "django-redshift-backend-1.0.0a2.tar.gz", "has_sig": false, "md5_digest": "bc9aafdd05f01beb6840fdc41f7bab38", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 24007, "upload_time": "2019-01-29T10:13:40", "url": "https://files.pythonhosted.org/packages/e5/74/622e1af40bc27afd1a4a7c676b62f7d71ff93181ce7b8c842fb4caf9d850/django-redshift-backend-1.0.0a2.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "c642824b80924c3eab12ed26c2ed4cde", "sha256": "677fa4afbbdd3ba0793d12b6957ae89d8876c0aef0a4f12614a92c2a4cd4dd43" }, "downloads": -1, "filename": "django-redshift-backend-1.1.0.tar.gz", "has_sig": false, "md5_digest": "c642824b80924c3eab12ed26c2ed4cde", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 24019, "upload_time": "2019-08-05T07:55:26", "url": "https://files.pythonhosted.org/packages/96/2e/8cf60156cca5a9894ff47debe85e440ee25373ae3b6e8aa4d7df96734618/django-redshift-backend-1.1.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "c642824b80924c3eab12ed26c2ed4cde", "sha256": "677fa4afbbdd3ba0793d12b6957ae89d8876c0aef0a4f12614a92c2a4cd4dd43" }, "downloads": -1, "filename": "django-redshift-backend-1.1.0.tar.gz", "has_sig": false, "md5_digest": "c642824b80924c3eab12ed26c2ed4cde", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 24019, "upload_time": "2019-08-05T07:55:26", "url": "https://files.pythonhosted.org/packages/96/2e/8cf60156cca5a9894ff47debe85e440ee25373ae3b6e8aa4d7df96734618/django-redshift-backend-1.1.0.tar.gz" } ] }