{ "info": { "author": "Corey Bertram", "author_email": "corey@qr7.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Framework :: Django", "Framework :: Django :: 1.11", "Framework :: Django :: 2.0", "Framework :: Django :: 2.1", "Framework :: Django :: 2.2", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7" ], "description": "django-simple-history\n=====================\n\n.. image:: https://secure.travis-ci.org/treyhunner/django-simple-history.svg?branch=master\n :target: http://travis-ci.org/treyhunner/django-simple-history\n :alt: Build Status\n\n.. image:: https://readthedocs.org/projects/django-simple-history/badge/?version=latest\n :target: https://django-simple-history.readthedocs.io/en/latest/?badge=latest\n :alt: Documentation Status\n\n.. image:: https://img.shields.io/codecov/c/github/treyhunner/django-simple-history/master.svg\n :target: http://codecov.io/github/treyhunner/django-simple-history?branch=master\n :alt: Test Coverage\n\n.. image:: https://img.shields.io/pypi/v/django-simple-history.svg\n :target: https://pypi.python.org/pypi/django-simple-history\n :alt: PyPI Version\n\n.. image:: https://api.codeclimate.com/v1/badges/66cfd94e2db991f2d28a/maintainability\n :target: https://codeclimate.com/github/treyhunner/django-simple-history/maintainability\n :alt: Maintainability\n\n.. image:: https://pepy.tech/badge/django-simple-history\n :target: https://pepy.tech/project/django-simple-history\n :alt: Downloads\n\n.. image:: https://img.shields.io/badge/code%20style-black-000000.svg\n :target: https://github.com/ambv/black\n :alt: Code Style\n\n\ndjango-simple-history stores Django model state on every create/update/delete.\n\nThis app supports the following combinations of Django and Python:\n\n========== =======================\n Django Python\n========== =======================\n1.11 2.7, 3.4, 3.5, 3.6, 3.7\n2.0 3.4, 3.5, 3.6, 3.7\n2.1 3.5, 3.6, 3.7\n========== =======================\n\nGetting Help\n------------\n\nDocumentation is available at https://django-simple-history.readthedocs.io/\n\nPull requests are welcome. Read the `CONTRIBUTING`_ file for tips on\nsubmitting a pull request.\n\n.. _CONTRIBUTING: https://github.com/treyhunner/django-simple-history/blob/master/CONTRIBUTING.rst\n\nLicense\n-------\n\nThis project is licensed under the\n`BSD 3-Clause license `_.\n\nChanges\n=======\n\n2.7.3 (2019-07-15)\n------------------\n- Fixed BigAutoField not mirrored as BigInt (gh-556)\n- Fixed most_recent() bug with excluded_fields (gh-561)\n- Added official Django 2.2 support (gh-555)\n\n2.7.2 (2019-04-17)\n------------------\n- Fixed ModuleNotFound issue for `six` (gh-553)\n\n2.7.1 (2019-04-16)\n------------------\n- Added the possibility to create a relation to the original model (gh-536)\n- Fix router backward-compatibility issue with 2.7.0 (gh-539, gh-547)\n- Fix hardcoded history manager (gh-542)\n- Replace deprecated `django.utils.six` with `six` (gh-526)\n- Allow `custom_model_name` parameter to be a callable (gh-489)\n\n2.7.0 (2019-01-16)\n------------------\n- \\* Add support for ``using`` chained manager method and save/delete keyword argument (gh-507)\n- Added management command ``clean_duplicate_history`` to remove duplicate history entries (gh-483)\n- Updated most_recent to work with excluded_fields (gh-477)\n- Fixed bug that prevented self-referential foreign key from using ``'self'`` (gh-513)\n- Added ability to track custom user with explicit custom ``history_user_id_field`` (gh-511)\n- Don't resolve relationships for history objects (gh-479)\n- Reorganization of docs (gh-510)\n\n\\* NOTE: This change was not backward compatible for users using routers to write\nhistory tables to a separate database from their base tables. This issue is fixed in\n2.7.1.\n\n2.6.0 (2018-12-12)\n------------------\n- Add ``app`` parameter to the constructor of ``HistoricalRecords`` (gh-486)\n- Add ``custom_model_name`` parameter to the constructor of ``HistoricalRecords`` (gh-451)\n- Fix header on history pages when custom site_header is used (gh-448)\n- Modify ``pre_create_historical_record`` to pass ``history_instance`` for ease of customization (gh-421)\n- Raise warning if ``HistoricalRecords(inherit=False)`` is in an abstract model (gh-341)\n- Ensure custom arguments for fields are included in historical models' fields (gh-431)\n- Add german translations (gh-484)\n- Add ``extra_context`` parameter to history_form_view (gh-467)\n- Fixed bug that prevented ``next_record`` and ``prev_record`` to work with custom manager names (gh-501)\n\n2.5.1 (2018-10-19)\n------------------\n- Add ``'+'`` as the ``history_type`` for each instance in ``bulk_history_create`` (gh-449)\n- Add support for ``history_change_reason`` for each instance in ``bulk_history_create`` (gh-449)\n- Add ``history_change_reason`` in the history list view under the ``Change reason`` display name (gh-458)\n- Fix bug that caused failures when using a custom user model (gh-459)\n\n2.5.0 (2018-10-18)\n------------------\n- Add ability to cascade delete historical records when master record is deleted (gh-440)\n- Added Russian localization (gh-441)\n\n2.4.0 (2018-09-20)\n------------------\n- Add pre and post create_historical_record signals (gh-426)\n- Remove support for ``django_mongodb_engine`` when converting AutoFields (gh-432)\n- Add support for Django 2.1 (gh-418)\n\n2.3.0 (2018-07-19)\n------------------\n- Add ability to diff ``HistoricalRecords`` (gh-244)\n\n2.2.0 (2018-07-02)\n------------------\n- Add ability to specify alternative user_model for tracking (gh-371)\n- Add util function ``bulk_create_with_history`` to allow bulk_create with history saved (gh-412)\n\n2.1.1 (2018-06-15)\n------------------\n- Fixed out-of-memory exception when running populate_history management command (gh-408)\n- Fix TypeError on populate_history if excluded_fields are specified (gh-410)\n\n2.1.0 (2018-06-04)\n------------------\n- Add ability to specify custom ``history_reason`` field (gh-379)\n- Add ability to specify custom ``history_id`` field (gh-368)\n- Add HistoricalRecord instance properties ``prev_record`` and ``next_record`` (gh-365)\n- Can set admin methods as attributes on object history change list template (gh-390)\n- Fixed compatibility of >= 2.0 versions with old-style middleware (gh-369)\n\n2.0 (2018-04-05)\n----------------\n- Added Django 2.0 support (gh-330)\n- Dropped support for Django<=1.10 (gh-356)\n- Fix bug where ``history_view`` ignored user permissions (gh-361)\n- Fixed ``HistoryRequestMiddleware`` which hadn't been working for Django>1.9 (gh-364)\n\n1.9.1 (2018-03-30)\n------------------\n- Use ``get_queryset`` rather ``than model.objects`` in ``history_view``. (gh-303)\n- Change ugettext calls in models.py to ugettext_lazy\n- Resolve issue where model references itself (gh-278)\n- Fix issue with tracking an inherited model (abstract class) (gh-269)\n- Fix history detail view on django-admin for abstract models (gh-308)\n- Dropped support for Django<=1.6 and Python 3.3 (gh-292)\n\n1.9.0 (2017-06-11)\n------------------\n- Add ``--batchsize`` option to the ``populate_history`` management command. (gh-231)\n- Add ability to show specific attributes in admin history list view. (gh-256)\n- Add Brazilian Portuguese translation file. (gh-279)\n- Fix locale file packaging issue. (gh-280)\n- Add ability to specify reason for history change. (gh-275)\n- Test against Django 1.11 and Python 3.6. (gh-276)\n- Add ``excluded_fields`` option to exclude fields from history. (gh-274)\n\n1.8.2 (2017-01-19)\n------------------\n- Add Polish locale.\n- Add Django 1.10 support.\n\n1.8.1 (2016-03-19)\n------------------\n- Clear the threadlocal request object when processing the response to prevent test interactions. (gh-213)\n\n1.8.0 (2016-02-02)\n------------------\n- History tracking can be inherited by passing ``inherit=True``. (gh-63)\n\n1.7.0 (2015-12-02)\n------------------\n- Add ability to list history in admin when the object instance is deleted. (gh-72)\n- Add ability to change history through the admin. (Enabled with the ``SIMPLE_HISTORY_EDIT`` setting.)\n- Add Django 1.9 support.\n- Support for custom tables names. (gh-196)\n\n1.6.3 (2015-07-30)\n------------------\n- Respect ``to_field`` and ``db_column`` parameters (gh-182)\n\n1.6.2 (2015-07-04)\n------------------\n- Use app loading system and fix deprecation warnings on Django 1.8 (gh-172)\n- Update Landscape configuration\n\n1.6.1 (2015-04-21)\n------------------\n- Fix OneToOneField transformation for historical models (gh-166)\n- Disable cascading deletes from related models to historical models\n- Fix restoring historical instances with missing one-to-one relations (gh-162)\n\n1.6.0 (2015-04-16)\n------------------\n- Add support for Django 1.8+\n- Deprecated use of ``CustomForeignKeyField`` (to be removed)\n- Remove default reverse accessor to ``auth.User`` for historical models (gh-121)\n\n1.5.4 (2015-01-03)\n------------------\n- Fix a bug when models have a ``ForeignKey`` with ``primary_key=True``\n- Do NOT delete the history elements when a user is deleted.\n- Add support for ``latest``\n- Allow setting a reason for change. [using option changeReason]\n\n1.5.3 (2014-11-18)\n------------------\n- Fix migrations while using ``order_with_respsect_to`` (gh-140)\n- Fix migrations using south\n- Allow history accessor class to be overridden in ``register()``\n\n1.5.2 (2014-10-15)\n------------------\n- Additional fix for migrations (gh-128)\n\n1.5.1 (2014-10-13)\n------------------\n- Removed some incompatibilities with non-default admin sites (gh-92)\n- Fixed error caused by ``HistoryRequestMiddleware`` during anonymous requests (gh-115 fixes gh-114)\n- Added workaround for clashing related historical accessors on User (gh-121)\n- Added support for MongoDB AutoField (gh-125)\n- Fixed CustomForeignKeyField errors with 1.7 migrations (gh-126 fixes gh-124)\n\n1.5.0 (2014-08-17)\n------------------\n- Extended availability of the ``as_of`` method to models as well as instances.\n- Allow ``history_user`` on historical objects to be set by middleware.\n- Fixed error that occurs when a foreign key is designated using just the name of the model.\n- Drop Django 1.3 support\n\n1.4.0 (2014-06-29)\n------------------\n- Fixed error that occurs when models have a foreign key pointing to a one to one field.\n- Fix bug when model verbose_name uses unicode (gh-76)\n- Allow non-integer foreign keys\n- Allow foreign keys referencing the name of the model as a string\n- Added the ability to specify a custom ``history_date``\n- Note that ``simple_history`` should be added to ``INSTALLED_APPS`` (gh-94 fixes gh-69)\n- Properly handle primary key escaping in admin URLs (gh-96 fixes gh-81)\n- Add support for new app loading (Django 1.7+)\n- Allow specifying custom base classes for historical models (gh-98)\n\n1.3.0 (2013-05-17)\n------------------\n\n- Fixed bug when using ``django-simple-history`` on nested models package\n- Allow history table to be formatted correctly with ``django-admin-bootstrap``\n- Disallow calling ``simple_history.register`` twice on the same model\n- Added Python 3 support\n- Added support for custom user model (Django 1.5+)\n\n1.2.3 (2013-04-22)\n------------------\n\n- Fixed packaging bug: added admin template files to PyPI package\n\n1.2.1 (2013-04-22)\n------------------\n\n- Added tests\n- Added history view/revert feature in admin interface\n- Various fixes and improvements\n\nOct 22, 2010\n------------\n\n- Merged setup.py from Klaas van Schelven - Thanks!\n\nFeb 21, 2010\n------------\n\n- Initial project creation, with changes to support ForeignKey relations.\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/treyhunner/django-simple-history", "keywords": "", "license": "", "maintainer": "Trey Hunner", "maintainer_email": "", "name": "django-simple-history", "package_url": "https://pypi.org/project/django-simple-history/", "platform": "", "project_url": "https://pypi.org/project/django-simple-history/", "project_urls": { "Homepage": "https://github.com/treyhunner/django-simple-history" }, "release_url": "https://pypi.org/project/django-simple-history/2.7.3/", "requires_dist": [ "six" ], "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "summary": "Store model history and view/revert changes from admin site.", "version": "2.7.3" }, "last_serial": 5537432, "releases": { "1.2.0": [ { "comment_text": "", "digests": { "md5": "852df50e38160c08d1891c79f13db053", "sha256": "ad635e0409a743c193975b81a064a9337ca155aab221a1685173254a37061ce3" }, "downloads": -1, "filename": "django-simple-history-1.2.0.tar.gz", "has_sig": false, "md5_digest": "852df50e38160c08d1891c79f13db053", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10924, "upload_time": "2013-04-22T15:04:13", "url": "https://files.pythonhosted.org/packages/09/ad/a7fb5e0744075567047aa03ef96766405ad190e8c407e2b4e6249719c0cf/django-simple-history-1.2.0.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "407edaf434ebec982534dcae8d9d7ae4", "sha256": "10e96368a79704f3109013e2200b17ee6f6a62fe0364ab338a4ed166cd3fa3d1" }, "downloads": -1, "filename": "django-simple-history-1.2.1.tar.gz", "has_sig": false, "md5_digest": "407edaf434ebec982534dcae8d9d7ae4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10924, "upload_time": "2013-04-22T15:12:03", "url": "https://files.pythonhosted.org/packages/b5/5d/6750fa16678a876900e807c31ba34938693af7c7fbc11963491cd0253848/django-simple-history-1.2.1.tar.gz" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "c672d62ccd246561da451f2510733f3f", "sha256": "e2a99f0278bee832859a3c4edd8bd9877dba1f34bfd032de730f3346544c5444" }, "downloads": -1, "filename": "django-simple-history-1.2.2.tar.gz", "has_sig": false, "md5_digest": "c672d62ccd246561da451f2510733f3f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11944, "upload_time": "2013-04-22T19:13:29", "url": "https://files.pythonhosted.org/packages/7e/f3/2df891dd41eab843c85b427060b45234829c0d2ed572c09faaf6175d167a/django-simple-history-1.2.2.tar.gz" } ], "1.2.3": [ { "comment_text": "", "digests": { "md5": "007efdcd46f9dc6baf93b3089ab51d7d", "sha256": "1a40037b33ceabe2cf6d0b2e2e21dad2133f590029e970eed012727c07e85d78" }, "downloads": -1, "filename": "django-simple-history-1.2.3.tar.gz", "has_sig": false, "md5_digest": "007efdcd46f9dc6baf93b3089ab51d7d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11921, "upload_time": "2013-04-22T23:48:24", "url": "https://files.pythonhosted.org/packages/d9/99/59fc7b8b560d9b12e24e48c0736c9dab6ec44de6cde5255e397d4df24fc4/django-simple-history-1.2.3.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "36172cfdbf4ea56038ade702eb461c04", "sha256": "911a80e77430281f53fba95d8ff0cffae78283f83d18b93380297f0d0bda7121" }, "downloads": -1, "filename": "django-simple-history-1.3.0.tar.gz", "has_sig": false, "md5_digest": "36172cfdbf4ea56038ade702eb461c04", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16189, "upload_time": "2013-05-18T06:04:16", "url": "https://files.pythonhosted.org/packages/1a/4c/23ba4556a2364b2b23770db368fad33191fe1965830a749419139b8dda7a/django-simple-history-1.3.0.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "84246e1676d0388f11e54ec579f81662", "sha256": "c9c8c9f4b343f1fc1d31da80b360e39aecc030b0a7b6a0601f5b061a31c8d927" }, "downloads": -1, "filename": "django_simple_history-1.4.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "84246e1676d0388f11e54ec579f81662", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 16036, "upload_time": "2014-06-30T06:00:16", "url": "https://files.pythonhosted.org/packages/ae/f8/b46a2f5c0a091690c8622f818888f73e06ae02173058351c76db3da54e9e/django_simple_history-1.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "02622dde915f8f4fe8d87fd426c488f4", "sha256": "3e798cd5c0356926b3eebf2225e676e680a131d32201301268b26d1aa2a25a47" }, "downloads": -1, "filename": "django-simple-history-1.4.0.tar.gz", "has_sig": true, "md5_digest": "02622dde915f8f4fe8d87fd426c488f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15597, "upload_time": "2014-06-30T06:00:10", "url": "https://files.pythonhosted.org/packages/77/04/87f47dd0b0ae252382d43f03fd23722d49123d9fcf4d638e3044ad91603b/django-simple-history-1.4.0.tar.gz" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "96259e620f88cc1d6867a5b4c50e7d80", "sha256": "52e2cceee51ccbc226eef7bafaf734ab2b0cac4b25bc35a453c1d7de7d062fe8" }, "downloads": -1, "filename": "django_simple_history-1.5.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "96259e620f88cc1d6867a5b4c50e7d80", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17090, "upload_time": "2014-08-17T22:08:53", "url": "https://files.pythonhosted.org/packages/44/7f/a0e786b1fbf75e40a3f4f2c23e137de8aa1cd8dd62aa332c9be5bd3dcf69/django_simple_history-1.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "026bda69ffe033e6ca193cc6628f5228", "sha256": "7f444532bee3d13eb9aa2014e1a403aeed6a7280529ae25b9fd850d655d25f65" }, "downloads": -1, "filename": "django-simple-history-1.5.0.tar.gz", "has_sig": true, "md5_digest": "026bda69ffe033e6ca193cc6628f5228", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16375, "upload_time": "2014-08-17T22:08:50", "url": "https://files.pythonhosted.org/packages/7e/fc/3e67c98a5762a37dc43dab00cf74222126615a817ee30ff1385e8ace15ca/django-simple-history-1.5.0.tar.gz" } ], "1.5.1": [ { "comment_text": "", "digests": { "md5": "4e4e00c173e18de58d9c13b29c78b9e4", "sha256": "868c8592d37979cf8b0274f71ac1d509edbc829db280ff0f02f76a22edbc988d" }, "downloads": -1, "filename": "django_simple_history-1.5.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "4e4e00c173e18de58d9c13b29c78b9e4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17504, "upload_time": "2014-10-14T03:02:45", "url": "https://files.pythonhosted.org/packages/06/4f/33b81d908b16a109d491a34fd3c72edfc0a7305a1ed159d6f4b89684dce7/django_simple_history-1.5.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4c61ec8f7e6df3f3213af32cb1808002", "sha256": "1887bc9b2054cc5ddee5f64d31f00550cd3367f7d8ff66cfa87d8efbc92605da" }, "downloads": -1, "filename": "django-simple-history-1.5.1.tar.gz", "has_sig": true, "md5_digest": "4c61ec8f7e6df3f3213af32cb1808002", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16857, "upload_time": "2014-10-14T03:02:42", "url": "https://files.pythonhosted.org/packages/6b/07/7e6464e338cc422dfca682edb67071a2a8d04f8d3fc7c781bdc29028b96b/django-simple-history-1.5.1.tar.gz" } ], "1.5.2": [ { "comment_text": "", "digests": { "md5": "c5439dbbc738394e337f583c0a33d2d7", "sha256": "350d7f05eb2ef51fc790dfb6e4a60ed22e167a3dd409aaec35ec6c15a065218c" }, "downloads": -1, "filename": "django_simple_history-1.5.2-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "c5439dbbc738394e337f583c0a33d2d7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17607, "upload_time": "2014-10-16T01:46:37", "url": "https://files.pythonhosted.org/packages/22/6b/bf8da8e3ebc0a12809215da75fc04b2b4cf53f304a00453012d9bcf3ca37/django_simple_history-1.5.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2b53d0675c3023436564c28771586756", "sha256": "b9ad754a88016470e07855a2516165dc0a4d01627af5bafe47322dfe1ffd2e63" }, "downloads": -1, "filename": "django-simple-history-1.5.2.tar.gz", "has_sig": true, "md5_digest": "2b53d0675c3023436564c28771586756", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16851, "upload_time": "2014-10-16T01:46:35", "url": "https://files.pythonhosted.org/packages/e6/55/2d94d2fc0fed31769fdfb4b4a31c985df213fb31da080f3d447c2790e9ca/django-simple-history-1.5.2.tar.gz" } ], "1.5.3": [ { "comment_text": "", "digests": { "md5": "2eeece1952c6e4bc087fc429af913adb", "sha256": "3fac68daf722a3332fe7273a0cbcff3b2aac4759467ae17a72577793308f5fe5" }, "downloads": -1, "filename": "django_simple_history-1.5.3-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "2eeece1952c6e4bc087fc429af913adb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17907, "upload_time": "2014-11-19T07:01:59", "url": "https://files.pythonhosted.org/packages/f9/b8/111633594a2b7e06bb1ef1485fc05933f193dc957cac512ba4acb8d3cbea/django_simple_history-1.5.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "89bc5d66718813dd447fba7176dabcb6", "sha256": "3b59f91f28d5bfca0d214a1d0d66fb6b5048376c5d3145245f427c9fae76ce8d" }, "downloads": -1, "filename": "django-simple-history-1.5.3.tar.gz", "has_sig": true, "md5_digest": "89bc5d66718813dd447fba7176dabcb6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17056, "upload_time": "2014-11-19T07:01:56", "url": "https://files.pythonhosted.org/packages/da/a8/ced67baa0067f0483b650fc5f9bf3a52c26ed97f1487a9665eccbc184da6/django-simple-history-1.5.3.tar.gz" } ], "1.5.4": [ { "comment_text": "", "digests": { "md5": "4ea6671a7c8bb0308e4bad78a39ae2a0", "sha256": "f64ea55c25f7baa8d7165b81e2bced26b731d604aa9d32d5d79c70f8dc19bf23" }, "downloads": -1, "filename": "django_simple_history-1.5.4-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "4ea6671a7c8bb0308e4bad78a39ae2a0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17906, "upload_time": "2015-02-08T20:13:45", "url": "https://files.pythonhosted.org/packages/56/ce/2f213d15400807d6ca6d9ee1c123ae4256bc31fe7d1a45cc0428547db574/django_simple_history-1.5.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a1588eb4279aac10657cad48598205b3", "sha256": "259febe1693dac3de1dca05180b6334e6673c8b14a85efd2c26cf63d07f4163f" }, "downloads": -1, "filename": "django-simple-history-1.5.4.tar.gz", "has_sig": true, "md5_digest": "a1588eb4279aac10657cad48598205b3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17607, "upload_time": "2015-02-08T20:13:41", "url": "https://files.pythonhosted.org/packages/3a/ce/a07af45e1c631871e2ad854e16116ad3f1b660fd70b832ff80da1dacf4a5/django-simple-history-1.5.4.tar.gz" } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "9de3232145af44914d7b728bf015ceb3", "sha256": "6f2b67f0aa83a1afca409840f38c3f6a2cb226138799b76ba9a01cce3a333a33" }, "downloads": -1, "filename": "django_simple_history-1.6.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "9de3232145af44914d7b728bf015ceb3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17952, "upload_time": "2015-04-16T23:21:05", "url": "https://files.pythonhosted.org/packages/c4/6c/f289b26f1b956b5df5658892fef00ce01e901e93407c3db7d25e3aec3ded/django_simple_history-1.6.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5a3c39e43de12c80d3898141c588320b", "sha256": "5173d0bdaa5210aaef85e0ec9397d95d5b976f50e882a64c095d8fadb1f0c5cc" }, "downloads": -1, "filename": "django-simple-history-1.6.0.tar.gz", "has_sig": true, "md5_digest": "5a3c39e43de12c80d3898141c588320b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17651, "upload_time": "2015-04-16T23:21:01", "url": "https://files.pythonhosted.org/packages/a5/c7/adcb5d64b1f080956c96ad3f4e14d44ef2789652fe16262275cdcda39fb8/django-simple-history-1.6.0.tar.gz" } ], "1.6.1": [ { "comment_text": "", "digests": { "md5": "0b26ef50466bfe30914872cd7f943dc1", "sha256": "bbaa9a937550d516843c086d181133874119de7c911db7edee34f94abfee301c" }, "downloads": -1, "filename": "django_simple_history-1.6.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "0b26ef50466bfe30914872cd7f943dc1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18233, "upload_time": "2015-04-22T04:46:29", "url": "https://files.pythonhosted.org/packages/4c/38/526a1a5f45aa29124613767c0e6ccb8eafc872effcfe041b1f2ca59a2d22/django_simple_history-1.6.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "494d49ab1a8131f46d4f530722b29231", "sha256": "3761d6cea987eb22c6ba794e7645e45a871bd223615886534f4db8d970daa0ce" }, "downloads": -1, "filename": "django-simple-history-1.6.1.tar.gz", "has_sig": true, "md5_digest": "494d49ab1a8131f46d4f530722b29231", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17874, "upload_time": "2015-04-22T04:46:26", "url": "https://files.pythonhosted.org/packages/3b/63/1433b5f84e1920de3e512351ba3e20808664065452be7fc2647816bb16ad/django-simple-history-1.6.1.tar.gz" } ], "1.6.2": [ { "comment_text": "", "digests": { "md5": "6ee10a3f9486c85158419943fe62da01", "sha256": "a344481564c25450f745ef16a2a1b812aa7a0e5a90ec782dce90a9e576037cf1" }, "downloads": -1, "filename": "django_simple_history-1.6.2-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "6ee10a3f9486c85158419943fe62da01", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18406, "upload_time": "2015-07-04T22:08:24", "url": "https://files.pythonhosted.org/packages/21/1e/89bf479e9bfb9072e82a9e1d0a39f3db248046effe0687aa718b2a435ebf/django_simple_history-1.6.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a343cf0e11bb170605352d9c039308f5", "sha256": "0c365b650c77c12cbca2c097dde5ac746cad021f07c276b5cb7bc256dc60671d" }, "downloads": -1, "filename": "django-simple-history-1.6.2.tar.gz", "has_sig": true, "md5_digest": "a343cf0e11bb170605352d9c039308f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17966, "upload_time": "2015-07-04T22:08:20", "url": "https://files.pythonhosted.org/packages/02/0c/4ab4c91dcdd08e74b5c34bf2f398cb54c3501613e5028f3e843f6f33fe74/django-simple-history-1.6.2.tar.gz" } ], "1.6.3": [ { "comment_text": "", "digests": { "md5": "92ad93b1bbfdbf8fc93994c99ee392d3", "sha256": "f7cedbbba151bfd2acff1d6f06104eacf453278a913c168d295d10bea1a0197e" }, "downloads": -1, "filename": "django_simple_history-1.6.3-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "92ad93b1bbfdbf8fc93994c99ee392d3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18498, "upload_time": "2015-07-31T04:36:59", "url": "https://files.pythonhosted.org/packages/34/45/046ae8987d415b738654144808d69d18ecbda8fbc082c7ec1b79434a74b5/django_simple_history-1.6.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "03d45ba1701fb8c878ced7465a1f565c", "sha256": "b5afb3f72fddd96d1096ff57b43e2fefcd87ade247a2e70068c1f92d59caedd6" }, "downloads": -1, "filename": "django-simple-history-1.6.3.tar.gz", "has_sig": true, "md5_digest": "03d45ba1701fb8c878ced7465a1f565c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18088, "upload_time": "2015-07-31T04:36:55", "url": "https://files.pythonhosted.org/packages/74/7f/46f83f3e6eb58bb2b3475792e0b9ef4021f3a7c4479b524fa62c808d24ba/django-simple-history-1.6.3.tar.gz" } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "3853c133a838872f17f850bc46f24208", "sha256": "4abadef5c4680147aa5e88b5eba0d0ed7250c8feea79120344486b97184de4ac" }, "downloads": -1, "filename": "django_simple_history-1.7.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "3853c133a838872f17f850bc46f24208", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19248, "upload_time": "2015-12-03T03:57:01", "url": "https://files.pythonhosted.org/packages/c5/88/99c85abef8cc68201bb982b0474afc8aa8ebc5cde4df99cd7e500f869d85/django_simple_history-1.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "16a2bb56c669bea38c0250116bbed194", "sha256": "dc08bac3a732c7c98a24286ef518a88711ae880cb27b7493b3c3179b51035863" }, "downloads": -1, "filename": "django-simple-history-1.7.0.tar.gz", "has_sig": true, "md5_digest": "16a2bb56c669bea38c0250116bbed194", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18420, "upload_time": "2015-12-03T03:57:06", "url": "https://files.pythonhosted.org/packages/58/22/1e6fcd568d2fa4c5d62f51962c428b27eab86c3b4b7e0b6274a420956a3b/django-simple-history-1.7.0.tar.gz" } ], "1.8.0": [ { "comment_text": "", "digests": { "md5": "86e6e821681cd453644c78b5c0744bbb", "sha256": "e21ee27d8bfd95da62dac76d736e24fc99f61a97c039b8926a6e3a24c81c7218" }, "downloads": -1, "filename": "django_simple_history-1.8.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "86e6e821681cd453644c78b5c0744bbb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19840, "upload_time": "2016-02-03T04:04:32", "url": "https://files.pythonhosted.org/packages/00/0f/2156cc4c3dc53c0cc3c61f0fbb702001946920c9882ac5ff3c23cf9979b1/django_simple_history-1.8.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c7b62d93fe056efa4577d88230f65a35", "sha256": "bc1dd9e0573918d2d79f5a66b61c5f3b4ceb7b19d091f805a6a5863cfd8c2d2b" }, "downloads": -1, "filename": "django-simple-history-1.8.0.tar.gz", "has_sig": true, "md5_digest": "c7b62d93fe056efa4577d88230f65a35", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19066, "upload_time": "2016-02-03T04:04:40", "url": "https://files.pythonhosted.org/packages/cc/bc/69fbcbd4f9c58dcd649ff83b227b52268692ddf457fdbcfeb1b378d56e40/django-simple-history-1.8.0.tar.gz" } ], "1.8.1": [ { "comment_text": "", "digests": { "md5": "da828f73c71f7cda3ff659263c8da638", "sha256": "d60ea504fb078dbd1bed463b08be6e16fdc98a35be7d10fa71c640c6c51a4155" }, "downloads": -1, "filename": "django_simple_history-1.8.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "da828f73c71f7cda3ff659263c8da638", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 20006, "upload_time": "2016-03-20T00:55:12", "url": "https://files.pythonhosted.org/packages/cc/95/ea5e28bec867b1f97ff96706061de666dd99b2c3639bca793576edfc27db/django_simple_history-1.8.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bfdd52e61a673c720a31dfe7cb0c7a27", "sha256": "e126a7f8ae66df4de59a96b262491f83c67f26e5527293aaa624e9000a3475b0" }, "downloads": -1, "filename": "django-simple-history-1.8.1.tar.gz", "has_sig": true, "md5_digest": "bfdd52e61a673c720a31dfe7cb0c7a27", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19207, "upload_time": "2016-03-20T00:55:17", "url": "https://files.pythonhosted.org/packages/3e/d5/79b2472ba8f15f71d8ba3e46269a1dee3c9923274ab4e20857c2e5d42a4e/django-simple-history-1.8.1.tar.gz" } ], "1.8.2": [ { "comment_text": "", "digests": { "md5": "fab3fc3924854953de5dcc5f0ae27886", "sha256": "5d526ccc8d4e684518f69c4285b11d0c710fc9284aaee6ee0ec970e4577b6864" }, "downloads": -1, "filename": "django_simple_history-1.8.2-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "fab3fc3924854953de5dcc5f0ae27886", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 20271, "upload_time": "2017-01-20T23:30:34", "url": "https://files.pythonhosted.org/packages/2c/68/01ddca851c7a4093f8b273a2d9f18e1b6db76719e11a941544517ad46fdd/django_simple_history-1.8.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a2865de74564f3b34383cd02d9e5852c", "sha256": "1d2877e9d68e5acfd0c0684843ee32d4949cf4ec911ac15b533e6081f7ec9ecc" }, "downloads": -1, "filename": "django-simple-history-1.8.2.tar.gz", "has_sig": true, "md5_digest": "a2865de74564f3b34383cd02d9e5852c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21562, "upload_time": "2017-01-20T23:30:37", "url": "https://files.pythonhosted.org/packages/b7/9f/e939f422e037262c039599b806ff6f68722d7da9997877a8d298134baf3f/django-simple-history-1.8.2.tar.gz" } ], "1.9.0": [ { "comment_text": "", "digests": { "md5": "0aea4a8dcb9dc1c6f5a450cf0e333d9f", "sha256": "d34c9e8e3c73e39ff3500b59ae836767fcbc43bc9c71333c55d7de273d4dc721" }, "downloads": -1, "filename": "django_simple_history-1.9.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "0aea4a8dcb9dc1c6f5a450cf0e333d9f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 27506, "upload_time": "2017-06-12T05:04:50", "url": "https://files.pythonhosted.org/packages/0b/2b/244347867ec680ddcd54722604bdce883613ec9c3da965c6707e548f37ae/django_simple_history-1.9.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9600ee7111cf942c78c7860ad275e238", "sha256": "2faca872d730068025fb19678048d6f3c2de52e0a141189df798a697e67c9886" }, "downloads": -1, "filename": "django-simple-history-1.9.0.tar.gz", "has_sig": true, "md5_digest": "9600ee7111cf942c78c7860ad275e238", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30589, "upload_time": "2017-06-12T05:04:52", "url": "https://files.pythonhosted.org/packages/b4/56/25e1505fd0215ad3f365456f2fef12badc70c18d2eb756b2a7776d8264ab/django-simple-history-1.9.0.tar.gz" } ], "1.9.1": [ { "comment_text": "", "digests": { "md5": "915ad2e12f97e895cebe7639bfe8beaf", "sha256": "4aed8a2a931698888b650da8dcf184a82b7452b14c2b340786dd558c48476cfb" }, "downloads": -1, "filename": "django_simple_history-1.9.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "915ad2e12f97e895cebe7639bfe8beaf", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 28216, "upload_time": "2018-03-30T20:17:01", "url": "https://files.pythonhosted.org/packages/0e/e3/d3c2173764517476ae0f7ea4d70d3e518ae6b3d3d7e7b24511a69cc05dbe/django_simple_history-1.9.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3914c922f03d3b4fc4c81111ebd133d0", "sha256": "121a8c3450c45882a81b29820b78ba5aa7c11a906a6cc442e77b45dab4fe7bd6" }, "downloads": -1, "filename": "django-simple-history-1.9.1.tar.gz", "has_sig": true, "md5_digest": "3914c922f03d3b4fc4c81111ebd133d0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 26804, "upload_time": "2018-03-30T20:17:02", "url": "https://files.pythonhosted.org/packages/22/ff/3a2013014ec75c547aa4aa08eeeada442bf8343cb2ae4e7aad2388fa7668/django-simple-history-1.9.1.tar.gz" } ], "1.9.1rc1": [ { "comment_text": "", "digests": { "md5": "e9adddd7f9b27a6fec43cbf46cbd2659", "sha256": "457deffca81ca85cb208dd3ddcc44fb98f6848350dc40096e1fcac736f1925e8" }, "downloads": -1, "filename": "django_simple_history-1.9.1rc1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "e9adddd7f9b27a6fec43cbf46cbd2659", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 28219, "upload_time": "2018-03-30T19:54:55", "url": "https://files.pythonhosted.org/packages/88/09/3517e913e3e003c09d5e233aa7baacab9ad56f88e2faa4d88048d7b74522/django_simple_history-1.9.1rc1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dbe26dcd399e076140e78be85bebeb85", "sha256": "35d4c4ac13f4e632e38934ffdabb6247e4ed7ba4097b25a52ea6a34ad955be7a" }, "downloads": -1, "filename": "django-simple-history-1.9.1rc1.tar.gz", "has_sig": true, "md5_digest": "dbe26dcd399e076140e78be85bebeb85", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 26774, "upload_time": "2018-03-30T19:54:56", "url": "https://files.pythonhosted.org/packages/56/df/fd2d023cad6a18814c41de3353bd083778d0cc07f931e10e201213d202c1/django-simple-history-1.9.1rc1.tar.gz" } ], "2.0": [ { "comment_text": "", "digests": { "md5": "7e5191aaf63feb27d99842637c81d6a7", "sha256": "d090577b1800eec06c5e04c264eac271ae5d3b0869b7987ab3574ed42de1938e" }, "downloads": -1, "filename": "django_simple_history-2.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "7e5191aaf63feb27d99842637c81d6a7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 24603, "upload_time": "2018-04-05T19:32:42", "url": "https://files.pythonhosted.org/packages/96/6d/d2704fec2e27805572b5e2647af6c62472bf7d18e143122fb986c50c6c69/django_simple_history-2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3460dad9c49f6d7c41fe100a4a736374", "sha256": "65de7b13b8df2d0eede3e6c0e2ebec69cb2a1f283109188b7a6c71b4e0d20980" }, "downloads": -1, "filename": "django-simple-history-2.0.tar.gz", "has_sig": true, "md5_digest": "3460dad9c49f6d7c41fe100a4a736374", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 26943, "upload_time": "2018-04-05T19:32:43", "url": "https://files.pythonhosted.org/packages/c0/8b/72da42a55c75c30c5554e3d85dfeaab7ac99c406068cc1eb23e5ad26c768/django-simple-history-2.0.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "bc14824906d0481d3c4dcb12e552f2f6", "sha256": "67afe5c928114fedd7bec4cace70ae3f35fc0924d7ea467d80ee84677544d634" }, "downloads": -1, "filename": "django_simple_history-2.1.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "bc14824906d0481d3c4dcb12e552f2f6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 25272, "upload_time": "2018-06-04T14:51:56", "url": "https://files.pythonhosted.org/packages/86/f6/f82f30a2e7269543c0f88a244ec29bf5c235528b59242fbfd00899258471/django_simple_history-2.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "23c162364db554e966ee3d01f65801da", "sha256": "85157e78ea3e306b9065580c6d1c5f00525612361f655946aa4d14decae5075b" }, "downloads": -1, "filename": "django-simple-history-2.1.0.tar.gz", "has_sig": true, "md5_digest": "23c162364db554e966ee3d01f65801da", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 29188, "upload_time": "2018-06-04T14:51:58", "url": "https://files.pythonhosted.org/packages/eb/55/093b287877d98fc6057289964c77e4ccf5f7d975f5832b687bd624a5ddcb/django-simple-history-2.1.0.tar.gz" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "355535981c83f589f25611b7974e3cb9", "sha256": "06e55ee7e98c5beaceb1880accf00abefb9aaa87c8f7a15c7ce3e484de7909a6" }, "downloads": -1, "filename": "django_simple_history-2.1.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "355535981c83f589f25611b7974e3cb9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 25714, "upload_time": "2018-06-15T17:29:59", "url": "https://files.pythonhosted.org/packages/e4/7f/884ad05eb6556ab8e8ee69c4a19ff5bdec30d433251784437b3bdf26b939/django_simple_history-2.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f2692e956fc0a12026f465f4cc0f74da", "sha256": "a4cd395e568eb075c61eb4953c6c123402fcc4aa25e25dd7cff1e91ab708eb3f" }, "downloads": -1, "filename": "django-simple-history-2.1.1.tar.gz", "has_sig": true, "md5_digest": "f2692e956fc0a12026f465f4cc0f74da", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 30091, "upload_time": "2018-06-15T17:30:00", "url": "https://files.pythonhosted.org/packages/2a/6a/179ca2c6f52b718ae34184ab8269f8706e86eda41584a6ef8c22236d1457/django-simple-history-2.1.1.tar.gz" } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "ab95e5bc3cadad8c8968465db9991047", "sha256": "a583dd5a1a20e618dda353582248a463372659ecf53981a1413923ce5d924e60" }, "downloads": -1, "filename": "django_simple_history-2.2.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "ab95e5bc3cadad8c8968465db9991047", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 26100, "upload_time": "2018-07-02T22:29:27", "url": "https://files.pythonhosted.org/packages/77/e8/51e1a80739630747e31fcc43f072058a3b266f72548b34862478df7a00ef/django_simple_history-2.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6c9492937ae491258b271e2f56571011", "sha256": "f05285a7d9415bd107eda4fd9924598180cce23075466762c3d7430e7522561e" }, "downloads": -1, "filename": "django-simple-history-2.2.0.tar.gz", "has_sig": true, "md5_digest": "6c9492937ae491258b271e2f56571011", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 31759, "upload_time": "2018-07-02T22:29:28", "url": "https://files.pythonhosted.org/packages/43/df/6be438b08e35fb1bc47cae725367587019c6c5302ba7360740df8a35c879/django-simple-history-2.2.0.tar.gz" } ], "2.3.0": [ { "comment_text": "", "digests": { "md5": "c8d880bf692930da03a0a55b348a3b7d", "sha256": "426aead38ec1ee7911f8059dc6dcd9f3f375ffa15e11f5a4cd78222808040438" }, "downloads": -1, "filename": "django_simple_history-2.3.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "c8d880bf692930da03a0a55b348a3b7d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 26434, "upload_time": "2018-07-19T21:11:17", "url": "https://files.pythonhosted.org/packages/ee/3a/d53a3a2cdfa6649a38068fd77f578bed8ae28599d19e6347e4ebb8f87ff8/django_simple_history-2.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "47c009b72d5dc676b3b1c9b5bd07222b", "sha256": "7203979afd5a7acca09376b711abd58cd873e88f7892453abfc1322bc67a9603" }, "downloads": -1, "filename": "django-simple-history-2.3.0.tar.gz", "has_sig": true, "md5_digest": "47c009b72d5dc676b3b1c9b5bd07222b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 32455, "upload_time": "2018-07-19T21:11:18", "url": "https://files.pythonhosted.org/packages/1d/65/9d5de724088997714782617dded61630794053dd5a201a873a9d8c75a6cd/django-simple-history-2.3.0.tar.gz" } ], "2.4.0": [ { "comment_text": "", "digests": { "md5": "81fdd578d98910b5704bdd1213bfd66f", "sha256": "22d511573b441b405584a045c7d241bb41808d4b5fc39c21e4a6b59b0e4b6ae6" }, "downloads": -1, "filename": "django_simple_history-2.4.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "81fdd578d98910b5704bdd1213bfd66f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 26751, "upload_time": "2018-09-20T16:02:56", "url": "https://files.pythonhosted.org/packages/0e/a0/b92c4c7532944431519abbf752847dd051515bee64ba40b1ea104aac84c8/django_simple_history-2.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "71dbfbe0f19b98e50b844f5767c3411a", "sha256": "77a648542f6da7e17e62ab5e66528dea22b9d7f2eb92e4a1ba70ce6165b8ad83" }, "downloads": -1, "filename": "django-simple-history-2.4.0.tar.gz", "has_sig": true, "md5_digest": "71dbfbe0f19b98e50b844f5767c3411a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 33027, "upload_time": "2018-09-20T16:02:58", "url": "https://files.pythonhosted.org/packages/d8/26/44414e10ec3a45a0e997841ad1858d54f9fe535fa11187ab573db065d152/django-simple-history-2.4.0.tar.gz" } ], "2.5.0": [ { "comment_text": "", "digests": { "md5": "5cef1b26e0980182e92915fe5f5740f6", "sha256": "5cb20f0d7c302e7223eddc8a119f2505f68b19e305a2d5bb7dad9eb9566da1d6" }, "downloads": -1, "filename": "django_simple_history-2.5.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "5cef1b26e0980182e92915fe5f5740f6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 31904, "upload_time": "2018-10-18T21:11:02", "url": "https://files.pythonhosted.org/packages/40/95/5ed713ba2619492ed82a8f9cbcee7903910aec6dcc905af6b767d8e67042/django_simple_history-2.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "832b89d051a9be383991935f8451ee34", "sha256": "e34ee9db0d195cb41d791d5460f6a6def6ca0f3fe93b4bf0abea841ee82dfa0d" }, "downloads": -1, "filename": "django-simple-history-2.5.0.tar.gz", "has_sig": true, "md5_digest": "832b89d051a9be383991935f8451ee34", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 34300, "upload_time": "2018-10-18T21:11:04", "url": "https://files.pythonhosted.org/packages/e9/a1/2e76171d7a6019b22009a90972c7414c0bba37317c809f24df28a601261b/django-simple-history-2.5.0.tar.gz" } ], "2.5.1": [ { "comment_text": "", "digests": { "md5": "5b9bc74656479230bfa5a7fcb1e909c9", "sha256": "e83edaa0ef298bcd2d2193378e108dcc441d95e38c07edd9dfad2c39bf9d5e19" }, "downloads": -1, "filename": "django_simple_history-2.5.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "5b9bc74656479230bfa5a7fcb1e909c9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 32085, "upload_time": "2018-10-22T18:54:33", "url": "https://files.pythonhosted.org/packages/54/3d/9129a60f8563fe3e02311acdee6d358c0f7e0584ff473579e98fc5b8b152/django_simple_history-2.5.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "33f94132e4f948b458c8e1ea69723065", "sha256": "02259651c21e6f3e4b9d8ca1cb7a8079b233bdd420cde53a777d5fd124af2369" }, "downloads": -1, "filename": "django-simple-history-2.5.1.tar.gz", "has_sig": true, "md5_digest": "33f94132e4f948b458c8e1ea69723065", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 34664, "upload_time": "2018-10-22T18:54:35", "url": "https://files.pythonhosted.org/packages/9c/15/4538831846176e4c60a97026879c95c85f60cf8f6e1ee2c77c5f18056ae6/django-simple-history-2.5.1.tar.gz" } ], "2.6.0": [ { "comment_text": "", "digests": { "md5": "6406365d99e3c18528d75040c38bb69c", "sha256": "7de82377ff468ee7d091fcef23130d9ffbdee11d172f6893dc633243be85375b" }, "downloads": -1, "filename": "django_simple_history-2.6.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "6406365d99e3c18528d75040c38bb69c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 35431, "upload_time": "2018-12-12T16:32:34", "url": "https://files.pythonhosted.org/packages/80/50/518387c78db5cb53766abf317801d8c64c18b15365a6a94e1d249173ffe0/django_simple_history-2.6.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b627fe0bc65046873058beed0811c070", "sha256": "9d08ab3409f7fc48ed127fa1bb33b5b0f9e6efa35f26211f61bb84891edc0dbd" }, "downloads": -1, "filename": "django-simple-history-2.6.0.tar.gz", "has_sig": true, "md5_digest": "b627fe0bc65046873058beed0811c070", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 38309, "upload_time": "2018-12-12T16:32:35", "url": "https://files.pythonhosted.org/packages/b9/57/8272f4f252a17c169fdcfb836b5876264dc2593b06b0cd683b3d38ac8078/django-simple-history-2.6.0.tar.gz" } ], "2.7.0": [ { "comment_text": "", "digests": { "md5": "16c33fe462b46da95e047a43fb52d9df", "sha256": "7ba6220ed2ef3562ed8de9c66551da2a25d26b969f94226d41342769c3782630" }, "downloads": -1, "filename": "django_simple_history-2.7.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "16c33fe462b46da95e047a43fb52d9df", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 37907, "upload_time": "2019-01-16T16:52:27", "url": "https://files.pythonhosted.org/packages/74/50/1f96464b2f80b764bd50864befe2de3b2f54a9c7933d0331216bb3ae2bae/django_simple_history-2.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4e2db7ab40ab98a7eb37785dcb82abb2", "sha256": "2f35bbb2ac37ae726ce4ef4a8cc053ede5f881a6985f5445f438dc297b12e7c5" }, "downloads": -1, "filename": "django-simple-history-2.7.0.tar.gz", "has_sig": true, "md5_digest": "4e2db7ab40ab98a7eb37785dcb82abb2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 42696, "upload_time": "2019-01-16T16:52:30", "url": "https://files.pythonhosted.org/packages/0e/14/3205bb84d31a8dfd2cccaf25e8ec0bbca559977fd4680b1ea2909f83c411/django-simple-history-2.7.0.tar.gz" } ], "2.7.1": [ { "comment_text": "", "digests": { "md5": "92b0e83107e8a02957690edf5330f037", "sha256": "80828f87ab3728d95bbbfed1f1aab48ba904ca37f5541d7aeb70c05189f07587" }, "downloads": -1, "filename": "django_simple_history-2.7.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "92b0e83107e8a02957690edf5330f037", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 38671, "upload_time": "2019-04-16T16:54:32", "url": "https://files.pythonhosted.org/packages/db/7f/4f2b282e7ce19f616c696fee3ecc2cf4ce18b42baf87f8ce0ed58876bf96/django_simple_history-2.7.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "416f6bd9e6472fecdb9ce03708646990", "sha256": "bd857f88ae91e0ced665760e6bf0f00a58e1a08dc61acaf2379b54eb788cd096" }, "downloads": -1, "filename": "django-simple-history-2.7.1.tar.gz", "has_sig": true, "md5_digest": "416f6bd9e6472fecdb9ce03708646990", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 44629, "upload_time": "2019-04-16T16:54:35", "url": "https://files.pythonhosted.org/packages/7f/2a/7e869f61080c8869f999ecf59c0378a15f4c4ed07a3757360083fff99418/django-simple-history-2.7.1.tar.gz" } ], "2.7.2": [ { "comment_text": "", "digests": { "md5": "e3bc5f4e416b2d4d0d3ebe7b4936af3c", "sha256": "63736301576c04ee4b3a3b28ad17b10a0666b988f6f5ee5990edb29c2de6475d" }, "downloads": -1, "filename": "django_simple_history-2.7.2-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "e3bc5f4e416b2d4d0d3ebe7b4936af3c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 38707, "upload_time": "2019-04-17T14:33:58", "url": "https://files.pythonhosted.org/packages/74/2e/15af55d2304e8d79b63a8aa27f3489906425ef69f1265966175223b455c4/django_simple_history-2.7.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6f8cdafc6c9041a3bc7bdf3ec975dc61", "sha256": "652979d2091cb1230104d930c1e335feb267feb1784c2aa95b5d334a5748b079" }, "downloads": -1, "filename": "django-simple-history-2.7.2.tar.gz", "has_sig": true, "md5_digest": "6f8cdafc6c9041a3bc7bdf3ec975dc61", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 44850, "upload_time": "2019-04-17T14:34:00", "url": "https://files.pythonhosted.org/packages/65/7c/2301fcaa013f6fc868fe3361ca4297a4235c8952737a08bdd71c20401733/django-simple-history-2.7.2.tar.gz" } ], "2.7.3": [ { "comment_text": "", "digests": { "md5": "62579c9e694e4be55ac984052e4f7250", "sha256": "7273add61d3f89453c475531627f8c69cbfc41d6fb99d45278dddc3bafe39284" }, "downloads": -1, "filename": "django_simple_history-2.7.3-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "62579c9e694e4be55ac984052e4f7250", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 38845, "upload_time": "2019-07-15T22:51:16", "url": "https://files.pythonhosted.org/packages/ab/05/86a7a63d9e84c0d3d774c0f20c7899df3c24dc0bd53b056fd752d160066a/django_simple_history-2.7.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4fc695c14a87af244b9cd35fcfe19c7f", "sha256": "7f3044439e401fb02b12231b675590865a27a149f6bd99587e429cbe6a9dd6a6" }, "downloads": -1, "filename": "django-simple-history-2.7.3.tar.gz", "has_sig": true, "md5_digest": "4fc695c14a87af244b9cd35fcfe19c7f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 41634, "upload_time": "2019-07-15T22:51:18", "url": "https://files.pythonhosted.org/packages/d0/ce/525c5b7545894c1712a504945d21caeee86194291ae5c98a636e3a473595/django-simple-history-2.7.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "62579c9e694e4be55ac984052e4f7250", "sha256": "7273add61d3f89453c475531627f8c69cbfc41d6fb99d45278dddc3bafe39284" }, "downloads": -1, "filename": "django_simple_history-2.7.3-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "62579c9e694e4be55ac984052e4f7250", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 38845, "upload_time": "2019-07-15T22:51:16", "url": "https://files.pythonhosted.org/packages/ab/05/86a7a63d9e84c0d3d774c0f20c7899df3c24dc0bd53b056fd752d160066a/django_simple_history-2.7.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4fc695c14a87af244b9cd35fcfe19c7f", "sha256": "7f3044439e401fb02b12231b675590865a27a149f6bd99587e429cbe6a9dd6a6" }, "downloads": -1, "filename": "django-simple-history-2.7.3.tar.gz", "has_sig": true, "md5_digest": "4fc695c14a87af244b9cd35fcfe19c7f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 41634, "upload_time": "2019-07-15T22:51:18", "url": "https://files.pythonhosted.org/packages/d0/ce/525c5b7545894c1712a504945d21caeee86194291ae5c98a636e3a473595/django-simple-history-2.7.3.tar.gz" } ] }