{ "info": { "author": "Brad Martsberger", "author_email": "bmarts@lumere.com", "bugtrack_url": null, "classifiers": [ "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" ], "description": ".. image:: https://travis-ci.org/martsberger/django-pivot.svg?branch=master\n :target: https://travis-ci.org/martsberger/django-pivot\n\nDjango Pivot-Tables\n===================\n\nThis package provides utilities for turning Django Querysets into\n`Pivot-Tables `_ and Histograms\nby letting your database do all the heavy lifting.\n\nExamples\n--------\n\nI am going to shamelessly lift examples from the wikipedia page referenced in the header.\nHere is part of the table of shirt sales:\n\n====== ====== ====== ========== ====== ====== ======\nRegion Gender Style Ship Date Units Price Cost\n====== ====== ====== ========== ====== ====== ======\nEast Boy Tee 1/31/2005 12 11.04 10.42\nEast Boy Golf 1/31/2005 12 13 12.6\nEast Boy Fancy 1/31/2005 12 11.96 11.74\nEast Girl Tee 1/31/2005 10 11.27 10.56\nEast Girl Golf 1/31/2005 10 12.12 11.95\nEast Girl Fancy 1/31/2005 10 13.74 13.33\nWest Boy Tee 1/31/2005 11 11.44 10.94\nWest Boy Golf 1/31/2005 11 12.63 11.73\nWest Boy Fancy 1/31/2005 11 12.06 11.51\nWest Girl Tee 1/31/2005 15 13.42 13.29\nWest Girl Golf 1/31/2005 15 11.48 10.67\nEtc.\n====== ====== ====== ========== ====== ====== ======\n\nWe might want to know how many *Units* did we sell in each *Region* for every *Ship Date*?\nAnd get a result like:\n\n======== ========= ========= ========= ========= =========\nRegion 1/31/2005 2/1/2005 2/2/2005 2/3/2005 2/4/2005\n======== ========= ========= ========= ========= =========\nEast 66 80 102 93 114\nNorth 86 91 95 88 107\nSouth 73 78 84 76 91\nWest 92 103 111 104 123\n======== ========= ========= ========= ========= =========\n\nIt takes 3 quantities to pivot the original table into the summary result, two columns and\nan aggregate of a third column. In this case the two columns are Region and Ship Date, the\nthird column is Units and the aggregate is Sum\n\n\nBasic usage\n-----------\n\n*The pivot function*\n\nPivot tables are generated by the pivot function, which takes a Model and 3 attribute names,\nto make a pivot table like the example above:\n\n>>> pivot_table = pivot(ShirtSales, 'shipped', 'region', 'units')\n\nThe result is a ValuesQuerySet, which means the objects returned are dictionaries. Each\ndictionary has a key for the row ('shipped' dates in this case) and a key for every value\nof the column ('region' in this case).\n\n>>> for record in pivot_table:\n... print(record)\n... {u'West': 59, 'shipped': datetime.date(2004, 12, 24), u'East': 71, u'North': 115, u'South': 56}\n... {u'West': 55, 'shipped': datetime.date(2005, 1, 31), u'East': 65, u'North': 121, u'South': 66}\n... {u'West': 56, 'shipped': datetime.date(2005, 2, 1), u'East': 62, u'North': 124, u'South': 68}\n... {u'West': 56, 'shipped': datetime.date(2005, 2, 2), u'East': 59, u'North': 127, u'South': 71}\n... {u'West': 66, 'shipped': datetime.date(2005, 3, 1), u'East': 55, u'North': 131, u'South': 65}\n... {u'West': 68, 'shipped': datetime.date(2005, 3, 2), u'East': 56, u'North': 130, u'South': 62}\n... {u'West': 71, 'shipped': datetime.date(2005, 4, 3), u'East': 56, u'North': 130, u'South': 59}\n... {u'West': 65, 'shipped': datetime.date(2005, 5, 6), u'East': 66, u'North': 120, u'South': 55}\n\nThe first argument can be a Model, QuerySet, or Manager. This allows you to generate a pivot\ntable filtered by another column. For example, you may want to know how many units were sold\nin each region for every shipped date, but only for Golf shirts:\n\n>>> pivot_table = pivot(ShirtSales.objects.filter(style='Golf'), 'region', 'shipped', 'units')\n\nThe pivot function takes an optional parameter for how to aggregate the data. For example,\ninstead of the total units sold in each region for every ship date, we might be interested in\nthe average number of units per order. Then we can pass the Avg aggregation function\n\n>>> from django.db.models import Avg\n>>> pivot_table = pivot(ShirtSales, 'region', 'shipped', 'units', aggregation=Avg)\n\nIf your data is stored across multiple tables, use Django's double underscore notation\nto traverse foreign key relationships. For example, instead of the ShirtSales model having\na *region* attribute, it might have a foreign key to a Store model, which in turn has a\nforeign key to a Region model, which has an attribute called name. Then our pivot call looks\nlike\n\n>>> pivot_table = pivot(ShirtSales, 'store__region__name', 'shipped', 'units')\n\nIt's also possible that the data column we are aggregating over should be a computed column.\nIn our example ShirtSales model we are storing the number of units and the price per\nunit, but not the total cost of the order. If we want to know the average order size in\ndollars in each region for every ship date, we can pivot the ShirtSales table:\n\n>>> from django.db.models import F, Avg\n>>> pivot_table = pivot(ShirtSales, 'region', 'shipped', F('units') * F('price'), Avg)\n\nIf the rows should be grouped on a compound column, for example, you want to know how many\n*Units* were sold on each ship date not just split by region, but the combination of region\nand gender, you can pass a list to the first argument:\n\n>>> pivot_table = pivot(ShirtSales, ['region', 'gender'], 'shipped', 'units')\n\nTo change the way the row keys are displayed, a display_transform function can be passed to\nthe pivot function. display_transform is a function that takes a string and returns a string.\nFor example, instead of getting the results with North, East, South, and West for the regions\nyou want them all lower cased, you can do the following\n\n>>> def lowercase(s):\n>>> return s.lower()\n>>> pivot_table = pivot(ShirtSales, 'region', 'shipped', 'units', display_transform=lowercase)\n\nIf there are no records in the original data table for a particular cell in the pivot result,\nSQL will return NULL and this gets translated to None in python. If you want to get zero, or\nsome other default, you can pass that as a parameter to pivot:\n\n>>> pivot_table = pivot(ShirtSales, 'region', 'shipped', 'units', default=0)\n\nThe above call ensures that when there are no units sold in a particular region on a particular\ndate, we get zero as the result instead of None. However, the results will only contain\nshipped dates if at least one region had sales on that date. If it's necessary to get results\nfor all dates in a range including dates where there are no ShirtSales records, we can pass\na target row_range:\n\n>>> from datetime import date, timedelta\n>>> row_range = [date(2005, 1, 1) + timedelta(days) for days in range(59)]\n>>> pivot_table = pivot(ShirtSales, 'region', 'shipped', 'units', default=0, row_range=row_range)\n\nWill output a result with every shipped date from Jan 1st to February 28th whether there are\nsales on those days or not.\n\n*The histogram function*\n\nThis library also supports creating histograms from a single column of data with the\nhistogram function, which takes a Model, a single attribute name and an iterable of left edges\nof bins.\n\n>>> hist = histogram(ShirtSales, 'units', bins=[0, 10, 15])\n\nLike *pivot*, the first argument can be a Model, QuerySet, or Manager. The result is a\nlist of dictionaries:\n\n>>> hist\n[{'bin': '0', 'units': 0},\n{'bin': '10', 'units': 0},\n{'bin': '15', 'units': 0}]\n\nIt's also possible to get several histograms from a single query by slicing the data on one\nof the columns. For example, instead of the histogram above, we might want two histograms,\none for boys and one for girls. The ``gender`` column of ``ShirtSales`` has two values,\n``'Boy'`` and ``'Girl'``. Passing the gender column as a 4th optional parameter to histogram\nwill slice the data on that column.\n\n>>> hist = histogram(ShirtSales, 'units', bins=[0, 10, 15], slice_on='gender')\n\nThe result is a ValuesQuerySet where each row corresponds to one bin\n\n>>> for row in hist:\n print(row)\n{'bin': u'0', u'Boy': 53, u'Girl': 53}\n{'bin': u'10', u'Boy': 40, u'Girl': 41}\n{'bin': u'15', u'Boy': 27, u'Girl': 26}\n\n\nInstallation\n------------\n\nJust::\n\n pip install django-pivot\n\nput django_pivot in installed apps in your settings file, and then you::\n\n from django_pivot.pivot import pivot\n from django_pivot.histogram import histogram\n\nAnd off you go.\n\n\nTests\n-----\n\nThe test suite is run by `Travis `_\nwith Django versions 1.10 and 1.11 and backends sqlite, MySQL, and Postgres. If you\nwant to run the test suite locally, from the root directory::\n\n python runtests.py --settings=django_pivot.tests.test_sqlite_settings\n\nThat will use sqlite as the backend and whatever version of Django you have\nin your current environment.\n\nLicense\n-------\n\nMIT\n\nCopyright 2017 Brad Martsberger\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nContributors\n------------\n\n`rafal-jaworski `_\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "https://github.com/martsberger/django-pivot/archive/1.8.0.tar.gz", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/martsberger/django-pivot", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "django-pivot", "package_url": "https://pypi.org/project/django-pivot/", "platform": "", "project_url": "https://pypi.org/project/django-pivot/", "project_urls": { "Download": "https://github.com/martsberger/django-pivot/archive/1.8.0.tar.gz", "Homepage": "https://github.com/martsberger/django-pivot" }, "release_url": "https://pypi.org/project/django-pivot/1.8.0/", "requires_dist": [ "django (>=1.10)", "six" ], "requires_python": "", "summary": "Create pivot tables and histograms from ORM querysets", "version": "1.8.0" }, "last_serial": 4976169, "releases": { "1.0": [ { "comment_text": "", "digests": { "md5": "02d9eddfeaffc332890b99563ba004b7", "sha256": "5197a9cfcb7d8c5272e4222a3096b8439958ec1418965179df9c8a3709151e8f" }, "downloads": -1, "filename": "django_pivot-1.0-py2-none-any.whl", "has_sig": false, "md5_digest": "02d9eddfeaffc332890b99563ba004b7", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 5974, "upload_time": "2017-10-02T04:16:43", "url": "https://files.pythonhosted.org/packages/72/93/dd9e09bbaec4fb739f6a49b9e73775af96d2105029e00fc04cfd36021b9c/django_pivot-1.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "068226c089f6ece3f6592d105db627ab", "sha256": "7eeabbb084996f129f641590934c03fa6898a9ae42445ea66b7e4ffa078b3e6b" }, "downloads": -1, "filename": "django_pivot-1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "068226c089f6ece3f6592d105db627ab", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 5975, "upload_time": "2017-10-02T04:15:45", "url": "https://files.pythonhosted.org/packages/44/fa/91545d642478067274dc461767449eb66198a52087996d8b62705d3e5153/django_pivot-1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "60bef902f7c26bef0a739d2dade2b719", "sha256": "2fa75928f55a5e3d9dfe0726361de07b8fee865be6d7f4c59a4c120a3b522235" }, "downloads": -1, "filename": "django-pivot-1.0.tar.gz", "has_sig": false, "md5_digest": "60bef902f7c26bef0a739d2dade2b719", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3392, "upload_time": "2017-10-02T04:15:36", "url": "https://files.pythonhosted.org/packages/a8/53/86da1761a635f5135c8e2c7cb9ed9d3fb559d67314bd5fa83cb375b44be6/django-pivot-1.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "6f6932cfd79af8b22fe03eadbbf0e5ac", "sha256": "062f477391f1e0d998f0202ac34a9b6a81d0685534c68bd735e6dd0f3333ab96" }, "downloads": -1, "filename": "django_pivot-1.0.1-py2-none-any.whl", "has_sig": false, "md5_digest": "6f6932cfd79af8b22fe03eadbbf0e5ac", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 6007, "upload_time": "2017-10-02T04:36:39", "url": "https://files.pythonhosted.org/packages/27/7c/5dbaadd64c4bca7e1688a2ed6c0eccfe84adeba390eb78e9997dc389a65e/django_pivot-1.0.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "56989f1e78f69773f6975170ca8e2038", "sha256": "901b6d063c988985936d5404a928a728f2a7e9ea45688e00f85567b79d71a952" }, "downloads": -1, "filename": "django_pivot-1.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "56989f1e78f69773f6975170ca8e2038", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 6006, "upload_time": "2017-10-02T04:36:33", "url": "https://files.pythonhosted.org/packages/57/d9/b7b7cca59b138181f9d04994cac9335daff9c513f33be1f3252ae628d69d/django_pivot-1.0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cbc42325a6771ed47f92ce2edfb1d43b", "sha256": "29eef70c2cf0e56b0db74830914ae702dc396995fd5ae970eba5287ecb5f6e1e" }, "downloads": -1, "filename": "django-pivot-1.0.1.tar.gz", "has_sig": false, "md5_digest": "cbc42325a6771ed47f92ce2edfb1d43b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3400, "upload_time": "2017-10-02T04:36:26", "url": "https://files.pythonhosted.org/packages/f4/d9/a80ed5d96d9004a39eb4e4e50fcfb488a7b26804d96daaa86476e29bac69/django-pivot-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "4e1a58495d514912c5119af03847b09d", "sha256": "9151eb24de1d41b21fa56e41ff0d06896beddda1289d45570e021e0253893015" }, "downloads": -1, "filename": "django_pivot-1.0.2-py2-none-any.whl", "has_sig": false, "md5_digest": "4e1a58495d514912c5119af03847b09d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 11463, "upload_time": "2017-10-02T04:55:34", "url": "https://files.pythonhosted.org/packages/94/e6/dccab68a694ae7c12c2cc78089e171c3d5b4f1b1c373c649d20391a00428/django_pivot-1.0.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "03c68bc89ac2246a33dcd463c8643ac7", "sha256": "3d88ace96207e262e9c16f7194680431d2f96629e7b9edeb312d03b7c24fa6f3" }, "downloads": -1, "filename": "django_pivot-1.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "03c68bc89ac2246a33dcd463c8643ac7", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 11463, "upload_time": "2017-10-02T04:55:28", "url": "https://files.pythonhosted.org/packages/28/6c/b1be44bc1b3649ad00e8d98d7b372f5054d7a603f01889c0795f056ce8b8/django_pivot-1.0.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2e71790c9494ebe6335454bde35f8f51", "sha256": "1d7a705b1b07601841a843ff619bba8e3ad32524fdaa04715be501db6b5ab745" }, "downloads": -1, "filename": "django-pivot-1.0.2.tar.gz", "has_sig": false, "md5_digest": "2e71790c9494ebe6335454bde35f8f51", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4342, "upload_time": "2017-10-02T04:55:23", "url": "https://files.pythonhosted.org/packages/b2/4a/5c9a17990e07646d2b33cd5b4303f521a62d3a98a190abbc623ee5f0e379/django-pivot-1.0.2.tar.gz" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "fa2ec9e8a588b42233f41eb7e1802eff", "sha256": "e41dcf6264616dc9b74f6bbae2eb2991e1190ea6faaaf888e0a89f82a5e36ba5" }, "downloads": -1, "filename": "django_pivot-1.2-py2-none-any.whl", "has_sig": false, "md5_digest": "fa2ec9e8a588b42233f41eb7e1802eff", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 12042, "upload_time": "2017-10-05T21:40:06", "url": "https://files.pythonhosted.org/packages/d7/5e/d09e0790f9dd1b61a55f84e594530c95abcd22d25ae45cbbea5b50f61412/django_pivot-1.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9fe2d94e766a8d40744846d5586745e4", "sha256": "9a50037b92250337a9c6590757e07f0414585a68d16d26bfc486172bbb279a44" }, "downloads": -1, "filename": "django_pivot-1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "9fe2d94e766a8d40744846d5586745e4", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 12041, "upload_time": "2017-10-05T21:39:56", "url": "https://files.pythonhosted.org/packages/a0/a7/48407d20f49f419364b5f7b3e78169359b37772c11eef3108a6e78c7dc43/django_pivot-1.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "37e76a5d41143e7b9cf73bdad0cb0a84", "sha256": "51c16a8231d3f9973f78ae59fbaa7f2786e43fdea7f874367e692838fbf83fda" }, "downloads": -1, "filename": "django-pivot-1.2.tar.gz", "has_sig": false, "md5_digest": "37e76a5d41143e7b9cf73bdad0cb0a84", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4772, "upload_time": "2017-10-05T21:39:40", "url": "https://files.pythonhosted.org/packages/43/aa/36daf2e34697f8a7c45275198f85fb2a508a6c6a7069ec1f885d1d7b5e80/django-pivot-1.2.tar.gz" } ], "1.3": [ { "comment_text": "", "digests": { "md5": "fdf5f380db6dadfc7ff6a4df6d9d4ec9", "sha256": "bc87200d0043fbec79579487548d6cd7443779231a0ba8cb60734af22ecc2eeb" }, "downloads": -1, "filename": "django_pivot-1.3-py2-none-any.whl", "has_sig": false, "md5_digest": "fdf5f380db6dadfc7ff6a4df6d9d4ec9", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 12618, "upload_time": "2017-10-17T18:37:35", "url": "https://files.pythonhosted.org/packages/32/24/3a37e77631c0dc0b8f6ab0453883695585b946f0f403ad6d4e6bff039ff4/django_pivot-1.3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "67ea9ec3fd2419a41e1b0597937469a3", "sha256": "0a900e8e040bf27316595f7f3dc127446dee6b7eb8cbee58ced4a8123944beb3" }, "downloads": -1, "filename": "django_pivot-1.3-py3-none-any.whl", "has_sig": false, "md5_digest": "67ea9ec3fd2419a41e1b0597937469a3", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 12581, "upload_time": "2017-10-17T18:36:31", "url": "https://files.pythonhosted.org/packages/d4/23/550ba4bac58f08afbb1b1f21c45e09a69aad2501b24f677cfe1c8c884319/django_pivot-1.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d89488b4b7d6b080387185896de4ab86", "sha256": "f3355ea5e4c1ab9685c94ec3137e57f7f304ef2c1e71ffce32ca3aaafde547f4" }, "downloads": -1, "filename": "django-pivot-1.3.tar.gz", "has_sig": false, "md5_digest": "d89488b4b7d6b080387185896de4ab86", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5046, "upload_time": "2017-10-17T18:36:23", "url": "https://files.pythonhosted.org/packages/4a/15/8eaa6368edbc01ece77050cb6f704a2428e1e97c121a3232a7e129d95a5a/django-pivot-1.3.tar.gz" } ], "1.4": [ { "comment_text": "", "digests": { "md5": "fe63b0909113974c095918bb0abe2ddc", "sha256": "8732a359fc795e0ec302f57c254a277f38e10319efa2928fbf5edbfae32b97a1" }, "downloads": -1, "filename": "django_pivot-1.4-py2-none-any.whl", "has_sig": false, "md5_digest": "fe63b0909113974c095918bb0abe2ddc", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 13131, "upload_time": "2017-10-18T02:15:31", "url": "https://files.pythonhosted.org/packages/32/04/84244c598b5ab10ff2fe5f0276261cc5245ce4b3430a0571c99010f8a6bd/django_pivot-1.4-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2274adcdb03eff736644760b2b826ae4", "sha256": "b3f9afb0be5ed544f266edcd084435d21acf879f5e0476976592de7cb891115f" }, "downloads": -1, "filename": "django_pivot-1.4-py3-none-any.whl", "has_sig": false, "md5_digest": "2274adcdb03eff736644760b2b826ae4", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 13093, "upload_time": "2017-10-18T02:15:23", "url": "https://files.pythonhosted.org/packages/fd/fc/f5ced2553e4078e9751906a20c8d2a6e23aae6a159b7a2b8c49c5a21e4bf/django_pivot-1.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "66e1652c60c3ee48f2062a504b1c3d1e", "sha256": "824acbce55dc0bc2237239ade20eda379c011745b4b8f5f6c0d41311f8fa5b37" }, "downloads": -1, "filename": "django-pivot-1.4.tar.gz", "has_sig": false, "md5_digest": "66e1652c60c3ee48f2062a504b1c3d1e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5556, "upload_time": "2017-10-18T02:15:16", "url": "https://files.pythonhosted.org/packages/ce/d3/1434180583b356b34aa50ee22fbf6c8f73bf0220dd43588b799a8c7486f1/django-pivot-1.4.tar.gz" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "065cbd703ba0995d297edac14c4b75a0", "sha256": "af2c6985eb07c43553d275d944dc62b69edd335cd15aa543b398b98ce787f8f1" }, "downloads": -1, "filename": "django_pivot-1.4.1-py2-none-any.whl", "has_sig": false, "md5_digest": "065cbd703ba0995d297edac14c4b75a0", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 13270, "upload_time": "2017-10-18T04:08:25", "url": "https://files.pythonhosted.org/packages/82/9b/612f7985e331782fa628b28919d7e5ffedc6973142c7e7ce7a2fba26ac83/django_pivot-1.4.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "38c0400cbee2789133e68ae9a77e430a", "sha256": "82fe7bc0c1f8773231378e4e6f42b5078cb76c1a8bfb96687552fefdfe3437bf" }, "downloads": -1, "filename": "django_pivot-1.4.1-py3-none-any.whl", "has_sig": false, "md5_digest": "38c0400cbee2789133e68ae9a77e430a", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 13230, "upload_time": "2017-10-18T04:08:42", "url": "https://files.pythonhosted.org/packages/48/8b/843ae224410d1448d554fc933faa5fcc864201fe7caf84176fcfc4328dbd/django_pivot-1.4.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "deb57188cba186a4de853e2729379689", "sha256": "bd56ead60785f1f455caaac32518ccf7c61bb2fec48f052e7fc941c78abf3762" }, "downloads": -1, "filename": "django-pivot-1.4.1.tar.gz", "has_sig": false, "md5_digest": "deb57188cba186a4de853e2729379689", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5647, "upload_time": "2017-10-18T04:08:33", "url": "https://files.pythonhosted.org/packages/82/eb/f291e4827e8966337545ad3bb8f941fe762414a9aefc3d7e621f1b04feae/django-pivot-1.4.1.tar.gz" } ], "1.5": [ { "comment_text": "", "digests": { "md5": "c36472ac0132a2294aad575be9d82866", "sha256": "1ca97cf41ba6fe89193cac3ddcb9d00ffcd5d36df6b29d61e03f80afc92f9284" }, "downloads": -1, "filename": "django_pivot-1.5-py2-none-any.whl", "has_sig": false, "md5_digest": "c36472ac0132a2294aad575be9d82866", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 13219, "upload_time": "2017-10-18T13:04:47", "url": "https://files.pythonhosted.org/packages/b0/54/b8b635dc1f9e053bbced0594dcc825cdc8745ed4f19f3beb3e7c41b125ac/django_pivot-1.5-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9bfbb86075fdc352e2a42afe3d980139", "sha256": "7b018d10158d7869b85c02790d74013355b30831395e5ee715591ecdd178340b" }, "downloads": -1, "filename": "django_pivot-1.5-py3-none-any.whl", "has_sig": false, "md5_digest": "9bfbb86075fdc352e2a42afe3d980139", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 13180, "upload_time": "2017-10-18T13:05:02", "url": "https://files.pythonhosted.org/packages/cd/64/202fdc2ab7ab727afeaffaad8b47918b74261531f2dacea7da3bbbe103ab/django_pivot-1.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6f971a3b106799225c6c33a6eb98cdb5", "sha256": "0572afa94a3ef993e2f13bad75d1c92017983f1e7c6b05fa238adc3e321a4815" }, "downloads": -1, "filename": "django-pivot-1.5.tar.gz", "has_sig": false, "md5_digest": "6f971a3b106799225c6c33a6eb98cdb5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5633, "upload_time": "2017-10-18T13:04:58", "url": "https://files.pythonhosted.org/packages/ad/d9/afe9f58e5f5decc3cea9e32f0b8acc2e1eb16ee8a925e5a8536ab5e19e22/django-pivot-1.5.tar.gz" } ], "1.6": [ { "comment_text": "", "digests": { "md5": "d9268f7f66dd1394723e83abf8c520a6", "sha256": "7ba43edbead84237a8a589573fd057760d4c480f178e8cb04e01612786896249" }, "downloads": -1, "filename": "django_pivot-1.6-py2-none-any.whl", "has_sig": false, "md5_digest": "d9268f7f66dd1394723e83abf8c520a6", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 13394, "upload_time": "2017-10-27T03:26:35", "url": "https://files.pythonhosted.org/packages/2e/44/5edd98bf9f66747f75cf83dd9c4c112d46c00fd04ad88726f386ce31ddf3/django_pivot-1.6-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d6f4da0a35d0ec2096f13ca39c96b788", "sha256": "ec3bd52ff37b6452db413c243dc710230aeaeefc6d1c6bec70ebdb9eb53665c6" }, "downloads": -1, "filename": "django_pivot-1.6-py3-none-any.whl", "has_sig": false, "md5_digest": "d6f4da0a35d0ec2096f13ca39c96b788", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 13357, "upload_time": "2017-10-27T03:26:51", "url": "https://files.pythonhosted.org/packages/83/4e/37d139f95e91ff3069eed850d48d58bf629864ddbd0c9d44c94a030ae52b/django_pivot-1.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e345e9b6ee0922fc9f267439030fc240", "sha256": "6473f0c057a8952680c1b78ad3388cbd81932d215901d7113e079ee2e48643ba" }, "downloads": -1, "filename": "django-pivot-1.6.tar.gz", "has_sig": false, "md5_digest": "e345e9b6ee0922fc9f267439030fc240", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5728, "upload_time": "2017-10-27T03:26:45", "url": "https://files.pythonhosted.org/packages/33/3b/23a7c9da98ace24aaadf0a07953ec5159df8714fe50b227175575dcaad3f/django-pivot-1.6.tar.gz" } ], "1.6.1": [ { "comment_text": "", "digests": { "md5": "781c7656c4cf2d558e1e0c0d82a8660b", "sha256": "24498925fb7247cc5b861c08e7519cb1ad29d9fab3e2a491448fae9285f806a1" }, "downloads": -1, "filename": "django_pivot-1.6.1-py2-none-any.whl", "has_sig": false, "md5_digest": "781c7656c4cf2d558e1e0c0d82a8660b", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 13523, "upload_time": "2017-11-03T01:58:18", "url": "https://files.pythonhosted.org/packages/d2/b1/ead89114f53a9d4098becbb1455dd40edd58873684a3fedc8d66d0180569/django_pivot-1.6.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "239a7372b413a3c3813f094690962733", "sha256": "44f4e1ecfd1d147189df4339596998c6843b0afe724b8d6420b33d086fffc9c9" }, "downloads": -1, "filename": "django_pivot-1.6.1-py3-none-any.whl", "has_sig": false, "md5_digest": "239a7372b413a3c3813f094690962733", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 13485, "upload_time": "2017-11-03T01:58:32", "url": "https://files.pythonhosted.org/packages/5f/52/c6dc766d714c48358a0a2c74d83bcd8297c0bc0cbacef3f9580596dd5df1/django_pivot-1.6.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5900d40ed3699401dfdb186f74cc9991", "sha256": "e69471c41136a8eef3bbf808b812d232e42ff1d28d8055790f497f83d1fdc80d" }, "downloads": -1, "filename": "django-pivot-1.6.1.tar.gz", "has_sig": false, "md5_digest": "5900d40ed3699401dfdb186f74cc9991", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5807, "upload_time": "2017-11-03T01:58:02", "url": "https://files.pythonhosted.org/packages/7e/b1/8fa02c284d3652634b00e7ba77d010e3a1ac4e76e807bef2ce72bf715754/django-pivot-1.6.1.tar.gz" } ], "1.7": [ { "comment_text": "", "digests": { "md5": "4ce3cc12426b67c503e0783bee4b5c03", "sha256": "c3a671d79aa6c24f166af96aa96e298a91ccc5463c0ab3760f338c84a85a9958" }, "downloads": -1, "filename": "django_pivot-1.7-py3-none-any.whl", "has_sig": false, "md5_digest": "4ce3cc12426b67c503e0783bee4b5c03", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 9076, "upload_time": "2019-02-12T02:41:29", "url": "https://files.pythonhosted.org/packages/e2/d7/e10d16e9fda6618314131df1ecb236aa37916a22742cf89d5a2aa7b70352/django_pivot-1.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "69a073a5c5cbefbc526a78b3aee737b2", "sha256": "790256085452963cc20dd9eee0ac4b0b6810b1fc5ac63c1d32e0542a18db23a8" }, "downloads": -1, "filename": "django-pivot-1.7.tar.gz", "has_sig": false, "md5_digest": "69a073a5c5cbefbc526a78b3aee737b2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6141, "upload_time": "2019-02-12T02:41:30", "url": "https://files.pythonhosted.org/packages/05/40/73eb5b246d461b3c3da5ef6517f2d4a92a45a661e02af6b19145db842c36/django-pivot-1.7.tar.gz" } ], "1.8.0": [ { "comment_text": "", "digests": { "md5": "ae99efa36a1162a3f2528e766ea65639", "sha256": "cec08e7d7436b08cdcc9ff54248c324b95a3b2bbaea4dea66293278a7db36eaa" }, "downloads": -1, "filename": "django_pivot-1.8.0-py3-none-any.whl", "has_sig": false, "md5_digest": "ae99efa36a1162a3f2528e766ea65639", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 14128, "upload_time": "2019-03-23T17:41:21", "url": "https://files.pythonhosted.org/packages/89/2f/9d8b03a506b5af1d83c91c5e97870078ed92eea96a7369dc3a7621d8ee31/django_pivot-1.8.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d6e0a25325aaf28b49dfdecd3877c153", "sha256": "3c0da232d01d6f9b91690832ee5259cdd7f47f464ae54d84c80adef17d623df3" }, "downloads": -1, "filename": "django-pivot-1.8.0.tar.gz", "has_sig": false, "md5_digest": "d6e0a25325aaf28b49dfdecd3877c153", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13894, "upload_time": "2019-03-23T17:41:22", "url": "https://files.pythonhosted.org/packages/51/a9/cbb9ba44d2a18a151cde53bed984091aa7b61f676f959ac3bb6c9a97f1fa/django-pivot-1.8.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "ae99efa36a1162a3f2528e766ea65639", "sha256": "cec08e7d7436b08cdcc9ff54248c324b95a3b2bbaea4dea66293278a7db36eaa" }, "downloads": -1, "filename": "django_pivot-1.8.0-py3-none-any.whl", "has_sig": false, "md5_digest": "ae99efa36a1162a3f2528e766ea65639", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 14128, "upload_time": "2019-03-23T17:41:21", "url": "https://files.pythonhosted.org/packages/89/2f/9d8b03a506b5af1d83c91c5e97870078ed92eea96a7369dc3a7621d8ee31/django_pivot-1.8.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d6e0a25325aaf28b49dfdecd3877c153", "sha256": "3c0da232d01d6f9b91690832ee5259cdd7f47f464ae54d84c80adef17d623df3" }, "downloads": -1, "filename": "django-pivot-1.8.0.tar.gz", "has_sig": false, "md5_digest": "d6e0a25325aaf28b49dfdecd3877c153", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13894, "upload_time": "2019-03-23T17:41:22", "url": "https://files.pythonhosted.org/packages/51/a9/cbb9ba44d2a18a151cde53bed984091aa7b61f676f959ac3bb6c9a97f1fa/django-pivot-1.8.0.tar.gz" } ] }