{
"info": {
"author": "Alexei Andrushievich",
"author_email": "vint21h@vint21h.pp.ua",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 5 - Production/Stable",
"Environment :: Plugins",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
"Framework :: Django :: 3.2",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: Unix",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Utilities"
],
"description": ".. django-djcopyright\n.. README.rst\n\n\nA django-djcopyright documentation\n==================================\n\n|GitHub|_ |Coveralls|_ |pypi-license|_ |pypi-version|_ |pypi-python-version|_ |pypi-django-version|_ |pypi-format|_ |pypi-wheel|_ |pypi-status|_\n\n *django-djcopyright is a Django reusable application to show pretty formatted copyright years*\n\n.. contents::\n\nInstallation\n------------\n* Obtain your copy of source code from the git repository: ``$ git clone https://github.com/vint21h/django-djcopyright.git``. Or download the latest release from https://github.com/vint21h/django-djcopyright/tags/.\n* Run ``$ python ./setup.py install`` from the repository source tree or unpacked archive. Or use pip: ``$ pip install django-djcopyright``.\n\nConfiguration\n-------------\n* Add ``\"djcopyright\"`` to ``settings.INSTALLED_APPS``.\n\n.. code-block:: python\n\n # settings.py\n\n INSTALLED_APPS += [\n \"djcopyright\",\n ]\n\nSettings\n--------\n``DJCOPYRIGHT_START_YEAR``\n Contains year to start show copyright from. Defaults to ``1970``.\n\n``DJCOPYRIGHT_FORMAT_STRING``\n Contains format string to show copyright. Defaults to ``\"{start_year} - {current_year}\"``.\n\n``DJCOPYRIGHT_SHOW_CURRENT_YEAR``\n Show current year in copyright string. Defaults to ``True``.\n\n``DJCOPYRIGHT_SHOW_START_YEAR``\n Show start year in copyright string. Defaults to ``True``.\n\nUsage\n-----\nIf you want always have ``\"COPYRIGHT_YEARS\"`` variable in templates context, just add ``\"djcopyright.context_processors.djcopyright_years\"`` to ``settings.TEMPLATE_CONTEXT_PROCESSORS``\n\n.. code-block:: python\n\n # settings.py\n\n TEMPLATE_CONTEXT_PROCESSORS += [\n \"djcopyright.context_processors.djcopyright_years\",\n ]\n\n\nElse you can use ``djcopyright_years`` templatetag which can be loaded from ``djcopyright_tags``.\n\n.. code-block:: django\n\n {# footer.html #}\n\n {% load djcopyright_tags %}\n\n {% djcopyright_years as COPYRIGHT_YEARS %}\n {{ COPYRIGHT_YEARS }}\n\nContributing\n------------\n1. `Fork it `_\n2. Install `GNU Make `_\n3. Install and configure `pyenv `_ and `pyenv-virtualenv plugin `_\n4. Install and configure `direnv `_\n5. Create environment config from example\n\n.. code-block:: bash\n\n cp .env.example .env\n\n6. Install development dependencies:\n\n.. code-block:: bash\n\n make install\n\n7. Create your fix/feature branch:\n\n.. code-block:: bash\n\n git checkout -b my-new-fix-or-feature\n\n8. Check code style and moreover:\n\n.. code-block:: bash\n\n make check\n\n9. Run tests:\n\n.. code-block:: bash\n\n make test\n\n10. Push to the branch:\n\n.. code-block:: bash\n\n git push origin my-new-fix-or-feature\n\n11. `Create a new Pull Request `_\n\nLicensing\n---------\ndjango-djcopyright is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.\nFor complete license text see COPYING file.\n\nContacts\n--------\n**Project Website**: https://github.com/vint21h/django-djcopyright/\n\n**Author**: Alexei Andrushievich \n\nFor other authors list see AUTHORS file.\n\n\n.. |GitHub| image:: https://github.com/vint21h/django-djcopyright/workflows/build/badge.svg\n :alt: GitHub\n.. |Coveralls| image:: https://coveralls.io/repos/github/vint21h/django-djcopyright/badge.svg?branch=master\n :alt: Coveralls\n.. |pypi-license| image:: https://img.shields.io/pypi/l/django-djcopyright\n :alt: License\n.. |pypi-version| image:: https://img.shields.io/pypi/v/django-djcopyright\n :alt: Version\n.. |pypi-django-version| image:: https://img.shields.io/pypi/djversions/django-djcopyright\n :alt: Supported Django version\n.. |pypi-python-version| image:: https://img.shields.io/pypi/pyversions/django-djcopyright\n :alt: Supported Python version\n.. |pypi-format| image:: https://img.shields.io/pypi/format/django-djcopyright\n :alt: Package format\n.. |pypi-wheel| image:: https://img.shields.io/pypi/wheel/django-djcopyright\n :alt: Python wheel support\n.. |pypi-status| image:: https://img.shields.io/pypi/status/django-djcopyright\n :alt: Package status\n.. _GitHub: https://github.com/vint21h/django-djcopyright/actions/\n.. _Coveralls: https://coveralls.io/github/vint21h/django-djcopyright?branch=master\n.. _pypi-license: https://pypi.org/project/django-djcopyright/\n.. _pypi-version: https://pypi.org/project/django-djcopyright/\n.. _pypi-django-version: https://pypi.org/project/django-djcopyright/\n.. _pypi-python-version: https://pypi.org/project/django-djcopyright/\n.. _pypi-format: https://pypi.org/project/django-djcopyright/\n.. _pypi-wheel: https://pypi.org/project/django-djcopyright/\n.. _pypi-status: https://pypi.org/project/django-djcopyright/\n\n\n",
"description_content_type": "text/x-rst",
"docs_url": "https://pythonhosted.org/django-djcopyright/",
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://github.com/vint21h/django-djcopyright/",
"keywords": "django,copyright,django-copyright",
"license": "GPLv3+",
"maintainer": "",
"maintainer_email": "",
"name": "django-djcopyright",
"package_url": "https://pypi.org/project/django-djcopyright/",
"platform": "",
"project_url": "https://pypi.org/project/django-djcopyright/",
"project_urls": {
"Homepage": "https://github.com/vint21h/django-djcopyright/"
},
"release_url": "https://pypi.org/project/django-djcopyright/0.17.0/",
"requires_dist": [
"django (<4.0,>=2.2)",
"django-appconf (>=1.0.3)",
"attrs (==21.2.0) ; extra == 'test'",
"bandit (==1.7.1) ; extra == 'test'",
"black (==21.10b0) ; extra == 'test'",
"bpython (==0.22.1) ; extra == 'test'",
"check-manifest (==0.47) ; extra == 'test'",
"check-wheel-contents (==0.3.3) ; extra == 'test'",
"coverage (==6.1.2) ; extra == 'test'",
"coveralls (==3.3.1) ; extra == 'test'",
"curlylint (==0.13.0) ; extra == 'test'",
"darglint (==1.8.1) ; extra == 'test'",
"dennis (==0.9) ; extra == 'test'",
"django-stubs (==1.9.0) ; extra == 'test'",
"dlint (==0.12.0) ; extra == 'test'",
"dodgy (==0.2.1) ; extra == 'test'",
"dotenv-linter (==0.2.0) ; extra == 'test'",
"flake8-annotations-complexity (==0.0.6) ; extra == 'test'",
"flake8-annotations-coverage (==0.0.5) ; extra == 'test'",
"flake8-broken-line (==0.4.0) ; extra == 'test'",
"flake8-bugbear (==21.9.2) ; extra == 'test'",
"flake8-builtins (==1.5.3) ; extra == 'test'",
"flake8-coding (==1.3.2) ; extra == 'test'",
"flake8-cognitive-complexity (==0.1.0) ; extra == 'test'",
"flake8-comprehensions (==3.7.0) ; extra == 'test'",
"flake8-debugger (==4.0.0) ; extra == 'test'",
"flake8-django (==1.1.2) ; extra == 'test'",
"flake8-docstrings (==1.6.0) ; extra == 'test'",
"flake8-eradicate (==1.2.0) ; extra == 'test'",
"flake8-executable (==2.1.1) ; extra == 'test'",
"flake8-expression-complexity (==0.0.9) ; extra == 'test'",
"flake8-fixme (==1.1.1) ; extra == 'test'",
"flake8-functions (==0.0.6) ; extra == 'test'",
"flake8-mutable (==1.2.0) ; extra == 'test'",
"flake8-print (==4.0.0) ; extra == 'test'",
"flake8-return (==1.1.3) ; extra == 'test'",
"flake8-simplify (==0.14.2) ; extra == 'test'",
"flake8-typing-imports (==1.11.0) ; extra == 'test'",
"flake8-use-fstring (==1.3) ; extra == 'test'",
"flake8-variables-names (==0.0.4) ; extra == 'test'",
"flake8 (==3.9.2) ; extra == 'test'",
"importlib-metadata (==4.8.2) ; extra == 'test'",
"interrogate (==1.5.0) ; extra == 'test'",
"isort (==5.10.1) ; extra == 'test'",
"mypy (==0.910) ; extra == 'test'",
"pep8-naming (==0.12.1) ; extra == 'test'",
"pip-outdated (==0.4.0) ; extra == 'test'",
"polint (==0.4) ; extra == 'test'",
"pre-commit-hooks (==4.0.1) ; extra == 'test'",
"pre-commit (==2.15.0) ; extra == 'test'",
"pygments (==2.10.0) ; extra == 'test'",
"pylint-django (==2.4.4) ; extra == 'test'",
"pylint (==2.11.1) ; extra == 'test'",
"pyroma (==3.2) ; extra == 'test'",
"pytest-cov (==3.0.0) ; extra == 'test'",
"pytest-django (==4.4.0) ; extra == 'test'",
"pytest-extra-durations (==0.1.3) ; extra == 'test'",
"pytest-instafail (==0.4.2) ; extra == 'test'",
"pytest-sugar (==0.9.4) ; extra == 'test'",
"pytest-timer[termcolor] (==0.0.11) ; extra == 'test'",
"pytest (==6.2.5) ; extra == 'test'",
"readme-renderer (==30.0) ; extra == 'test'",
"removestar (==1.3.1) ; extra == 'test'",
"seed-isort-config (==2.2.0) ; extra == 'test'",
"tabulate (==0.8.9) ; extra == 'test'",
"tox-gh-actions (==2.8.1) ; extra == 'test'",
"tox-pyenv (==1.1.0) ; extra == 'test'",
"tox (==3.24.4) ; extra == 'test'",
"twine (==3.6.0) ; extra == 'test'",
"wheel (==0.37.0) ; extra == 'test'",
"yesqa (==1.3.0) ; extra == 'test'"
],
"requires_python": "",
"summary": "Django reusable app to show pretty formatted copyright years",
"version": "0.17.0",
"yanked": false,
"yanked_reason": null
},
"last_serial": 12066711,
"releases": {
"0.1.0": [
{
"comment_text": "",
"digests": {
"md5": "d2054824a76b1d6fc1bf73ebdf55c372",
"sha256": "8f0393362e778cbf4e8c0ecad7e1fad4c261b6bb49241af3a98e986d9cb8ccf2"
},
"downloads": -1,
"filename": "django-djcopyright-0.1.0.tar.gz",
"has_sig": false,
"md5_digest": "d2054824a76b1d6fc1bf73ebdf55c372",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 15534,
"upload_time": "2015-05-26T22:13:10",
"upload_time_iso_8601": "2015-05-26T22:13:10.972902Z",
"url": "https://files.pythonhosted.org/packages/5f/ca/096ef04b67e030ad6ddbff4e03ba7ec23830e1550b2e0ba69029e5dcc065/django-djcopyright-0.1.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.1.1": [
{
"comment_text": "",
"digests": {
"md5": "7925a1a1135816efd8a2d0db4bc9a6fe",
"sha256": "a3aeff91615380fc66d8e7230f020418fdbd3ca69f2e676af54d27ff21a82698"
},
"downloads": -1,
"filename": "django-djcopyright-0.1.1.tar.gz",
"has_sig": false,
"md5_digest": "7925a1a1135816efd8a2d0db4bc9a6fe",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 15588,
"upload_time": "2015-05-26T22:32:31",
"upload_time_iso_8601": "2015-05-26T22:32:31.124072Z",
"url": "https://files.pythonhosted.org/packages/74/46/0b73b0fa150dc2a1fe4f8ee76c44db8e544c1923b41397ba76674c46ecf0/django-djcopyright-0.1.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.1.2": [
{
"comment_text": "",
"digests": {
"md5": "e0a84a590eb7cba1af04f75797202ee6",
"sha256": "210911fa820d4c8b90a1833fda116023bc939b1437e2848a9d56412d75890abf"
},
"downloads": -1,
"filename": "django-djcopyright-0.1.2.tar.gz",
"has_sig": false,
"md5_digest": "e0a84a590eb7cba1af04f75797202ee6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 15618,
"upload_time": "2015-05-27T01:45:46",
"upload_time_iso_8601": "2015-05-27T01:45:46.741067Z",
"url": "https://files.pythonhosted.org/packages/8c/2c/1fd6db529528b69d9a7156fc3eca2ee117de3c27d63d4f618851c8500ea9/django-djcopyright-0.1.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.10.0": [
{
"comment_text": "",
"digests": {
"md5": "b1e028262ed8d2da84b25900fcabb526",
"sha256": "742ea4898553580f02867b957fc4fa11c3077d062f4e77881562cf5618d17622"
},
"downloads": -1,
"filename": "django_djcopyright-0.10.0-py3-none-any.whl",
"has_sig": true,
"md5_digest": "b1e028262ed8d2da84b25900fcabb526",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20797,
"upload_time": "2019-12-12T03:09:54",
"upload_time_iso_8601": "2019-12-12T03:09:54.942787Z",
"url": "https://files.pythonhosted.org/packages/99/87/81897c42d407c06321bc8c98da0be06246f4df2e092c707f5470ede9fd38/django_djcopyright-0.10.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "02ecaf5e1c49438ec6a13f4cae0b329c",
"sha256": "ed1154be6038fb9c68b6490a798c1fb238e8019db4a5edab62994346f963df9c"
},
"downloads": -1,
"filename": "django-djcopyright-0.10.0.zip",
"has_sig": true,
"md5_digest": "02ecaf5e1c49438ec6a13f4cae0b329c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28643,
"upload_time": "2019-12-12T03:09:57",
"upload_time_iso_8601": "2019-12-12T03:09:57.101132Z",
"url": "https://files.pythonhosted.org/packages/df/44/2f68fa3462b1cf6d826bbe7d0f0e0f1af1540207f15d6e35ce737d3298c7/django-djcopyright-0.10.0.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.10.1": [
{
"comment_text": "",
"digests": {
"md5": "877d68a322583868244a0b2aaa37bf84",
"sha256": "66cce8c52d5d34c98f74df06f7652f775ae57e4b64037bd9be2d41a09a6ffb7f"
},
"downloads": -1,
"filename": "django_djcopyright-0.10.1-py3-none-any.whl",
"has_sig": true,
"md5_digest": "877d68a322583868244a0b2aaa37bf84",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20792,
"upload_time": "2019-12-17T06:10:53",
"upload_time_iso_8601": "2019-12-17T06:10:53.520148Z",
"url": "https://files.pythonhosted.org/packages/bb/76/87abe4060f87c1bc379a6d6d18f8d1bedebc7100919afd29857727a98309/django_djcopyright-0.10.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "53e8a6caaf7fd01f7d936aeffa498308",
"sha256": "70a557dfe5b3fc114a665f42698c949cc699797f94e5a135c8cbbb22a0dab5a4"
},
"downloads": -1,
"filename": "django-djcopyright-0.10.1.zip",
"has_sig": true,
"md5_digest": "53e8a6caaf7fd01f7d936aeffa498308",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28638,
"upload_time": "2019-12-17T06:10:55",
"upload_time_iso_8601": "2019-12-17T06:10:55.885720Z",
"url": "https://files.pythonhosted.org/packages/7f/4e/39c742c97711a9317039eb0b081b9224a413a6501f2ce8262a87ebc17122/django-djcopyright-0.10.1.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.10.2": [
{
"comment_text": "",
"digests": {
"md5": "33e067fa5f3fd42e73e571df382d4c0c",
"sha256": "e951ded8459314d4053c909dbb3307cefd9c84d2874e53ec2be0fc990f3407cb"
},
"downloads": -1,
"filename": "django_djcopyright-0.10.2-py3-none-any.whl",
"has_sig": true,
"md5_digest": "33e067fa5f3fd42e73e571df382d4c0c",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20801,
"upload_time": "2020-01-05T19:03:24",
"upload_time_iso_8601": "2020-01-05T19:03:24.464891Z",
"url": "https://files.pythonhosted.org/packages/bd/0f/648b95f9bcce5eadea648eea7dc6a11b6d92528bb1d83888f934184cbfd6/django_djcopyright-0.10.2-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "ac46c0806687343c841d96620ddaf638",
"sha256": "cdc44d09604542993c656eac7691e284a6e3b7f19296f30a6de4a5843d6e056f"
},
"downloads": -1,
"filename": "django-djcopyright-0.10.2.zip",
"has_sig": true,
"md5_digest": "ac46c0806687343c841d96620ddaf638",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28646,
"upload_time": "2020-01-05T19:03:26",
"upload_time_iso_8601": "2020-01-05T19:03:26.510782Z",
"url": "https://files.pythonhosted.org/packages/01/69/c6ad4fb818399a121dae3f18ef5aa6c0e7b014dc8bfa6757650bd56a3007/django-djcopyright-0.10.2.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.10.3": [
{
"comment_text": "",
"digests": {
"md5": "1e208f5c639a68ed6183a4db8c2ec8d9",
"sha256": "442213cd9420997691ac68b1dd0827a72a2303c3016ab306bdfc8eb2259dcee6"
},
"downloads": -1,
"filename": "django_djcopyright-0.10.3-py3-none-any.whl",
"has_sig": true,
"md5_digest": "1e208f5c639a68ed6183a4db8c2ec8d9",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20802,
"upload_time": "2020-01-19T12:36:16",
"upload_time_iso_8601": "2020-01-19T12:36:16.774183Z",
"url": "https://files.pythonhosted.org/packages/2b/a0/e87642cfc782d6cdc8e53241a2440c83702f139103cba2a03fffd6e72f9c/django_djcopyright-0.10.3-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "cd293bfd7e8c4545b5a686808e9a2feb",
"sha256": "043cbb6ee51ac55509cadee51ce08463fd58ee4f302a18e374326b538c04280a"
},
"downloads": -1,
"filename": "django-djcopyright-0.10.3.zip",
"has_sig": true,
"md5_digest": "cd293bfd7e8c4545b5a686808e9a2feb",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28651,
"upload_time": "2020-01-19T12:36:19",
"upload_time_iso_8601": "2020-01-19T12:36:19.132366Z",
"url": "https://files.pythonhosted.org/packages/60/5a/ecfe9c9ec088cdc1213689e99cc39c2bed90fa37f2257d618df0b211250a/django-djcopyright-0.10.3.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.11.0": [
{
"comment_text": "",
"digests": {
"md5": "cea6d4458c7da59c9da6fa5dd14a15a3",
"sha256": "c33bfbbe66fbc5c2bb4d675d7477c6492abf8200de26f761af8a9c4e67e4d2e9"
},
"downloads": -1,
"filename": "django_djcopyright-0.11.0-py3-none-any.whl",
"has_sig": true,
"md5_digest": "cea6d4458c7da59c9da6fa5dd14a15a3",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20829,
"upload_time": "2020-02-04T18:19:32",
"upload_time_iso_8601": "2020-02-04T18:19:32.430056Z",
"url": "https://files.pythonhosted.org/packages/dd/0f/71be4d87daa1f94db046b6a70cdde15132b520522ba23f0aaacca9dc2619/django_djcopyright-0.11.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "59c30e9bd8729d0dc3f7d05521dc24c2",
"sha256": "7651e014f2eab97af5a55384e67d77dd7e96ff80b78d2d651eec09bab316566b"
},
"downloads": -1,
"filename": "django-djcopyright-0.11.0.zip",
"has_sig": true,
"md5_digest": "59c30e9bd8729d0dc3f7d05521dc24c2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28701,
"upload_time": "2020-02-04T18:19:34",
"upload_time_iso_8601": "2020-02-04T18:19:34.970522Z",
"url": "https://files.pythonhosted.org/packages/7f/0d/fead8fafc45d38e610c9fd88b858f0c5d08fc2f415e7d8678c8a875c3ac1/django-djcopyright-0.11.0.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.11.1": [
{
"comment_text": "",
"digests": {
"md5": "9b22366355ba650997f63503292e405a",
"sha256": "37492aaacf4717296440b86aa4c5c569538509ddb4c33d7e20325712dfbd0148"
},
"downloads": -1,
"filename": "django_djcopyright-0.11.1-py3-none-any.whl",
"has_sig": true,
"md5_digest": "9b22366355ba650997f63503292e405a",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20833,
"upload_time": "2020-02-04T18:26:10",
"upload_time_iso_8601": "2020-02-04T18:26:10.829629Z",
"url": "https://files.pythonhosted.org/packages/9e/c3/ae1ce7a7ffcf119a356a0cd5adc94c68a3bf0f1afa35384dde9059377d70/django_djcopyright-0.11.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "b3eea688cf6ad148cb1e97fd5cd10a57",
"sha256": "a5221b4d0cd47ec0f1fd7468a93e8391f4503903229cc35a9aa18a9ab8d188c2"
},
"downloads": -1,
"filename": "django-djcopyright-0.11.1.zip",
"has_sig": true,
"md5_digest": "b3eea688cf6ad148cb1e97fd5cd10a57",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28703,
"upload_time": "2020-02-04T18:26:13",
"upload_time_iso_8601": "2020-02-04T18:26:13.249598Z",
"url": "https://files.pythonhosted.org/packages/d1/b7/723440b334e62bcb42a421dba8ed7ad54065c7dbef08742022f8388b071c/django-djcopyright-0.11.1.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.11.2": [
{
"comment_text": "",
"digests": {
"md5": "68b5175dbda5bb9896c96a9b4b43e1bc",
"sha256": "0a83c13861bf11db4903fe92d83d62f8fdff5292bbf60926b8ef4d63584ba860"
},
"downloads": -1,
"filename": "django_djcopyright-0.11.2-py3-none-any.whl",
"has_sig": true,
"md5_digest": "68b5175dbda5bb9896c96a9b4b43e1bc",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20833,
"upload_time": "2020-02-06T00:41:38",
"upload_time_iso_8601": "2020-02-06T00:41:38.660276Z",
"url": "https://files.pythonhosted.org/packages/d5/c7/0630eec92624f59a23023e7446e4ce19f5958fdad84078764ad95a735483/django_djcopyright-0.11.2-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "4ebaa73720a52b5b2ba8b6e1bf14aa22",
"sha256": "aa039e0c85ee7369603af3654661bba64799816b147a56f96072884dbee0c82b"
},
"downloads": -1,
"filename": "django-djcopyright-0.11.2.zip",
"has_sig": true,
"md5_digest": "4ebaa73720a52b5b2ba8b6e1bf14aa22",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28702,
"upload_time": "2020-02-06T00:41:40",
"upload_time_iso_8601": "2020-02-06T00:41:40.837251Z",
"url": "https://files.pythonhosted.org/packages/58/63/689791b17d315ad3e025a57e70972967cd15474811c953cd2524b9d3e96e/django-djcopyright-0.11.2.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.11.3": [
{
"comment_text": "",
"digests": {
"md5": "67776a84cc9dac76b82b813093c517d2",
"sha256": "f6861f2e7a190918e83309fec92b23ad9cafa69350b4fa4a62586ebf406691e1"
},
"downloads": -1,
"filename": "django_djcopyright-0.11.3-py3-none-any.whl",
"has_sig": true,
"md5_digest": "67776a84cc9dac76b82b813093c517d2",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20835,
"upload_time": "2020-02-09T16:56:06",
"upload_time_iso_8601": "2020-02-09T16:56:06.565491Z",
"url": "https://files.pythonhosted.org/packages/1b/ab/4d8c61982aa57b50edf1b5b2e6ec2057a44ead46d6a08ebfe925cac31955/django_djcopyright-0.11.3-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "e8de56dcabd3db1013d2d2d81466379a",
"sha256": "5b691c7edb3c3ab8cf52e3e36cf100b6cecd9af87e94b8068d292b6c21e0ed9d"
},
"downloads": -1,
"filename": "django-djcopyright-0.11.3.zip",
"has_sig": true,
"md5_digest": "e8de56dcabd3db1013d2d2d81466379a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28703,
"upload_time": "2020-02-09T16:56:08",
"upload_time_iso_8601": "2020-02-09T16:56:08.892868Z",
"url": "https://files.pythonhosted.org/packages/76/55/bf978f7fec3dcd8cd51a4458fc1930671320434d4c34e41a6d47ceffbd37/django-djcopyright-0.11.3.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.11.4": [
{
"comment_text": "",
"digests": {
"md5": "5de1eabe1881292319c7ab185412b43f",
"sha256": "07fd3ca961f8bd189efe2c55cfeb6e874628865f48c0f1abf0f84161128ffd0f"
},
"downloads": -1,
"filename": "django_djcopyright-0.11.4-py3-none-any.whl",
"has_sig": true,
"md5_digest": "5de1eabe1881292319c7ab185412b43f",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20834,
"upload_time": "2020-02-14T07:43:37",
"upload_time_iso_8601": "2020-02-14T07:43:37.372816Z",
"url": "https://files.pythonhosted.org/packages/b4/80/3188adc2528f44cb353e87e5e54c511951c718ed827af5f9ccf07a2f78f9/django_djcopyright-0.11.4-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "c803d7bcb182f22d6226876cb5369fd1",
"sha256": "946045ba2c156da3887ceb300080920643f2d7dc6f8de1143beba3ef5c75a105"
},
"downloads": -1,
"filename": "django-djcopyright-0.11.4.zip",
"has_sig": true,
"md5_digest": "c803d7bcb182f22d6226876cb5369fd1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28702,
"upload_time": "2020-02-14T07:43:39",
"upload_time_iso_8601": "2020-02-14T07:43:39.605482Z",
"url": "https://files.pythonhosted.org/packages/1a/9f/98b946dd897dec0be4cede56d36445a208a23a2268b63c95b9717de96850/django-djcopyright-0.11.4.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.11.5": [
{
"comment_text": "",
"digests": {
"md5": "b8f8c0867b6ccb0d0edad09b2c334e77",
"sha256": "bd6ad3f2b8c0342e32cfc0a7fd42f58b75dad60ad51fa954b0e1aa45a130a93f"
},
"downloads": -1,
"filename": "django_djcopyright-0.11.5-py3-none-any.whl",
"has_sig": true,
"md5_digest": "b8f8c0867b6ccb0d0edad09b2c334e77",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20837,
"upload_time": "2020-02-18T06:44:56",
"upload_time_iso_8601": "2020-02-18T06:44:56.057533Z",
"url": "https://files.pythonhosted.org/packages/0c/ac/b4d465ea9939e6612d1028b687d0faf0c3dfe648e9772529bf7e4d1ae867/django_djcopyright-0.11.5-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "ee913bf037d447575b7ab6914ac17b14",
"sha256": "a7c5d8aeeb53aee1abd02a40c173e97733884acc4d119ac8fa12418f02430169"
},
"downloads": -1,
"filename": "django-djcopyright-0.11.5.zip",
"has_sig": true,
"md5_digest": "ee913bf037d447575b7ab6914ac17b14",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28702,
"upload_time": "2020-02-18T06:44:58",
"upload_time_iso_8601": "2020-02-18T06:44:58.150010Z",
"url": "https://files.pythonhosted.org/packages/6b/7f/06abb555ea8513841097f432dabc03c8272d2b016213da62bdcdddab67d6/django-djcopyright-0.11.5.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.12.0": [
{
"comment_text": "",
"digests": {
"md5": "8a7e3880388534939665a38ce3ec7f5a",
"sha256": "4cfad0b94dc72b59b4f5b662de960996a8355f6ecd63ab87e28edd01a56ec496"
},
"downloads": -1,
"filename": "django_djcopyright-0.12.0-py3-none-any.whl",
"has_sig": true,
"md5_digest": "8a7e3880388534939665a38ce3ec7f5a",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20831,
"upload_time": "2020-02-19T16:03:21",
"upload_time_iso_8601": "2020-02-19T16:03:21.814339Z",
"url": "https://files.pythonhosted.org/packages/d8/c6/9711240e4d40ffa24b6347d901d3755c587b9bf486c1a3c989d0f4b492fb/django_djcopyright-0.12.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "eecdc9f210bb4a5456c3a3ce8efd3b72",
"sha256": "58285dbb119e44a958324fbe347a7bfe016bee85c4632d6132216b58c12622fd"
},
"downloads": -1,
"filename": "django-djcopyright-0.12.0.zip",
"has_sig": true,
"md5_digest": "eecdc9f210bb4a5456c3a3ce8efd3b72",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28694,
"upload_time": "2020-02-19T16:03:23",
"upload_time_iso_8601": "2020-02-19T16:03:23.850788Z",
"url": "https://files.pythonhosted.org/packages/ff/f4/3b7bfe46bba1e04834b0fd9cb28f607e8f05134f2b59a46026f85892740e/django-djcopyright-0.12.0.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.12.1": [
{
"comment_text": "",
"digests": {
"md5": "ba103bb45da21792c198e7ed77b997de",
"sha256": "8f06a5d507bc5f98fb422b716b51206e7726be36fe7aab17b52ed30630e4708f"
},
"downloads": -1,
"filename": "django_djcopyright-0.12.1-py3-none-any.whl",
"has_sig": true,
"md5_digest": "ba103bb45da21792c198e7ed77b997de",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20834,
"upload_time": "2020-03-02T20:44:59",
"upload_time_iso_8601": "2020-03-02T20:44:59.990962Z",
"url": "https://files.pythonhosted.org/packages/7e/13/ec303272c06e8c12e2ac035ac963115765bcf88df78ba80b978d4b83ff01/django_djcopyright-0.12.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "2aac27f81235e090e10e0055e197ddf2",
"sha256": "e432628d4e54321e58214e805390c0cd7c21583da8f9804d4922f48e6019acd5"
},
"downloads": -1,
"filename": "django-djcopyright-0.12.1.zip",
"has_sig": true,
"md5_digest": "2aac27f81235e090e10e0055e197ddf2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28695,
"upload_time": "2020-03-02T20:45:01",
"upload_time_iso_8601": "2020-03-02T20:45:01.802605Z",
"url": "https://files.pythonhosted.org/packages/3a/58/2d56d6def7d1e9ad1f50b230db59e38a247422afd14a265ad5d6642237e4/django-djcopyright-0.12.1.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.12.10": [
{
"comment_text": "",
"digests": {
"md5": "84637fc329f90d829ad742105f6b11be",
"sha256": "7bb30354cfa99f6e842077a7bd5575d9be07b29a9cb38352908e79bc08e5e21a"
},
"downloads": -1,
"filename": "django_djcopyright-0.12.10-py3-none-any.whl",
"has_sig": true,
"md5_digest": "84637fc329f90d829ad742105f6b11be",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20834,
"upload_time": "2020-04-12T22:02:41",
"upload_time_iso_8601": "2020-04-12T22:02:41.709756Z",
"url": "https://files.pythonhosted.org/packages/c5/db/0ca171335eb1805ccb3906508e0a52a6345a8ec1f87d553a316c6a840e6a/django_djcopyright-0.12.10-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "a170fd865cab10f73affb70f78db783d",
"sha256": "cff0eda30ee6fd090fae69b6301dd7537628568e09bf4e4aca66c65a7b4e3c03"
},
"downloads": -1,
"filename": "django-djcopyright-0.12.10.zip",
"has_sig": true,
"md5_digest": "a170fd865cab10f73affb70f78db783d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28759,
"upload_time": "2020-04-12T22:02:43",
"upload_time_iso_8601": "2020-04-12T22:02:43.326323Z",
"url": "https://files.pythonhosted.org/packages/cf/55/d53b639cf732da70f48796dcbcde4b802bf03ed8f4d34525be6c1b93d08f/django-djcopyright-0.12.10.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.12.11": [
{
"comment_text": "",
"digests": {
"md5": "5a159c9723a455b58420bb15a0a9d2ea",
"sha256": "cfeb62b7bbe8676a8819261bb1d415c8bb017ab53d61eeb60b6a4649c4a5e760"
},
"downloads": -1,
"filename": "django_djcopyright-0.12.11-py3-none-any.whl",
"has_sig": true,
"md5_digest": "5a159c9723a455b58420bb15a0a9d2ea",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20836,
"upload_time": "2020-04-13T15:50:28",
"upload_time_iso_8601": "2020-04-13T15:50:28.303328Z",
"url": "https://files.pythonhosted.org/packages/d9/1d/f03d7c57ef04d5f81476496b853406545968bc895b27177442397216971f/django_djcopyright-0.12.11-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "6dc263178efa6ad1dd468bcc40931f6d",
"sha256": "74993ca70953b1f8744eb7265131f3b5d1e6f6736caeebdaad4cf17fe4262e0a"
},
"downloads": -1,
"filename": "django-djcopyright-0.12.11.zip",
"has_sig": true,
"md5_digest": "6dc263178efa6ad1dd468bcc40931f6d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28758,
"upload_time": "2020-04-13T15:50:30",
"upload_time_iso_8601": "2020-04-13T15:50:30.407541Z",
"url": "https://files.pythonhosted.org/packages/a0/a9/aaf3a32c50d925efb45ba7f709c60faf13e6810f3faee384c275f3d01a75/django-djcopyright-0.12.11.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.12.12": [
{
"comment_text": "",
"digests": {
"md5": "7795a48982c6ff88438cb229162abff7",
"sha256": "69c58fb7c1cea59668e7f45d9c0c39cf62d994b648efeb7951d13275918b5709"
},
"downloads": -1,
"filename": "django_djcopyright-0.12.12-py3-none-any.whl",
"has_sig": true,
"md5_digest": "7795a48982c6ff88438cb229162abff7",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20832,
"upload_time": "2020-04-14T12:19:45",
"upload_time_iso_8601": "2020-04-14T12:19:45.355319Z",
"url": "https://files.pythonhosted.org/packages/ae/f6/ec113d37db9714c5b466b1dc921ffa8afcb8e33a2efb9015f4f8880972c1/django_djcopyright-0.12.12-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "0c5f209b7c764ac1097efe475bcb1824",
"sha256": "b2abfcd2ca8eff2db710fb38aae21eeacb464aff9b83418d10e8c699043e1fcb"
},
"downloads": -1,
"filename": "django-djcopyright-0.12.12.zip",
"has_sig": true,
"md5_digest": "0c5f209b7c764ac1097efe475bcb1824",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28758,
"upload_time": "2020-04-14T12:19:47",
"upload_time_iso_8601": "2020-04-14T12:19:47.308910Z",
"url": "https://files.pythonhosted.org/packages/dc/e0/21f5b95fa48587505310c37b8b6b043964959e22448af5bfa3e39dbebd8f/django-djcopyright-0.12.12.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.12.13": [
{
"comment_text": "",
"digests": {
"md5": "815ce32cc1dd08b2717c71602fdd1334",
"sha256": "389416cd1e6b36b07f97e2b52d4de770d3fd585c9376d5723efd00352d1034c7"
},
"downloads": -1,
"filename": "django_djcopyright-0.12.13-py3-none-any.whl",
"has_sig": true,
"md5_digest": "815ce32cc1dd08b2717c71602fdd1334",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20838,
"upload_time": "2020-04-25T04:02:43",
"upload_time_iso_8601": "2020-04-25T04:02:43.498103Z",
"url": "https://files.pythonhosted.org/packages/d4/66/d1503483cbb93ebb62e01261a41a916f52f4abc46353d97ccce6b6efd879/django_djcopyright-0.12.13-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "d4b47741171c1bfe623bba0b2d46a8f3",
"sha256": "058b84259ec6a0ac2b33f60d92e86f1fa574872bc63a098a0fac5933dd92b624"
},
"downloads": -1,
"filename": "django-djcopyright-0.12.13.zip",
"has_sig": true,
"md5_digest": "d4b47741171c1bfe623bba0b2d46a8f3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28765,
"upload_time": "2020-04-25T04:02:45",
"upload_time_iso_8601": "2020-04-25T04:02:45.693104Z",
"url": "https://files.pythonhosted.org/packages/28/26/fd1b76f763355db5dc3e1386fc63df76a0d3b5d925c740d9641381da42c1/django-djcopyright-0.12.13.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.12.3": [
{
"comment_text": "",
"digests": {
"md5": "ac54d9298f3383fa13b42473279229dc",
"sha256": "ee480aab5bb5b6470bb33d4ad8cd343bafd2b6939bf1476436662215c37843d4"
},
"downloads": -1,
"filename": "django_djcopyright-0.12.3-py3-none-any.whl",
"has_sig": true,
"md5_digest": "ac54d9298f3383fa13b42473279229dc",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20838,
"upload_time": "2020-03-04T12:34:54",
"upload_time_iso_8601": "2020-03-04T12:34:54.410294Z",
"url": "https://files.pythonhosted.org/packages/9f/07/cc649dab7c5dafe79b759e16b6b20e15de277e102d3fa6e5515b3a197640/django_djcopyright-0.12.3-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "a3e4d4dbfcb437829ac898314073a642",
"sha256": "d3a32fc17a29f943f7475af4f0707bc8f9be0e66d12488931685f0c3fa7ae377"
},
"downloads": -1,
"filename": "django-djcopyright-0.12.3.zip",
"has_sig": true,
"md5_digest": "a3e4d4dbfcb437829ac898314073a642",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28699,
"upload_time": "2020-03-04T12:34:56",
"upload_time_iso_8601": "2020-03-04T12:34:56.147760Z",
"url": "https://files.pythonhosted.org/packages/3a/17/28b5b2ba9aaa0e22566525d9d50551e30aa563ca926c5463446d22205a61/django-djcopyright-0.12.3.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.12.4": [
{
"comment_text": "",
"digests": {
"md5": "77a96161539a9a841da8663b44310e01",
"sha256": "bbd54d03511a3914108388abf250d2acd467f9b25c0461eb4633fee6e73276ee"
},
"downloads": -1,
"filename": "django_djcopyright-0.12.4-py3-none-any.whl",
"has_sig": true,
"md5_digest": "77a96161539a9a841da8663b44310e01",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20836,
"upload_time": "2020-03-08T16:41:11",
"upload_time_iso_8601": "2020-03-08T16:41:11.483867Z",
"url": "https://files.pythonhosted.org/packages/3f/3d/4816ece0f4f355d7269e1f24ea8237d4e420227863f37ea21c6dfe71f4ce/django_djcopyright-0.12.4-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "fa0c2fe6b85c3f4b73fff38426cbc9c0",
"sha256": "529904752bdbd9076910b4d7cf034a262dfd2cb1a279a166af4927394ecbd698"
},
"downloads": -1,
"filename": "django-djcopyright-0.12.4.zip",
"has_sig": true,
"md5_digest": "fa0c2fe6b85c3f4b73fff38426cbc9c0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28700,
"upload_time": "2020-03-08T16:41:13",
"upload_time_iso_8601": "2020-03-08T16:41:13.296806Z",
"url": "https://files.pythonhosted.org/packages/af/25/e8fa828cdf863542cf081fc2fd22133678460bc9275192a921bd5b9477d0/django-djcopyright-0.12.4.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.12.5": [
{
"comment_text": "",
"digests": {
"md5": "88f1f8976d2422faa379e899ac45e8d6",
"sha256": "131167c7d94ebc7e5a5c2cc6cdbf79145f964b404b38b3901e52b95f9b8ef16d"
},
"downloads": -1,
"filename": "django_djcopyright-0.12.5-py3-none-any.whl",
"has_sig": true,
"md5_digest": "88f1f8976d2422faa379e899ac45e8d6",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20835,
"upload_time": "2020-03-14T22:43:55",
"upload_time_iso_8601": "2020-03-14T22:43:55.221395Z",
"url": "https://files.pythonhosted.org/packages/43/e6/59f1e9db90d710c024a1a2f8dff395f5a3923c05c6a6a58f1c41b911522d/django_djcopyright-0.12.5-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "bb64d2134214074c2d14b92a15c0e269",
"sha256": "7db8ad9370451815854823d4ff6607bef5b4b6e5cf1b4dd5ad23018844825b99"
},
"downloads": -1,
"filename": "django-djcopyright-0.12.5.zip",
"has_sig": true,
"md5_digest": "bb64d2134214074c2d14b92a15c0e269",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28701,
"upload_time": "2020-03-14T22:43:57",
"upload_time_iso_8601": "2020-03-14T22:43:57.390476Z",
"url": "https://files.pythonhosted.org/packages/5f/58/e89cc50730909ca571e1b260e911b26ec69b1730706b9d411f50421ecadf/django-djcopyright-0.12.5.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.12.6": [
{
"comment_text": "",
"digests": {
"md5": "17ee1584657a3c69bf261d476f6c1b33",
"sha256": "ccc027c7d9e3238c6dc8f35d6c3f5f58308522259f6985ed04871281c047183d"
},
"downloads": -1,
"filename": "django_djcopyright-0.12.6-py3-none-any.whl",
"has_sig": true,
"md5_digest": "17ee1584657a3c69bf261d476f6c1b33",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20830,
"upload_time": "2020-03-16T19:19:56",
"upload_time_iso_8601": "2020-03-16T19:19:56.928568Z",
"url": "https://files.pythonhosted.org/packages/a2/44/07444a3c6b8d06bf5cc6bae38fe2edc7a156b0923aa835fe2a84bd972ba8/django_djcopyright-0.12.6-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "9289cc7555b6b48fa718d2df26e9a54c",
"sha256": "28d295b2bafea03d74bf4e640d5d38bfd8bcc1d2f18ad916d56bd1f3e42b4959"
},
"downloads": -1,
"filename": "django-djcopyright-0.12.6.zip",
"has_sig": true,
"md5_digest": "9289cc7555b6b48fa718d2df26e9a54c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28694,
"upload_time": "2020-03-16T19:19:58",
"upload_time_iso_8601": "2020-03-16T19:19:58.801201Z",
"url": "https://files.pythonhosted.org/packages/5d/5a/c53b893b32090e7f72ae29bee9e8c15b742a36d32607e13ecabff63f28d3/django-djcopyright-0.12.6.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.12.7": [
{
"comment_text": "",
"digests": {
"md5": "df169d1f863f8c7184e62ad7aba72cb6",
"sha256": "f16823d84b73a8d6f80c6f6acff95f22e78ceb3853e721401ef384a00bc17b4e"
},
"downloads": -1,
"filename": "django_djcopyright-0.12.7-py3-none-any.whl",
"has_sig": true,
"md5_digest": "df169d1f863f8c7184e62ad7aba72cb6",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20834,
"upload_time": "2020-03-17T00:48:57",
"upload_time_iso_8601": "2020-03-17T00:48:57.159370Z",
"url": "https://files.pythonhosted.org/packages/b8/65/6932f3ea4ce1420de217427fbfc116162b71052d3b5693349426e3675f3d/django_djcopyright-0.12.7-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "8e0ffd028df93d630e2866c2e3ab5ce3",
"sha256": "31f69b4130d7f9c0433a96c9940a9756441fc910740c6b1ed7b503705729ec02"
},
"downloads": -1,
"filename": "django-djcopyright-0.12.7.zip",
"has_sig": true,
"md5_digest": "8e0ffd028df93d630e2866c2e3ab5ce3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28697,
"upload_time": "2020-03-17T00:48:59",
"upload_time_iso_8601": "2020-03-17T00:48:59.339123Z",
"url": "https://files.pythonhosted.org/packages/bc/99/3f521beb1309bd7faffc35957b80d7e9dc8ee3fd0fcbfd0b28dfc64626c8/django-djcopyright-0.12.7.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.12.8": [
{
"comment_text": "",
"digests": {
"md5": "a8005fd7932e413eb625d2d57894c84b",
"sha256": "d49dc605299995e4a93b36168a2b4d47fd41837f8fdb52755c7d720c9041a704"
},
"downloads": -1,
"filename": "django_djcopyright-0.12.8-py3-none-any.whl",
"has_sig": true,
"md5_digest": "a8005fd7932e413eb625d2d57894c84b",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20827,
"upload_time": "2020-03-17T15:56:04",
"upload_time_iso_8601": "2020-03-17T15:56:04.880025Z",
"url": "https://files.pythonhosted.org/packages/32/8a/6141678e3dae21e859dbb1729fc8d0891c8b4f2f98e783484a86bcf58f53/django_djcopyright-0.12.8-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "8094c204137192a56a106246f17c5234",
"sha256": "325555a65e13e0cd45fbe427999d7593f771edc310365ff5e7ab4a0b88f4e0a9"
},
"downloads": -1,
"filename": "django-djcopyright-0.12.8.zip",
"has_sig": true,
"md5_digest": "8094c204137192a56a106246f17c5234",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28696,
"upload_time": "2020-03-17T15:56:06",
"upload_time_iso_8601": "2020-03-17T15:56:06.961882Z",
"url": "https://files.pythonhosted.org/packages/78/cb/ac191d2084a30ba9a8cdfeec30a0066b82af4e433241ad8c9f3c5e3ce767/django-djcopyright-0.12.8.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.12.9": [
{
"comment_text": "",
"digests": {
"md5": "fc02cad6578bf6fc11f9ea6f878d6d79",
"sha256": "53e6e461011c903eeea865edcad39e047ff8158930e57fbbe01745f1581f106a"
},
"downloads": -1,
"filename": "django_djcopyright-0.12.9-py3-none-any.whl",
"has_sig": true,
"md5_digest": "fc02cad6578bf6fc11f9ea6f878d6d79",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20823,
"upload_time": "2020-03-26T20:17:05",
"upload_time_iso_8601": "2020-03-26T20:17:05.926697Z",
"url": "https://files.pythonhosted.org/packages/a5/3b/dbf2f9e86c0428b2c3bb28951d6b1eed51daa79a61e6f073a16f02bdef8f/django_djcopyright-0.12.9-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "ed6cf6d94f847e0389cd511256c82c76",
"sha256": "42680515a898d9661f4b06e7d29bcf9ba3d21ac929afedae61da78aa3fefa765"
},
"downloads": -1,
"filename": "django-djcopyright-0.12.9.zip",
"has_sig": true,
"md5_digest": "ed6cf6d94f847e0389cd511256c82c76",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28690,
"upload_time": "2020-03-26T20:17:07",
"upload_time_iso_8601": "2020-03-26T20:17:07.490777Z",
"url": "https://files.pythonhosted.org/packages/b8/6c/bb89503a4def063297096a4e72d7825e090cac67efb2f1977fc611bf1834/django-djcopyright-0.12.9.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.13.0": [
{
"comment_text": "",
"digests": {
"md5": "70bc2e9ffb6c253f4c179a1e713e1748",
"sha256": "44a8d784ea965f3ba27c8915d28f3459e20852fe59babd4e0915bd2b4dd8c94f"
},
"downloads": -1,
"filename": "django_djcopyright-0.13.0-py3-none-any.whl",
"has_sig": true,
"md5_digest": "70bc2e9ffb6c253f4c179a1e713e1748",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20822,
"upload_time": "2020-05-09T22:00:09",
"upload_time_iso_8601": "2020-05-09T22:00:09.763122Z",
"url": "https://files.pythonhosted.org/packages/f2/9b/b8b1ea46ee374e84efd73ab84fa374b44611a13570f27bf5262011abb249/django_djcopyright-0.13.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "b369a296e8140d1b331968c7f92f3674",
"sha256": "19f8210938429e42734d441df2c7e5eec293c9a83cca8f90ae60d40385f0f38b"
},
"downloads": -1,
"filename": "django-djcopyright-0.13.0.zip",
"has_sig": true,
"md5_digest": "b369a296e8140d1b331968c7f92f3674",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28695,
"upload_time": "2020-05-09T22:00:11",
"upload_time_iso_8601": "2020-05-09T22:00:11.310257Z",
"url": "https://files.pythonhosted.org/packages/47/7f/86f19730bf6d57e0ce7a8aa0201ae10742fb66c130d16b09337517d25c5c/django-djcopyright-0.13.0.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.13.1": [
{
"comment_text": "",
"digests": {
"md5": "ee5cec304218d33cfbdff4c3e620d762",
"sha256": "bec3c18c30e77e9fb5f06f57585b8609cff8af24ae88398da83daec84f223ad5"
},
"downloads": -1,
"filename": "django_djcopyright-0.13.1-py3-none-any.whl",
"has_sig": true,
"md5_digest": "ee5cec304218d33cfbdff4c3e620d762",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20820,
"upload_time": "2020-05-09T22:01:31",
"upload_time_iso_8601": "2020-05-09T22:01:31.897892Z",
"url": "https://files.pythonhosted.org/packages/15/9b/d21f8bfa1a263ad2f4f1c62f071a6635df2578d398bae9a6d8fe52a19fc8/django_djcopyright-0.13.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "648981e4531053d9220de219a0836665",
"sha256": "69fb80870575ef3447bce6afe8dd14c51b009569915d1e2812371e7a208b7c39"
},
"downloads": -1,
"filename": "django-djcopyright-0.13.1.zip",
"has_sig": true,
"md5_digest": "648981e4531053d9220de219a0836665",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28693,
"upload_time": "2020-05-09T22:01:33",
"upload_time_iso_8601": "2020-05-09T22:01:33.787488Z",
"url": "https://files.pythonhosted.org/packages/d8/85/524a4a14c26d1e896b09a784b1c8eeedf1aea55f8aa54125d48eeceb8a93/django-djcopyright-0.13.1.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.13.2": [
{
"comment_text": "",
"digests": {
"md5": "c138b2b9553605f20448c40da3d81260",
"sha256": "f07d0288b0d2d3287da340c1ebea921cc9156685ac24b84391deffe8cf642866"
},
"downloads": -1,
"filename": "django_djcopyright-0.13.2-py3-none-any.whl",
"has_sig": true,
"md5_digest": "c138b2b9553605f20448c40da3d81260",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20844,
"upload_time": "2020-06-03T03:24:26",
"upload_time_iso_8601": "2020-06-03T03:24:26.175703Z",
"url": "https://files.pythonhosted.org/packages/52/98/aa929bccb18ea1069b4e9a3cfff36e921e1d92326c15a144f781218d12b7/django_djcopyright-0.13.2-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "8836ba40f405c24d1e365e7b53ff4c59",
"sha256": "2cca5919e9036620a71fd81a6c693a29392b89732eeba5e0339c97c23ec7e9a5"
},
"downloads": -1,
"filename": "django-djcopyright-0.13.2.zip",
"has_sig": true,
"md5_digest": "8836ba40f405c24d1e365e7b53ff4c59",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28735,
"upload_time": "2020-06-03T03:24:27",
"upload_time_iso_8601": "2020-06-03T03:24:27.931250Z",
"url": "https://files.pythonhosted.org/packages/3f/16/45379842c40212309f815efe866bc12fe898ac6dfde1408fae66486c42a7/django-djcopyright-0.13.2.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.13.3": [
{
"comment_text": "",
"digests": {
"md5": "4c65b71e40a3defffb8d9237a284bb5d",
"sha256": "5b9bd58f19ace8c9cb257ef508bc6af2bd44812c28b032f0573bc0ec904ee1db"
},
"downloads": -1,
"filename": "django_djcopyright-0.13.3-py3-none-any.whl",
"has_sig": true,
"md5_digest": "4c65b71e40a3defffb8d9237a284bb5d",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20842,
"upload_time": "2020-06-03T03:25:51",
"upload_time_iso_8601": "2020-06-03T03:25:51.671909Z",
"url": "https://files.pythonhosted.org/packages/57/42/ee15817882a0567812f7fd29712951cfa95e6684f4f6abc8ca005f572b73/django_djcopyright-0.13.3-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "1a45a72452c9797a35b7009f9f22170e",
"sha256": "7e68afe1923ceff5ee951b59289b2b7e5c6a7f63975a88e4443e7a0d978669c8"
},
"downloads": -1,
"filename": "django-djcopyright-0.13.3.zip",
"has_sig": true,
"md5_digest": "1a45a72452c9797a35b7009f9f22170e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28734,
"upload_time": "2020-06-03T03:25:53",
"upload_time_iso_8601": "2020-06-03T03:25:53.225660Z",
"url": "https://files.pythonhosted.org/packages/e3/a5/d98ee89774dce72cb30b466e263f9d9510969b21e1bdf340430dafd269f3/django-djcopyright-0.13.3.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.13.4": [
{
"comment_text": "",
"digests": {
"md5": "bc5cb6d0f16dc1050ec4ea2a380b7e1f",
"sha256": "47b3d3c81fac17758113faad07d06b33243520eecaf2a6b5307bedc2e49f38a0"
},
"downloads": -1,
"filename": "django_djcopyright-0.13.4-py3-none-any.whl",
"has_sig": true,
"md5_digest": "bc5cb6d0f16dc1050ec4ea2a380b7e1f",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20847,
"upload_time": "2020-06-04T05:24:08",
"upload_time_iso_8601": "2020-06-04T05:24:08.380569Z",
"url": "https://files.pythonhosted.org/packages/a2/3f/84b6628a9df9bc67297b0a70e49cb7378e41d4597a01d5fe8bf044f1c900/django_djcopyright-0.13.4-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "980841e7e99dc050035d006ff13445a2",
"sha256": "518c18c9afbd3a2b26adc2b2893899fe5b21910638e307086d133a63bb92144f"
},
"downloads": -1,
"filename": "django-djcopyright-0.13.4.zip",
"has_sig": true,
"md5_digest": "980841e7e99dc050035d006ff13445a2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28728,
"upload_time": "2020-06-04T05:24:10",
"upload_time_iso_8601": "2020-06-04T05:24:10.193567Z",
"url": "https://files.pythonhosted.org/packages/b8/85/011f688100d57960791ba2b6ccc5359e605daf353b7ec6b48abe0130dc6d/django-djcopyright-0.13.4.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.13.5": [
{
"comment_text": "",
"digests": {
"md5": "b5e4404cadd8f536f4f96858b230f80c",
"sha256": "8c2303b4860e87d880e7308610b2dc61301a988372af6bb47185b1898090fc52"
},
"downloads": -1,
"filename": "django_djcopyright-0.13.5-py3-none-any.whl",
"has_sig": true,
"md5_digest": "b5e4404cadd8f536f4f96858b230f80c",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20848,
"upload_time": "2020-06-09T01:30:27",
"upload_time_iso_8601": "2020-06-09T01:30:27.614785Z",
"url": "https://files.pythonhosted.org/packages/1a/6e/a08d71de67ffcc81ec53e22b7425e44184398c12c83c611189f96e03626c/django_djcopyright-0.13.5-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "72451ef1bf8148df145e3e894a09d696",
"sha256": "5b57774e2ad8d4e5049cd40b578ec624807f35bdf2daff01b193a22223f0d878"
},
"downloads": -1,
"filename": "django-djcopyright-0.13.5.zip",
"has_sig": true,
"md5_digest": "72451ef1bf8148df145e3e894a09d696",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28723,
"upload_time": "2020-06-09T01:30:29",
"upload_time_iso_8601": "2020-06-09T01:30:29.497050Z",
"url": "https://files.pythonhosted.org/packages/7f/8c/7217136ff2936da1f598750179e9a674a3ed577146523df4ee48184e2496/django-djcopyright-0.13.5.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.14.0": [
{
"comment_text": "",
"digests": {
"md5": "832ab688580d4072421c840edc328905",
"sha256": "573daa0dfb65a78836d2abb40f59c650713b24c85a342d88d130e89a8ef88b08"
},
"downloads": -1,
"filename": "django_djcopyright-0.14.0-py3-none-any.whl",
"has_sig": true,
"md5_digest": "832ab688580d4072421c840edc328905",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20827,
"upload_time": "2020-09-08T03:18:28",
"upload_time_iso_8601": "2020-09-08T03:18:28.050639Z",
"url": "https://files.pythonhosted.org/packages/f0/95/184fe1777f2aeeb9bf0b57bd33295cf02494e65d4a615a947d794cc2d1ad/django_djcopyright-0.14.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "9ece24455291f5087ae4a5794cc61536",
"sha256": "437e98daa7679e31ae73fba157603a6b9a8fd5a551154f107ceed3d8176f4fb0"
},
"downloads": -1,
"filename": "django-djcopyright-0.14.0.zip",
"has_sig": true,
"md5_digest": "9ece24455291f5087ae4a5794cc61536",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28720,
"upload_time": "2020-09-08T03:18:29",
"upload_time_iso_8601": "2020-09-08T03:18:29.534780Z",
"url": "https://files.pythonhosted.org/packages/02/70/b2f2e00ea97d12ee1803df6a19405b364d4b0043d532c8deaf5d57465a5e/django-djcopyright-0.14.0.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.14.1": [
{
"comment_text": "",
"digests": {
"md5": "eeda5717e159bbe3d3ea5a767162fffc",
"sha256": "1cbcbe1e7818395714d9642c6babfccd020f257859e877402f215758ba0507b0"
},
"downloads": -1,
"filename": "django_djcopyright-0.14.1-py3-none-any.whl",
"has_sig": true,
"md5_digest": "eeda5717e159bbe3d3ea5a767162fffc",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20832,
"upload_time": "2020-09-16T22:59:11",
"upload_time_iso_8601": "2020-09-16T22:59:11.469327Z",
"url": "https://files.pythonhosted.org/packages/1e/2b/2568b8002b7078e0bd28b4a26c99c0d441bdd4a75363e76d3f911f9038ea/django_djcopyright-0.14.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "44dcca7e35f11f4445bd2d9ad2eb3c41",
"sha256": "4d05fd4099328fa9d84c6c4fb86538ad7667acfed1963341befd3f35cbc9f16b"
},
"downloads": -1,
"filename": "django-djcopyright-0.14.1.zip",
"has_sig": true,
"md5_digest": "44dcca7e35f11f4445bd2d9ad2eb3c41",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28724,
"upload_time": "2020-09-16T22:59:13",
"upload_time_iso_8601": "2020-09-16T22:59:13.167724Z",
"url": "https://files.pythonhosted.org/packages/14/d3/86e79e249f0e9ccba62f8d8666a5a6631e87937c81f0e8008163f00ff41b/django-djcopyright-0.14.1.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.14.2": [
{
"comment_text": "",
"digests": {
"md5": "598cb9fa23b98f6e87b2874cb17cac37",
"sha256": "af220f637e3704bf808829cd3e11db60fb1457429c2815025697269df18c8095"
},
"downloads": -1,
"filename": "django_djcopyright-0.14.2-py3-none-any.whl",
"has_sig": true,
"md5_digest": "598cb9fa23b98f6e87b2874cb17cac37",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20833,
"upload_time": "2020-09-19T19:25:32",
"upload_time_iso_8601": "2020-09-19T19:25:32.979009Z",
"url": "https://files.pythonhosted.org/packages/4f/ee/a36aeaa04565b2eb00ebf07d9f0a1a40aa844ccbe4134a302e846c371a13/django_djcopyright-0.14.2-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "9e4fa3fcd17bb6c08739962b59598e14",
"sha256": "910b66fe70bae9b5858f7d77e11b04d6f80f076bb7ede5ca2d947887e31ef851"
},
"downloads": -1,
"filename": "django-djcopyright-0.14.2.zip",
"has_sig": true,
"md5_digest": "9e4fa3fcd17bb6c08739962b59598e14",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28729,
"upload_time": "2020-09-19T19:25:34",
"upload_time_iso_8601": "2020-09-19T19:25:34.639810Z",
"url": "https://files.pythonhosted.org/packages/e6/61/7c0e147b5774f3a68e3006c7b599fdc96beaf270e194e96029a97cbb099e/django-djcopyright-0.14.2.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.14.3": [
{
"comment_text": "",
"digests": {
"md5": "fc1d01bbc6e3c5dc5119392ae3ced907",
"sha256": "9060d11632bad5c183a2a2d169e3bc04b97428accd7167ed5006f7632212b059"
},
"downloads": -1,
"filename": "django_djcopyright-0.14.3-py3-none-any.whl",
"has_sig": true,
"md5_digest": "fc1d01bbc6e3c5dc5119392ae3ced907",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20835,
"upload_time": "2020-09-28T02:30:57",
"upload_time_iso_8601": "2020-09-28T02:30:57.771835Z",
"url": "https://files.pythonhosted.org/packages/c5/61/1de41b30292c8ee0d6479779f94c25dee4dc8bdf0bfb9825b24d24f9a567/django_djcopyright-0.14.3-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "5f95cfc5046eb9f8cb615e161d223eb8",
"sha256": "bec438a807d0a504641048fd29ef0b83c5c7e26970b26340ebad7a8cf707139c"
},
"downloads": -1,
"filename": "django-djcopyright-0.14.3.zip",
"has_sig": true,
"md5_digest": "5f95cfc5046eb9f8cb615e161d223eb8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28726,
"upload_time": "2020-09-28T02:31:00",
"upload_time_iso_8601": "2020-09-28T02:31:00.289105Z",
"url": "https://files.pythonhosted.org/packages/c8/63/8b27747c864618572ba79a0a17a683cb06165eef0c0da9aec424f7297fa6/django-djcopyright-0.14.3.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.15.0": [
{
"comment_text": "",
"digests": {
"md5": "bb211ef999eb4f6207b3fd25ff875eea",
"sha256": "06bafdacc3a5eecb7d41528685551e3c1501cab9b78a9c149f9ac6e912d99df5"
},
"downloads": -1,
"filename": "django_djcopyright-0.15.0-py3-none-any.whl",
"has_sig": true,
"md5_digest": "bb211ef999eb4f6207b3fd25ff875eea",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20872,
"upload_time": "2020-10-06T18:12:42",
"upload_time_iso_8601": "2020-10-06T18:12:42.698891Z",
"url": "https://files.pythonhosted.org/packages/a9/7b/2bace13a6f913138fe08af08adec84238796e8ac356fdbdd62b652b3086e/django_djcopyright-0.15.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "5c431039e142c5403b3d5686e1098f59",
"sha256": "967216dbe76cf1d2bbb302a61bb2169d5f848253f1094b039f1009adcde0e8f3"
},
"downloads": -1,
"filename": "django-djcopyright-0.15.0.zip",
"has_sig": true,
"md5_digest": "5c431039e142c5403b3d5686e1098f59",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28756,
"upload_time": "2020-10-06T18:12:44",
"upload_time_iso_8601": "2020-10-06T18:12:44.821162Z",
"url": "https://files.pythonhosted.org/packages/51/b5/b45e64fe25b6deee776c4d72738bb7604c6accfc8acf13fe62b0c7b43baf/django-djcopyright-0.15.0.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.15.1": [
{
"comment_text": "",
"digests": {
"md5": "cbe379edd582b9e683c9462a36b6f8c3",
"sha256": "ec5dd4f62337696d64bdc1da0cac79f7acc426aece3ffd5bafada8c7da9ddd68"
},
"downloads": -1,
"filename": "django_djcopyright-0.15.1-py3-none-any.whl",
"has_sig": true,
"md5_digest": "cbe379edd582b9e683c9462a36b6f8c3",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20877,
"upload_time": "2020-10-06T18:25:01",
"upload_time_iso_8601": "2020-10-06T18:25:01.322785Z",
"url": "https://files.pythonhosted.org/packages/16/19/3002e57f24d9eb2a55e757378bc90aa663270ef0886a9ca94aca4fa44d04/django_djcopyright-0.15.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "2b301e7e10e2a5cea2096af565d4ff0b",
"sha256": "526dd078997bbf8c28f974d501421de6923ad25c31bd0202a9e7376e3c8f2bbe"
},
"downloads": -1,
"filename": "django-djcopyright-0.15.1.zip",
"has_sig": true,
"md5_digest": "2b301e7e10e2a5cea2096af565d4ff0b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28758,
"upload_time": "2020-10-06T18:25:03",
"upload_time_iso_8601": "2020-10-06T18:25:03.367606Z",
"url": "https://files.pythonhosted.org/packages/0b/72/657bb3bf82aaceb2701182349041e8fe07a33545e4d3e105f64427f31f4f/django-djcopyright-0.15.1.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.15.10": [
{
"comment_text": "",
"digests": {
"md5": "4b994e0528b2162e910b8572a10fe729",
"sha256": "208b0af5817c91942b7c6efb6728a5ee702c79cd986292632a069b4988fb89fb"
},
"downloads": -1,
"filename": "django_djcopyright-0.15.10-py3-none-any.whl",
"has_sig": true,
"md5_digest": "4b994e0528b2162e910b8572a10fe729",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20970,
"upload_time": "2021-03-06T22:08:14",
"upload_time_iso_8601": "2021-03-06T22:08:14.739046Z",
"url": "https://files.pythonhosted.org/packages/51/af/f37b2f7c613730c2320d89ad29bc9096881076a5ffc024bc83a2c76facd7/django_djcopyright-0.15.10-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "56905442ed07e4b8db97a6479bef43d4",
"sha256": "976aa0ee1f6aeedac87ca388f00f5369a12237c399e4da9ad2974bc8bcb5146c"
},
"downloads": -1,
"filename": "django-djcopyright-0.15.10.zip",
"has_sig": true,
"md5_digest": "56905442ed07e4b8db97a6479bef43d4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 30784,
"upload_time": "2021-03-06T22:08:16",
"upload_time_iso_8601": "2021-03-06T22:08:16.392966Z",
"url": "https://files.pythonhosted.org/packages/a3/4d/edf8af052ac42d03f1efccf57062c37bcb0f38ef98b593b579da8343d56d/django-djcopyright-0.15.10.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.15.11": [
{
"comment_text": "",
"digests": {
"md5": "6d6678e4940d9a439784f551359111ce",
"sha256": "ca4f8b1d9bb9bb67031e1a604acab68ebf6a769ce3f4b89cebc4a608d1e61367"
},
"downloads": -1,
"filename": "django_djcopyright-0.15.11-py3-none-any.whl",
"has_sig": true,
"md5_digest": "6d6678e4940d9a439784f551359111ce",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20971,
"upload_time": "2021-03-07T19:17:39",
"upload_time_iso_8601": "2021-03-07T19:17:39.655098Z",
"url": "https://files.pythonhosted.org/packages/c6/28/8bfa7454ee64c460e93d3bbf03812f709ac5c6517672cd36edbf81543889/django_djcopyright-0.15.11-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "151fd523f5631c1a165716ecc8e3e7c4",
"sha256": "e990078105efc1d763c41ad52d5d31fdf8ee999d5341245a0f2dc9d4a2736932"
},
"downloads": -1,
"filename": "django-djcopyright-0.15.11.zip",
"has_sig": true,
"md5_digest": "151fd523f5631c1a165716ecc8e3e7c4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 30779,
"upload_time": "2021-03-07T19:17:41",
"upload_time_iso_8601": "2021-03-07T19:17:41.498487Z",
"url": "https://files.pythonhosted.org/packages/15/de/409b0467f3697930b273e6d8a4b531b9642d8180190243d11b9bdb3894fb/django-djcopyright-0.15.11.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.15.12": [
{
"comment_text": "",
"digests": {
"md5": "cab3a62d30fdde0bf3248dea629c5d05",
"sha256": "007f597ad5de0575e79de539e3d3047fdd17dff5acbe9694a8cbf32c97bb5a1d"
},
"downloads": -1,
"filename": "django_djcopyright-0.15.12-py3-none-any.whl",
"has_sig": true,
"md5_digest": "cab3a62d30fdde0bf3248dea629c5d05",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20968,
"upload_time": "2021-03-10T19:14:20",
"upload_time_iso_8601": "2021-03-10T19:14:20.391516Z",
"url": "https://files.pythonhosted.org/packages/69/a0/2221bb9051352c2827bf752550af143f221ecfbcb68b50096008b0b5e887/django_djcopyright-0.15.12-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "3f2a9787115f543a172303d22d271e44",
"sha256": "8d7e97ee3864b3094dd596e5df6831abd5fd73c43735f6f38fcef0074d4b0525"
},
"downloads": -1,
"filename": "django-djcopyright-0.15.12.zip",
"has_sig": true,
"md5_digest": "3f2a9787115f543a172303d22d271e44",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 30780,
"upload_time": "2021-03-10T19:14:21",
"upload_time_iso_8601": "2021-03-10T19:14:21.947979Z",
"url": "https://files.pythonhosted.org/packages/c2/70/2bb2d023b43998bf5d2527155118ff19769957df2a77579f726943b97db0/django-djcopyright-0.15.12.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.15.13": [
{
"comment_text": "",
"digests": {
"md5": "caf56345c9ac30b251615abdc8fc0d8f",
"sha256": "11146cf97f12a25768837aae0e6baa97732b33044c408f6cc8eef08151bd1630"
},
"downloads": -1,
"filename": "django_djcopyright-0.15.13-py3-none-any.whl",
"has_sig": true,
"md5_digest": "caf56345c9ac30b251615abdc8fc0d8f",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20975,
"upload_time": "2021-03-14T21:23:42",
"upload_time_iso_8601": "2021-03-14T21:23:42.795768Z",
"url": "https://files.pythonhosted.org/packages/cc/9b/9a45c185fb96a348eedc4657511a5b7bd51c5d93a6863f8d115b49b024cf/django_djcopyright-0.15.13-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "dd88debe0fa8b79b656ef3206bb04389",
"sha256": "bfc70214a95522b074926b6fd0731299765539bb850b70e36e3d10251b17a5ca"
},
"downloads": -1,
"filename": "django-djcopyright-0.15.13.zip",
"has_sig": true,
"md5_digest": "dd88debe0fa8b79b656ef3206bb04389",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 30784,
"upload_time": "2021-03-14T21:23:44",
"upload_time_iso_8601": "2021-03-14T21:23:44.377452Z",
"url": "https://files.pythonhosted.org/packages/85/6d/b7232601df4875fc2da5a10b7015113a536b1e40dbe301e7ab5e321f3ce2/django-djcopyright-0.15.13.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.15.14": [
{
"comment_text": "",
"digests": {
"md5": "c3fc474bf2f5e8dbddcff38e6c2944dc",
"sha256": "f65d21510c3d6ebe46e040727639c6da183a5de8cce2f347df8e1ed27cbedf17"
},
"downloads": -1,
"filename": "django_djcopyright-0.15.14-py3-none-any.whl",
"has_sig": true,
"md5_digest": "c3fc474bf2f5e8dbddcff38e6c2944dc",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20986,
"upload_time": "2021-03-16T01:14:31",
"upload_time_iso_8601": "2021-03-16T01:14:31.005150Z",
"url": "https://files.pythonhosted.org/packages/75/94/8c9d93b2a71d9011d546dba34928c7242bcd6902cdb8119a581d72e6d92e/django_djcopyright-0.15.14-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "356b9b31b6893f953e5d753ed177c4dd",
"sha256": "4c3ec5a9dd8d3e9221b2cf84444f16c175453b359f47f3597b449babc7c91ac4"
},
"downloads": -1,
"filename": "django-djcopyright-0.15.14.zip",
"has_sig": true,
"md5_digest": "356b9b31b6893f953e5d753ed177c4dd",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 30806,
"upload_time": "2021-03-16T01:14:32",
"upload_time_iso_8601": "2021-03-16T01:14:32.817696Z",
"url": "https://files.pythonhosted.org/packages/13/6b/788de3bddce590c52b2b925b9bc545af47833a0558e1560fd0af9c624359/django-djcopyright-0.15.14.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.15.2": [
{
"comment_text": "",
"digests": {
"md5": "adedeb6c517b3ec9bc0348c6aaef75a2",
"sha256": "bdbe9d8dc8eb6ceaba2960951fb99eb576a881468adf85ed8d4608d2ba6d3152"
},
"downloads": -1,
"filename": "django_djcopyright-0.15.2-py3-none-any.whl",
"has_sig": true,
"md5_digest": "adedeb6c517b3ec9bc0348c6aaef75a2",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20906,
"upload_time": "2020-11-22T01:12:40",
"upload_time_iso_8601": "2020-11-22T01:12:40.817850Z",
"url": "https://files.pythonhosted.org/packages/24/4e/320df6c7bb36982e221fad01ab22d188a11e643ba67bb47d60736636d4df/django_djcopyright-0.15.2-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "c0a0eb1249ab9750ff3fc871ba876d31",
"sha256": "e617e2eeeb271ff72681fe550c422566e41c427400af7c148cd18178aea0cbfa"
},
"downloads": -1,
"filename": "django-djcopyright-0.15.2.zip",
"has_sig": true,
"md5_digest": "c0a0eb1249ab9750ff3fc871ba876d31",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28805,
"upload_time": "2020-11-22T01:12:42",
"upload_time_iso_8601": "2020-11-22T01:12:42.522568Z",
"url": "https://files.pythonhosted.org/packages/09/63/f7e54122fffa3a67e536a212b54400c5a5d0b5264bee3ab1bf47fcb4e2b3/django-djcopyright-0.15.2.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.15.3": [
{
"comment_text": "",
"digests": {
"md5": "e78e7c7288a6f9bd5956c35e9d53ec16",
"sha256": "98732dcab0c8f2fce851fa8038e59869a1655d22afc54b9c4a090858328240a7"
},
"downloads": -1,
"filename": "django_djcopyright-0.15.3-py3-none-any.whl",
"has_sig": true,
"md5_digest": "e78e7c7288a6f9bd5956c35e9d53ec16",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20905,
"upload_time": "2020-11-23T05:09:58",
"upload_time_iso_8601": "2020-11-23T05:09:58.722058Z",
"url": "https://files.pythonhosted.org/packages/ab/55/5de689cde5b1934dd61d6d7ff46b747fd73d244c9775cae1df31a2dfb3ce/django_djcopyright-0.15.3-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "22d5ab17f8e309adaff62163a5715913",
"sha256": "2bcf18bccea832064ae186a83862446c6b852df6a24ee77e110fad400aeeb4d3"
},
"downloads": -1,
"filename": "django-djcopyright-0.15.3.zip",
"has_sig": true,
"md5_digest": "22d5ab17f8e309adaff62163a5715913",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28804,
"upload_time": "2020-11-23T05:10:00",
"upload_time_iso_8601": "2020-11-23T05:10:00.484191Z",
"url": "https://files.pythonhosted.org/packages/e9/ac/4719281ccf64c9725d134f47849d77931af567019ff787c67965a4e666e6/django-djcopyright-0.15.3.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.15.4": [
{
"comment_text": "",
"digests": {
"md5": "7abc9fd66b3b5734471cb7ff786abf06",
"sha256": "e91035f2fa49518e994898f8886ac6cb2334d1914c15ab11ecb1ef84edf5e810"
},
"downloads": -1,
"filename": "django_djcopyright-0.15.4-py3-none-any.whl",
"has_sig": true,
"md5_digest": "7abc9fd66b3b5734471cb7ff786abf06",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20943,
"upload_time": "2021-01-17T03:33:55",
"upload_time_iso_8601": "2021-01-17T03:33:55.835816Z",
"url": "https://files.pythonhosted.org/packages/4d/4e/e4313c1bc0d4a2d969f6d7588ec144c0bc72f74d2c7fdc6096e3ad52ad5b/django_djcopyright-0.15.4-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "7bd3c24e9de156cc0bcfe2c15e568a91",
"sha256": "0945c869b5d00bf488fbb03d51c3d3644452eb9bcfd5e42434d8b757f9c4a15b"
},
"downloads": -1,
"filename": "django-djcopyright-0.15.4.zip",
"has_sig": true,
"md5_digest": "7bd3c24e9de156cc0bcfe2c15e568a91",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 29154,
"upload_time": "2021-01-17T03:33:57",
"upload_time_iso_8601": "2021-01-17T03:33:57.585325Z",
"url": "https://files.pythonhosted.org/packages/0e/a8/4a8b86a6cd34d5b00c48a0157d9faab4c3699ac30edefa7e86f73ae65b72/django-djcopyright-0.15.4.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.15.5": [
{
"comment_text": "",
"digests": {
"md5": "1807acf09f47e753e108fedad3e1d666",
"sha256": "ae4bc8cf6ff105e1d665afb4c63fb031442d1f342aadb4d40af07f36c94797ad"
},
"downloads": -1,
"filename": "django_djcopyright-0.15.5-py3-none-any.whl",
"has_sig": true,
"md5_digest": "1807acf09f47e753e108fedad3e1d666",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20943,
"upload_time": "2021-01-17T08:48:59",
"upload_time_iso_8601": "2021-01-17T08:48:59.521088Z",
"url": "https://files.pythonhosted.org/packages/95/46/a41f3ae11553987050b9611a70b8c90cfee29e2eea24775b17fcfe64799e/django_djcopyright-0.15.5-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "9003a351b1175363b0c3133538996965",
"sha256": "6e249fb4fcd77dbd026a1b4793c83764a53a664a2d8a7ab2785a49abc33ee6ca"
},
"downloads": -1,
"filename": "django-djcopyright-0.15.5.zip",
"has_sig": true,
"md5_digest": "9003a351b1175363b0c3133538996965",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 29151,
"upload_time": "2021-01-17T08:49:01",
"upload_time_iso_8601": "2021-01-17T08:49:01.039861Z",
"url": "https://files.pythonhosted.org/packages/4a/f8/ddf9fa97e1ee3a175ce2083c6e844b9fe17d53845052ad6d60e35bd077c6/django-djcopyright-0.15.5.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.15.6": [
{
"comment_text": "",
"digests": {
"md5": "196f1689925b9f60966e1bfb7f71a286",
"sha256": "8e31aad62e331cb7281707a0d9cab2eb15b860fb86fec5bd96ffc3941f094f50"
},
"downloads": -1,
"filename": "django_djcopyright-0.15.6-py3-none-any.whl",
"has_sig": true,
"md5_digest": "196f1689925b9f60966e1bfb7f71a286",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20941,
"upload_time": "2021-01-26T19:47:16",
"upload_time_iso_8601": "2021-01-26T19:47:16.312616Z",
"url": "https://files.pythonhosted.org/packages/90/23/67bb88b11723d909709217422821d8d58ba067b226ee22eefdfff6ffebc8/django_djcopyright-0.15.6-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "ec6530960f8932081458f213f4182eee",
"sha256": "976104d381a4c922c1ef76b574287b8fbaa97446357b291e4813f154dc451d35"
},
"downloads": -1,
"filename": "django-djcopyright-0.15.6.zip",
"has_sig": true,
"md5_digest": "ec6530960f8932081458f213f4182eee",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 30690,
"upload_time": "2021-01-26T19:47:18",
"upload_time_iso_8601": "2021-01-26T19:47:18.092855Z",
"url": "https://files.pythonhosted.org/packages/10/b7/64e9bea63f17e3097dd91ee9c2a061b38a86059d6ac14f2ba0f38284125d/django-djcopyright-0.15.6.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.15.7": [
{
"comment_text": "",
"digests": {
"md5": "83cbcfbeef66ef4fb28512e134df2c19",
"sha256": "1d05e1f12af952b2531dbc466b229ee5eca35184394c0245b78b4a426a984344"
},
"downloads": -1,
"filename": "django_djcopyright-0.15.7-py3-none-any.whl",
"has_sig": true,
"md5_digest": "83cbcfbeef66ef4fb28512e134df2c19",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20936,
"upload_time": "2021-02-11T02:50:30",
"upload_time_iso_8601": "2021-02-11T02:50:30.710496Z",
"url": "https://files.pythonhosted.org/packages/2f/d1/65a936808f4be894640ff539f7b3671e106977e061c2fa7ac57a24cfef69/django_djcopyright-0.15.7-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "cce51a3d8007f1c8a275c9d2f6075b82",
"sha256": "69edc1b4969448fecd8dfb991ab7e863bf0335dc60a9946e13e90696a5ea8f4e"
},
"downloads": -1,
"filename": "django-djcopyright-0.15.7.zip",
"has_sig": true,
"md5_digest": "cce51a3d8007f1c8a275c9d2f6075b82",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 30687,
"upload_time": "2021-02-11T02:50:32",
"upload_time_iso_8601": "2021-02-11T02:50:32.334091Z",
"url": "https://files.pythonhosted.org/packages/97/13/71e81b1d98e3dd89aaf97fed7bfc251bc0470ec30e2e93fc447b2cd8caf2/django-djcopyright-0.15.7.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.15.8": [
{
"comment_text": "",
"digests": {
"md5": "e87dcc0bbad1eb63dd88b344232354d0",
"sha256": "f13e4237599e2611bb858ccfd5b8f9f5a2177e4aa2344ebe9c3bfef77a1f3e66"
},
"downloads": -1,
"filename": "django_djcopyright-0.15.8-py3-none-any.whl",
"has_sig": true,
"md5_digest": "e87dcc0bbad1eb63dd88b344232354d0",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20936,
"upload_time": "2021-02-14T18:45:14",
"upload_time_iso_8601": "2021-02-14T18:45:14.034408Z",
"url": "https://files.pythonhosted.org/packages/ea/b1/2caa438d0d0a9eae6fa3f120a425b517b62344f1eb502604a6b0193fd465/django_djcopyright-0.15.8-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "18fb4d5a966f76baee9d9cce581d8226",
"sha256": "c76abfea58d0f888b22192b283cd4ac59c4e4cc3900466d0f3d9b9ab6dc8429f"
},
"downloads": -1,
"filename": "django-djcopyright-0.15.8.zip",
"has_sig": true,
"md5_digest": "18fb4d5a966f76baee9d9cce581d8226",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 30684,
"upload_time": "2021-02-14T18:45:15",
"upload_time_iso_8601": "2021-02-14T18:45:15.653228Z",
"url": "https://files.pythonhosted.org/packages/5b/93/a858dbf2405074cd97b410d9d1d1e9fc3989a9e11fc2e91ac01393703a3f/django-djcopyright-0.15.8.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.15.9": [
{
"comment_text": "",
"digests": {
"md5": "eb05e511ab8b6087751ac976dd8eac12",
"sha256": "d8416ddb978b7f8bfe44bf7ef9c7cd3c3c3b9a1ea758da366015fa6cef136f94"
},
"downloads": -1,
"filename": "django_djcopyright-0.15.9-py3-none-any.whl",
"has_sig": true,
"md5_digest": "eb05e511ab8b6087751ac976dd8eac12",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20957,
"upload_time": "2021-03-05T18:15:24",
"upload_time_iso_8601": "2021-03-05T18:15:24.192243Z",
"url": "https://files.pythonhosted.org/packages/a8/d9/8f52c80797dcaf567eaa89e121bd8e553dabeaf7b1bfb97a1db4f8a1569c/django_djcopyright-0.15.9-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "79a86c39fec3d14bd1da5f9e4f46515b",
"sha256": "556b3ed909c2221d5fc583c326c7418433812de184d76097f86d59c9f0eae9dd"
},
"downloads": -1,
"filename": "django-djcopyright-0.15.9.zip",
"has_sig": true,
"md5_digest": "79a86c39fec3d14bd1da5f9e4f46515b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 30712,
"upload_time": "2021-03-05T18:15:26",
"upload_time_iso_8601": "2021-03-05T18:15:26.025270Z",
"url": "https://files.pythonhosted.org/packages/ec/eb/cf087e55ac0e776bdf85db1e226a593defdf66266ab39b650fb50e458f50/django-djcopyright-0.15.9.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.16.0": [
{
"comment_text": "",
"digests": {
"md5": "6c62dad80609b71dd484c44d70ef1bed",
"sha256": "37d6759999e1f89ebeb268d3b29417c5a3aba30930819ebec5af551b54481177"
},
"downloads": -1,
"filename": "django_djcopyright-0.16.0-py3-none-any.whl",
"has_sig": true,
"md5_digest": "6c62dad80609b71dd484c44d70ef1bed",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20988,
"upload_time": "2021-05-14T02:18:44",
"upload_time_iso_8601": "2021-05-14T02:18:44.328802Z",
"url": "https://files.pythonhosted.org/packages/f6/a0/3733772b346239e79a158a7afac15e31f20171188ac420dd02a1268b5f21/django_djcopyright-0.16.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "ea98c1e276c1ef473cac53edfbeb22ba",
"sha256": "b8ea71fc08b24f1e88f024a6c9e4b518fdd387c86f03766435e7b15183a35c38"
},
"downloads": -1,
"filename": "django-djcopyright-0.16.0.zip",
"has_sig": true,
"md5_digest": "ea98c1e276c1ef473cac53edfbeb22ba",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 30764,
"upload_time": "2021-05-14T02:18:46",
"upload_time_iso_8601": "2021-05-14T02:18:46.071453Z",
"url": "https://files.pythonhosted.org/packages/56/37/04191769f53dbcca97a9d0c76f059f3fa4f8912af73e7f337bef099cf64e/django-djcopyright-0.16.0.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.16.1": [
{
"comment_text": "",
"digests": {
"md5": "cd5f43d9d578b7ab83605593137c9697",
"sha256": "ba7a5bd3e74a3f7675d64b51f36f62a4716b934aaa4162764fff21131c2c5c45"
},
"downloads": -1,
"filename": "django_djcopyright-0.16.1-py3-none-any.whl",
"has_sig": true,
"md5_digest": "cd5f43d9d578b7ab83605593137c9697",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20988,
"upload_time": "2021-05-17T23:46:24",
"upload_time_iso_8601": "2021-05-17T23:46:24.706249Z",
"url": "https://files.pythonhosted.org/packages/5e/2e/45e9ccefbdf5510cece8e0554d0aadf2b968eb01cf96a46a0f002b1bebff/django_djcopyright-0.16.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "ec75059a47d12c3f801580c089905df6",
"sha256": "8db6f4e7c45a75992effd35eac1b4aa5aa942ce33a7d34b069c25dc3b56e75a3"
},
"downloads": -1,
"filename": "django-djcopyright-0.16.1.zip",
"has_sig": true,
"md5_digest": "ec75059a47d12c3f801580c089905df6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 30767,
"upload_time": "2021-05-17T23:46:26",
"upload_time_iso_8601": "2021-05-17T23:46:26.670914Z",
"url": "https://files.pythonhosted.org/packages/00/76/cae0a48c18357ea100f8fcfc9ccefd841695c90e121af6dd8330e5b1166a/django-djcopyright-0.16.1.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.16.2": [
{
"comment_text": "",
"digests": {
"md5": "e5a6be31d94dbd12c4a5b0fcb2fa1940",
"sha256": "b1ccb40c6818423a2eed0bf7700ddc8751689b55a8878a7073d3e861c4d5426a"
},
"downloads": -1,
"filename": "django_djcopyright-0.16.2-py3-none-any.whl",
"has_sig": true,
"md5_digest": "e5a6be31d94dbd12c4a5b0fcb2fa1940",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20987,
"upload_time": "2021-05-25T22:36:17",
"upload_time_iso_8601": "2021-05-25T22:36:17.510606Z",
"url": "https://files.pythonhosted.org/packages/57/3e/706054fceef904b9e0ba53f57f95b7f651fe0d68fbbbaaf5400360e49be5/django_djcopyright-0.16.2-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "0e54d4c4e0b9853d5b1204549ebeb991",
"sha256": "e6f8a9e03fef47fa42e79a6ecedad33c8cad0d258814b482ce1d5e15c019420f"
},
"downloads": -1,
"filename": "django-djcopyright-0.16.2.zip",
"has_sig": true,
"md5_digest": "0e54d4c4e0b9853d5b1204549ebeb991",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 30771,
"upload_time": "2021-05-25T22:36:19",
"upload_time_iso_8601": "2021-05-25T22:36:19.049645Z",
"url": "https://files.pythonhosted.org/packages/37/15/b6fe431af51cdb51057a32e92e806e7aa80d26eb8e928337374238c47ac2/django-djcopyright-0.16.2.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.17.0": [
{
"comment_text": "",
"digests": {
"md5": "6f21f7afc5596a818284085cdc2eddef",
"sha256": "8fae7f17a6b3cb6e8b3e94b654302a0905fa6fbbc0f654081cbe9f6101a3e402"
},
"downloads": -1,
"filename": "django_djcopyright-0.17.0-py3-none-any.whl",
"has_sig": true,
"md5_digest": "6f21f7afc5596a818284085cdc2eddef",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 21377,
"upload_time": "2021-11-19T06:22:13",
"upload_time_iso_8601": "2021-11-19T06:22:13.685735Z",
"url": "https://files.pythonhosted.org/packages/40/30/de96093f16f3c34d6b3e485ec51c88966a206023317a685568a9d8777df9/django_djcopyright-0.17.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "296be8915aa4836c9787dfd04472c455",
"sha256": "6c6ec8803745c858c6eb3d24a15db1963280c339051e3686635963a490dafe2e"
},
"downloads": -1,
"filename": "django-djcopyright-0.17.0.zip",
"has_sig": true,
"md5_digest": "296be8915aa4836c9787dfd04472c455",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 32088,
"upload_time": "2021-11-19T06:22:15",
"upload_time_iso_8601": "2021-11-19T06:22:15.910829Z",
"url": "https://files.pythonhosted.org/packages/ae/ac/70d638781f80449ccab5f2630f81e47a94daaa7e24f3f827e7cd675463e4/django-djcopyright-0.17.0.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.2.0": [
{
"comment_text": "",
"digests": {
"md5": "8d620fe91f2cdb5f9a6af47c5e475a1b",
"sha256": "e06fdc1ff6a33573807f4507100ec7c2e7c5ee7cc3133c1023882d485aa16a35"
},
"downloads": -1,
"filename": "django-djcopyright-0.2.0.tar.gz",
"has_sig": false,
"md5_digest": "8d620fe91f2cdb5f9a6af47c5e475a1b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 15586,
"upload_time": "2015-05-27T03:53:26",
"upload_time_iso_8601": "2015-05-27T03:53:26.028102Z",
"url": "https://files.pythonhosted.org/packages/25/05/fcd49c71b926715aa9f35ab0ff53935c98d52dbac3648ddad224d68d41aa/django-djcopyright-0.2.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.2.1": [
{
"comment_text": "",
"digests": {
"md5": "58cbbc19909fc185ec9ed15ee701275c",
"sha256": "4ede7f7e6daf684e9decc2a8d2caed3dda5d1987913e0069755a4dd8995308c6"
},
"downloads": -1,
"filename": "django-djcopyright-0.2.1.tar.gz",
"has_sig": false,
"md5_digest": "58cbbc19909fc185ec9ed15ee701275c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 15596,
"upload_time": "2015-05-28T08:08:19",
"upload_time_iso_8601": "2015-05-28T08:08:19.213399Z",
"url": "https://files.pythonhosted.org/packages/28/55/781d12eee386b34382a0efacffafc60065e910c8967e4604578d477fb827/django-djcopyright-0.2.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.2.2": [
{
"comment_text": "",
"digests": {
"md5": "0c56320596c0729ac0ccbcc41974e8c6",
"sha256": "e335ebe2cadd82e1b12f35febc3eea7b334948d8f19f0fdbeac6fcdbc23f51bb"
},
"downloads": -1,
"filename": "django-djcopyright-0.2.2.tar.gz",
"has_sig": false,
"md5_digest": "0c56320596c0729ac0ccbcc41974e8c6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 15593,
"upload_time": "2015-06-28T03:10:12",
"upload_time_iso_8601": "2015-06-28T03:10:12.986747Z",
"url": "https://files.pythonhosted.org/packages/87/01/cd651819a9ed382cf9b9f59530c42e923e20c76e4f1895430e2b965bc635/django-djcopyright-0.2.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.2.3": [
{
"comment_text": "",
"digests": {
"md5": "dca30ec8c87e76f13336d7a228691317",
"sha256": "eb5e2ef9aec95f77e59b24d720f1386656fd8ec5759f21e86a25558ec148ab33"
},
"downloads": -1,
"filename": "django_djcopyright-0.2.3-py2-none-any.whl",
"has_sig": false,
"md5_digest": "dca30ec8c87e76f13336d7a228691317",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 5420,
"upload_time": "2016-09-29T11:11:28",
"upload_time_iso_8601": "2016-09-29T11:11:28.624714Z",
"url": "https://files.pythonhosted.org/packages/7a/61/823f3cd63d29f8caf91202dc839645c2e247138e6edb47dc442ffa8efc4c/django_djcopyright-0.2.3-py2-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "983d726b672699e78282e1c236b7333e",
"sha256": "88e4921394bae7cb9564c412b24213d263b7db2da90ec7d4ff5d811ce1cc68bc"
},
"downloads": -1,
"filename": "django-djcopyright-0.2.3.tar.gz",
"has_sig": false,
"md5_digest": "983d726b672699e78282e1c236b7333e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 15594,
"upload_time": "2015-09-21T12:10:18",
"upload_time_iso_8601": "2015-09-21T12:10:18.397720Z",
"url": "https://files.pythonhosted.org/packages/0e/09/508f65c02c60e1787dcc2f92eae28837c434853a3692a01e36a0790efa7a/django-djcopyright-0.2.3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.3.0": [
{
"comment_text": "",
"digests": {
"md5": "3292974695da1979f643bc9b76c400ff",
"sha256": "d47893bb96e12d71ea259182d17f20cfbeecb5e7c9f2d62d42ec828a4784baa8"
},
"downloads": -1,
"filename": "django_djcopyright-0.3.0-py2-none-any.whl",
"has_sig": false,
"md5_digest": "3292974695da1979f643bc9b76c400ff",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 5525,
"upload_time": "2016-12-05T10:18:09",
"upload_time_iso_8601": "2016-12-05T10:18:09.169282Z",
"url": "https://files.pythonhosted.org/packages/09/b0/6ab7484cdd2d40228b833c6b17c4dc0d3a118401c3fc57cdf538888bb87d/django_djcopyright-0.3.0-py2-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "6d866c0b133656a0cb7f1303aa0b66ee",
"sha256": "d329abb1b64fbef1206254e612a1d414b30a299ea90b76be24eb43ee113efeee"
},
"downloads": -1,
"filename": "django-djcopyright-0.3.0.tar.gz",
"has_sig": false,
"md5_digest": "6d866c0b133656a0cb7f1303aa0b66ee",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 15529,
"upload_time": "2016-12-05T10:18:11",
"upload_time_iso_8601": "2016-12-05T10:18:11.859882Z",
"url": "https://files.pythonhosted.org/packages/ce/88/a2a9b5e1fbc169b5614a0f47f570691028e5eba6385fed11e484d04a3441/django-djcopyright-0.3.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.3.1": [
{
"comment_text": "",
"digests": {
"md5": "338920d326682c3160b94296a283b78b",
"sha256": "52ce380a1c4f8da92cfd58b9dc2f6205543504a84e02bb270afdfec68bfd4fa9"
},
"downloads": -1,
"filename": "django_djcopyright-0.3.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "338920d326682c3160b94296a283b78b",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 5534,
"upload_time": "2017-05-16T02:37:11",
"upload_time_iso_8601": "2017-05-16T02:37:11.222747Z",
"url": "https://files.pythonhosted.org/packages/f0/89/0a00a1bb698be4bf06712a58d00494532aba487e45683a183d97ce08c541/django_djcopyright-0.3.1-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "2a1cb8aec6e5bf4dbee94f9461f8a2c0",
"sha256": "8bb003e088ff02dc043c5dfad5f61ab2cd57b9b6b724ac6a47fb55f1e9b4df5e"
},
"downloads": -1,
"filename": "django-djcopyright-0.3.1.tar.gz",
"has_sig": false,
"md5_digest": "2a1cb8aec6e5bf4dbee94f9461f8a2c0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 15574,
"upload_time": "2017-05-16T02:37:13",
"upload_time_iso_8601": "2017-05-16T02:37:13.073032Z",
"url": "https://files.pythonhosted.org/packages/6c/20/40f6e4ef886f827fcfe58b74b5390a47127ea9b6aca8fa93f7dc9b796377/django-djcopyright-0.3.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.3.2": [
{
"comment_text": "",
"digests": {
"md5": "76c458b858b14dae82bd7bc5d1e0038e",
"sha256": "c296478918523222ac7d7b1d0ab93c1ff94c7c0b24bd6ab40cf8460e6e5106e5"
},
"downloads": -1,
"filename": "django_djcopyright-0.3.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "76c458b858b14dae82bd7bc5d1e0038e",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 5552,
"upload_time": "2018-09-27T22:46:07",
"upload_time_iso_8601": "2018-09-27T22:46:07.044628Z",
"url": "https://files.pythonhosted.org/packages/2b/f9/b411d0731b67e636be886262e2155c7d1568c609b00cacc441fc7382e799/django_djcopyright-0.3.2-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "cc756615430b77b004042733aa910245",
"sha256": "032410a3a7096371631965c7e16d104341d86e255afbea83aaaca2a0d876fe99"
},
"downloads": -1,
"filename": "django-djcopyright-0.3.2.tar.gz",
"has_sig": false,
"md5_digest": "cc756615430b77b004042733aa910245",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 15552,
"upload_time": "2018-09-27T22:46:09",
"upload_time_iso_8601": "2018-09-27T22:46:09.512189Z",
"url": "https://files.pythonhosted.org/packages/85/e6/1c4ccb8ffd2e7a6afbb64620d1dc9300cc9a9d2e8c48aea62aaeeb17302e/django-djcopyright-0.3.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"0.4.0": [
{
"comment_text": "",
"digests": {
"md5": "362b3e1b80f9627255404fbee78d07d8",
"sha256": "291e34335e68520cbce01fdb3a0a687006efe90750916367cfb9cf3dac468fd8"
},
"downloads": -1,
"filename": "django_djcopyright-0.4.0-py2.py3-none-any.whl",
"has_sig": true,
"md5_digest": "362b3e1b80f9627255404fbee78d07d8",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 19603,
"upload_time": "2019-09-01T19:34:35",
"upload_time_iso_8601": "2019-09-01T19:34:35.111388Z",
"url": "https://files.pythonhosted.org/packages/3e/ba/3d9c1827ddfb22206bb24e8d4cbd1e4f238ad67af9d95f722dde9611f60e/django_djcopyright-0.4.0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "4ad6bc1147146e4bddc6da4baac97b66",
"sha256": "b132ae824505c1b24edae8874fd01db435817b361e766964e1b585f685e88ee0"
},
"downloads": -1,
"filename": "django-djcopyright-0.4.0.zip",
"has_sig": true,
"md5_digest": "4ad6bc1147146e4bddc6da4baac97b66",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26936,
"upload_time": "2019-09-01T19:34:37",
"upload_time_iso_8601": "2019-09-01T19:34:37.270050Z",
"url": "https://files.pythonhosted.org/packages/e6/4c/e77f8939e3bc910e3b1765393c76776e3951fbbd288f247b12024f7d48b4/django-djcopyright-0.4.0.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.4.1": [
{
"comment_text": "",
"digests": {
"md5": "d08399524839e57d8e28bfc110546d43",
"sha256": "7c8bbde96acb11c2604fcfdfdcd8789e0469f799b51e7bcb4d75abef603d7ba7"
},
"downloads": -1,
"filename": "django_djcopyright-0.4.1-py2.py3-none-any.whl",
"has_sig": true,
"md5_digest": "d08399524839e57d8e28bfc110546d43",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 19616,
"upload_time": "2019-09-10T22:16:29",
"upload_time_iso_8601": "2019-09-10T22:16:29.875883Z",
"url": "https://files.pythonhosted.org/packages/77/89/b35d5abf7055ac663d4844752ba24e36d769cf410c546faab9dc9f148d2e/django_djcopyright-0.4.1-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "373508fc71f1bfc04b1690d20370b33e",
"sha256": "ade31c83a2eb07b8dd4f5130af7945cda334d3313c5a3d9efad9071b79a2876d"
},
"downloads": -1,
"filename": "django-djcopyright-0.4.1.zip",
"has_sig": true,
"md5_digest": "373508fc71f1bfc04b1690d20370b33e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26954,
"upload_time": "2019-09-10T22:16:31",
"upload_time_iso_8601": "2019-09-10T22:16:31.641138Z",
"url": "https://files.pythonhosted.org/packages/91/75/eb5e6dabd5850e74886e6d2061834d2135ff2f5f301cbb6bff2380d8cbf7/django-djcopyright-0.4.1.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.4.2": [
{
"comment_text": "",
"digests": {
"md5": "d63925b63537b0128e24197f36945353",
"sha256": "35544163f99c26c325822793d88452aff1c0f2f1dc0e659bea1b7ab5740fa003"
},
"downloads": -1,
"filename": "django_djcopyright-0.4.2-py2.py3-none-any.whl",
"has_sig": true,
"md5_digest": "d63925b63537b0128e24197f36945353",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 19619,
"upload_time": "2019-09-17T17:40:13",
"upload_time_iso_8601": "2019-09-17T17:40:13.226872Z",
"url": "https://files.pythonhosted.org/packages/c0/31/d2096de9b8c9cf14ce58736596e9b17872a788bd59ed64c0d435ca93d642/django_djcopyright-0.4.2-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "b47dc56e4aa90e2a42e2daf245d40fbc",
"sha256": "2c8262ce109b93d3612a5a52fa84846a543478cde7a9509d256b832e77063df9"
},
"downloads": -1,
"filename": "django-djcopyright-0.4.2.zip",
"has_sig": true,
"md5_digest": "b47dc56e4aa90e2a42e2daf245d40fbc",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26947,
"upload_time": "2019-09-17T17:40:14",
"upload_time_iso_8601": "2019-09-17T17:40:14.992120Z",
"url": "https://files.pythonhosted.org/packages/06/4d/d78930577e469e2e98f8b85513d33a11c6fe354f53aec61c86bbb0a787fc/django-djcopyright-0.4.2.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.4.3": [
{
"comment_text": "",
"digests": {
"md5": "c5fa3bd1efa6c8c9fb12fa872f70befe",
"sha256": "00bffeea38c63750f8f0ed4133802e2982d9d5ffce1d360c5520a6ca14b4a830"
},
"downloads": -1,
"filename": "django_djcopyright-0.4.3-py2.py3-none-any.whl",
"has_sig": true,
"md5_digest": "c5fa3bd1efa6c8c9fb12fa872f70befe",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 19623,
"upload_time": "2019-09-17T21:21:11",
"upload_time_iso_8601": "2019-09-17T21:21:11.717202Z",
"url": "https://files.pythonhosted.org/packages/23/db/e16ff9e06ef2961d609260686c7d3ffda2218b0c29afee4974127118b8d2/django_djcopyright-0.4.3-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "c6c1ef9d2e454b4e1f5c1c354c5e5f27",
"sha256": "61ac6b1dd7be31ed9a5fa4f79040c52f9e1a1805941030af6509a6dfd7e53cb5"
},
"downloads": -1,
"filename": "django-djcopyright-0.4.3.zip",
"has_sig": true,
"md5_digest": "c6c1ef9d2e454b4e1f5c1c354c5e5f27",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26950,
"upload_time": "2019-09-17T21:21:13",
"upload_time_iso_8601": "2019-09-17T21:21:13.650778Z",
"url": "https://files.pythonhosted.org/packages/ae/da/237b32c8c502698e2c14436e5ea0a01d307e44b4b429509ec4156033c7e7/django-djcopyright-0.4.3.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.4.4": [
{
"comment_text": "",
"digests": {
"md5": "122026f7ca4c41513cdc65112f3b0b04",
"sha256": "9726b042c5b21b1c68b5951afbceeac4ac5336127999d399d2ada25e00429692"
},
"downloads": -1,
"filename": "django_djcopyright-0.4.4-py2.py3-none-any.whl",
"has_sig": true,
"md5_digest": "122026f7ca4c41513cdc65112f3b0b04",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 19612,
"upload_time": "2019-09-25T21:16:04",
"upload_time_iso_8601": "2019-09-25T21:16:04.894785Z",
"url": "https://files.pythonhosted.org/packages/36/4a/0170ab9b6430a4585e10378da5658e72c96c57734e6aba7a24b3cdaa8f39/django_djcopyright-0.4.4-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "30325aeab0dd19e24356959a675a6a20",
"sha256": "29cf1f9283fd3035a129939a36ed2ddbc6a1d77ee3ec75e5440d9ec594ef16ca"
},
"downloads": -1,
"filename": "django-djcopyright-0.4.4.zip",
"has_sig": true,
"md5_digest": "30325aeab0dd19e24356959a675a6a20",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26949,
"upload_time": "2019-09-25T21:16:07",
"upload_time_iso_8601": "2019-09-25T21:16:07.647181Z",
"url": "https://files.pythonhosted.org/packages/e7/ff/de05b755d6d1575c74ee0957123bb278f2cee04f372fb84d4b1d387d7371/django-djcopyright-0.4.4.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.4.5": [
{
"comment_text": "",
"digests": {
"md5": "1c0f2214f15c7f40f31dc24f4378207a",
"sha256": "e774a34764b38b4175bf7a91e9ad1a9adbd5351fe446a9190e5b13b1b05e3c07"
},
"downloads": -1,
"filename": "django_djcopyright-0.4.5-py2.py3-none-any.whl",
"has_sig": true,
"md5_digest": "1c0f2214f15c7f40f31dc24f4378207a",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 19618,
"upload_time": "2019-10-02T21:02:58",
"upload_time_iso_8601": "2019-10-02T21:02:58.962223Z",
"url": "https://files.pythonhosted.org/packages/2e/97/9b03fd94db68f0d8e1f284fc2e996c80f512d949dc6369e2157f98d54e9e/django_djcopyright-0.4.5-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "6e7962bb9752601b903d4c3b212dcf4f",
"sha256": "f75a1b2255f49ac3672e31c8faf9bb852141c86e0512607fa1112c067e4f2a1f"
},
"downloads": -1,
"filename": "django-djcopyright-0.4.5.zip",
"has_sig": true,
"md5_digest": "6e7962bb9752601b903d4c3b212dcf4f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 26946,
"upload_time": "2019-10-02T21:03:00",
"upload_time_iso_8601": "2019-10-02T21:03:00.755501Z",
"url": "https://files.pythonhosted.org/packages/a3/50/66921a0c99a1c8992bad508e272388e916361fcd09edbc60d8f98faa76ec/django-djcopyright-0.4.5.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.5.0": [
{
"comment_text": "",
"digests": {
"md5": "2a1bc487fe9282babe927171f73e9482",
"sha256": "bffe88c0b00f1b2ec0abc070009bda9ef73b75a1f4f43a8c685bb7fedf815167"
},
"downloads": -1,
"filename": "django_djcopyright-0.5.0-py2.py3-none-any.whl",
"has_sig": true,
"md5_digest": "2a1bc487fe9282babe927171f73e9482",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 19627,
"upload_time": "2019-10-07T07:57:42",
"upload_time_iso_8601": "2019-10-07T07:57:42.004592Z",
"url": "https://files.pythonhosted.org/packages/c8/96/9c91240457f863ce585f98e78c882d4ea4c85091fd0ff5febd062cc6b06c/django_djcopyright-0.5.0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "92bbf746875f5921fc11b555f79462d9",
"sha256": "689e42135a6615ab4a370dbf74c6f7de4eb5665897401b0019138446f4130a8d"
},
"downloads": -1,
"filename": "django-djcopyright-0.5.0.zip",
"has_sig": true,
"md5_digest": "92bbf746875f5921fc11b555f79462d9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27003,
"upload_time": "2019-10-07T07:57:44",
"upload_time_iso_8601": "2019-10-07T07:57:44.030573Z",
"url": "https://files.pythonhosted.org/packages/7b/06/ae14d0060d4927937488a71f9994495c9a38b26669832bb5dd620eba9f37/django-djcopyright-0.5.0.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.6.0": [
{
"comment_text": "",
"digests": {
"md5": "405ed2e51bc955ed74d3a1b04bcdeeff",
"sha256": "00fc9f6f71e6c5c1cc6c52c7370dadfb5122abcfa055e3dc0ec21c15ee25cc87"
},
"downloads": -1,
"filename": "django_djcopyright-0.6.0-py2.py3-none-any.whl",
"has_sig": true,
"md5_digest": "405ed2e51bc955ed74d3a1b04bcdeeff",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 19629,
"upload_time": "2019-10-08T05:27:02",
"upload_time_iso_8601": "2019-10-08T05:27:02.790478Z",
"url": "https://files.pythonhosted.org/packages/b2/e1/4e9b99fea167bb8c7ffd3f661b422e3afce1a02c47a718d6305d6b5b85bc/django_djcopyright-0.6.0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "2709d6e6add84a022cc26e45c231508a",
"sha256": "fde51529995ca7bcd4275cddc84f4263e4ce6e4fd0151ac8dbbb7582483c3bb8"
},
"downloads": -1,
"filename": "django-djcopyright-0.6.0.zip",
"has_sig": true,
"md5_digest": "2709d6e6add84a022cc26e45c231508a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27267,
"upload_time": "2019-10-08T05:27:04",
"upload_time_iso_8601": "2019-10-08T05:27:04.593754Z",
"url": "https://files.pythonhosted.org/packages/4d/f1/5506092d7efb11f2ed03bc079cb7ece728a378693a5a2490b0a60fe4b51a/django-djcopyright-0.6.0.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.6.1": [
{
"comment_text": "",
"digests": {
"md5": "5984f3e9495d4a1aeaf7e241bc89b600",
"sha256": "1137ebdf6630860f21e658832d1df01fa076184dc6308248c9e92e77812b0d96"
},
"downloads": -1,
"filename": "django_djcopyright-0.6.1-py2.py3-none-any.whl",
"has_sig": true,
"md5_digest": "5984f3e9495d4a1aeaf7e241bc89b600",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 19632,
"upload_time": "2019-10-08T10:48:08",
"upload_time_iso_8601": "2019-10-08T10:48:08.669322Z",
"url": "https://files.pythonhosted.org/packages/08/82/6d6723b227ec1aff2bad69f990b11e4fa0539c81a9f6846924cfc9ced0a5/django_djcopyright-0.6.1-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "23f1a3209923c9958475784920a917d7",
"sha256": "09d4330cfdefb260a7df0a7f8c99fe8abf3d192dfc9ba50ddf5e976c372e96f2"
},
"downloads": -1,
"filename": "django-djcopyright-0.6.1.zip",
"has_sig": true,
"md5_digest": "23f1a3209923c9958475784920a917d7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27272,
"upload_time": "2019-10-08T10:48:10",
"upload_time_iso_8601": "2019-10-08T10:48:10.910114Z",
"url": "https://files.pythonhosted.org/packages/38/27/e719ea7c6c61aa9bdfa93e9c90030a899686966deed16d2ef8d866e7dbbe/django-djcopyright-0.6.1.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.7.0": [
{
"comment_text": "",
"digests": {
"md5": "ae678958444921070babe9631affdd61",
"sha256": "d03f29bcd71becc0583b5ba50d98c11a4a2e595ecf3ba40ffe17d91f8ab25c22"
},
"downloads": -1,
"filename": "django_djcopyright-0.7.0-py3-none-any.whl",
"has_sig": true,
"md5_digest": "ae678958444921070babe9631affdd61",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 19621,
"upload_time": "2019-10-14T09:31:11",
"upload_time_iso_8601": "2019-10-14T09:31:11.374854Z",
"url": "https://files.pythonhosted.org/packages/9e/e2/993bdb751b2223f4c86978eded51006e77ec3d3d5bc8aaf0f93c6f1c3572/django_djcopyright-0.7.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "32dcacf873b1ca0743f5ca570bcf6505",
"sha256": "b5a354bd4ad86604b2391f15843886ba82008f3d2795f9c7266ef971c8506ee5"
},
"downloads": -1,
"filename": "django-djcopyright-0.7.0.zip",
"has_sig": true,
"md5_digest": "32dcacf873b1ca0743f5ca570bcf6505",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27281,
"upload_time": "2019-10-14T09:31:13",
"upload_time_iso_8601": "2019-10-14T09:31:13.715068Z",
"url": "https://files.pythonhosted.org/packages/36/4d/4d3c8bddb3bc181ac3be77de1fe7ddc0f6dfccfba1307a77d6a70d931e2e/django-djcopyright-0.7.0.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.7.1": [
{
"comment_text": "",
"digests": {
"md5": "2d3e58d7a4fd7b4307601df385d421cd",
"sha256": "81dc8ec59613ac7bf3050555e5739f2d1858320529fb0b70a31598ef4bd86917"
},
"downloads": -1,
"filename": "django_djcopyright-0.7.1-py3-none-any.whl",
"has_sig": true,
"md5_digest": "2d3e58d7a4fd7b4307601df385d421cd",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 19621,
"upload_time": "2019-10-17T17:45:21",
"upload_time_iso_8601": "2019-10-17T17:45:21.494782Z",
"url": "https://files.pythonhosted.org/packages/bc/f5/4d1b6e479a9b8e0216fd41599b600b83e4f4dc9482fab19508ef33bb66c1/django_djcopyright-0.7.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "05fb2d3b8fd14479af9c609e0f602647",
"sha256": "029519ddbde8c9bd53bf85e1a716e0a01c5c327edc9ae1871d15f2071c57e0e8"
},
"downloads": -1,
"filename": "django-djcopyright-0.7.1.zip",
"has_sig": true,
"md5_digest": "05fb2d3b8fd14479af9c609e0f602647",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 27278,
"upload_time": "2019-10-17T17:45:25",
"upload_time_iso_8601": "2019-10-17T17:45:25.026379Z",
"url": "https://files.pythonhosted.org/packages/22/de/4e25c9e0f037b29adcd30794b6003b5a3c8d8a75e49cc8cbb98f451e0b6b/django-djcopyright-0.7.1.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.8.0": [
{
"comment_text": "",
"digests": {
"md5": "61b8000581f713392e499aad04bfe4cb",
"sha256": "5ebe7c4463dc01813b6f17123cfb321dc05b50a2570dfd3b44f06af8b0ddde38"
},
"downloads": -1,
"filename": "django_djcopyright-0.8.0-py3-none-any.whl",
"has_sig": true,
"md5_digest": "61b8000581f713392e499aad04bfe4cb",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20720,
"upload_time": "2019-10-22T19:22:39",
"upload_time_iso_8601": "2019-10-22T19:22:39.675749Z",
"url": "https://files.pythonhosted.org/packages/8b/cc/18dd075bfc62f49fd00bc7e5d64712583e1dc8f68369d79a7e760b8fda3c/django_djcopyright-0.8.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "6a2869518bebb66709cdd3c9ac070ffe",
"sha256": "368dad0dac7cbf6135a6f12d6a8aed826340c3c5e5f925a399b7d8a49a884c9e"
},
"downloads": -1,
"filename": "django-djcopyright-0.8.0.zip",
"has_sig": true,
"md5_digest": "6a2869518bebb66709cdd3c9ac070ffe",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28431,
"upload_time": "2019-10-22T19:22:41",
"upload_time_iso_8601": "2019-10-22T19:22:41.389191Z",
"url": "https://files.pythonhosted.org/packages/fd/50/2f187ae828125a82e91c7db594b9a4ab716af33de771d653692109a05914/django-djcopyright-0.8.0.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.8.1": [
{
"comment_text": "",
"digests": {
"md5": "3337cefc412d0060ea8858f8becdd76c",
"sha256": "dad7ab82057ae99982fba6280d706a2350a7a04246805aee3e89e8888501c35f"
},
"downloads": -1,
"filename": "django_djcopyright-0.8.1-py3-none-any.whl",
"has_sig": true,
"md5_digest": "3337cefc412d0060ea8858f8becdd76c",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20719,
"upload_time": "2019-10-22T20:03:48",
"upload_time_iso_8601": "2019-10-22T20:03:48.771828Z",
"url": "https://files.pythonhosted.org/packages/01/16/9efe096cb76c6c97ef732e6983b6b971cbab301d715dc8577a2d33153f40/django_djcopyright-0.8.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "e302899c633ad67cb46d36252efd8da0",
"sha256": "f5d0e53b07069f011b7aff4543899ef2b631ac4ee1424e33ed596f7bd691645a"
},
"downloads": -1,
"filename": "django-djcopyright-0.8.1.zip",
"has_sig": true,
"md5_digest": "e302899c633ad67cb46d36252efd8da0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28428,
"upload_time": "2019-10-22T20:03:51",
"upload_time_iso_8601": "2019-10-22T20:03:51.151161Z",
"url": "https://files.pythonhosted.org/packages/ae/82/3d18403cbc491a6852b93ea6d71d5350b160d6d9ae6b2df530c96565bf90/django-djcopyright-0.8.1.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.9.0": [
{
"comment_text": "",
"digests": {
"md5": "74854e54aa68d4600b3ba5cbabbf674b",
"sha256": "9deb1d09cb8a78e746bfd6b85612ecf97d42e7b0104fcdff5b0d32bff248cfb1"
},
"downloads": -1,
"filename": "django_djcopyright-0.9.0-py3-none-any.whl",
"has_sig": true,
"md5_digest": "74854e54aa68d4600b3ba5cbabbf674b",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20820,
"upload_time": "2019-11-02T17:53:39",
"upload_time_iso_8601": "2019-11-02T17:53:39.046630Z",
"url": "https://files.pythonhosted.org/packages/17/4e/fde95382054b1018aad8d599d8d43f167466db8e2b8aacaf4f1d5b02f2e3/django_djcopyright-0.9.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "00f860cb402d26e9e0fff61e095d2f23",
"sha256": "657c18742c9f3430b369eba32b53c1854ff19eceb7c0d838c61dfe93f00d5240"
},
"downloads": -1,
"filename": "django-djcopyright-0.9.0.zip",
"has_sig": true,
"md5_digest": "00f860cb402d26e9e0fff61e095d2f23",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28610,
"upload_time": "2019-11-02T17:53:41",
"upload_time_iso_8601": "2019-11-02T17:53:41.015138Z",
"url": "https://files.pythonhosted.org/packages/91/c1/4d1a5f9d4cc9c2ed25855d5fca66506f9985b2c6fd1cec8e68552a6d4817/django-djcopyright-0.9.0.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.9.1": [
{
"comment_text": "",
"digests": {
"md5": "9e40570d7ca172bc19cca3c42d56ef27",
"sha256": "f67ff22a1cf41d76e9fad2b6e829f8b4cf85a7873becf6dc89456e126d57f973"
},
"downloads": -1,
"filename": "django_djcopyright-0.9.1-py3-none-any.whl",
"has_sig": true,
"md5_digest": "9e40570d7ca172bc19cca3c42d56ef27",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20822,
"upload_time": "2019-11-16T14:19:45",
"upload_time_iso_8601": "2019-11-16T14:19:45.642278Z",
"url": "https://files.pythonhosted.org/packages/8a/63/91371e949eec7cbeef144cedaf32d90d72cb9e905d5d901797714e0618a4/django_djcopyright-0.9.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "5d0286d22f9be9bf4050726f3bb322b1",
"sha256": "1f346aa0504e869ddf5e237b1e22adb064b0a531f589238d30f93723cad53711"
},
"downloads": -1,
"filename": "django-djcopyright-0.9.1.zip",
"has_sig": true,
"md5_digest": "5d0286d22f9be9bf4050726f3bb322b1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28604,
"upload_time": "2019-11-16T14:19:47",
"upload_time_iso_8601": "2019-11-16T14:19:47.812058Z",
"url": "https://files.pythonhosted.org/packages/50/48/434d316f72c8ef7581b31c1431a5198888b268fffad442a1700e94ea5055/django-djcopyright-0.9.1.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.9.2": [
{
"comment_text": "",
"digests": {
"md5": "fea61acee1a2a5a12436d1c94c251082",
"sha256": "ea06c61f1fabe6c172d0a8878ed0d9e1090af6937692079054c460cb4e456dd4"
},
"downloads": -1,
"filename": "django_djcopyright-0.9.2-py3-none-any.whl",
"has_sig": true,
"md5_digest": "fea61acee1a2a5a12436d1c94c251082",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20822,
"upload_time": "2019-11-16T22:41:54",
"upload_time_iso_8601": "2019-11-16T22:41:54.862922Z",
"url": "https://files.pythonhosted.org/packages/31/54/c3b3df6ab74d467c5a22c81bb7c3b4e2b487b2bc88e23ab154be668f84fc/django_djcopyright-0.9.2-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "c4b5f347eff759c8575fc3bfd5211aa2",
"sha256": "5ab51fd9b114c5699531ce62738ce70e5dd36e105dee817db3317628b1240596"
},
"downloads": -1,
"filename": "django-djcopyright-0.9.2.zip",
"has_sig": true,
"md5_digest": "c4b5f347eff759c8575fc3bfd5211aa2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28602,
"upload_time": "2019-11-16T22:41:56",
"upload_time_iso_8601": "2019-11-16T22:41:56.711265Z",
"url": "https://files.pythonhosted.org/packages/3d/75/c5256a2b0e86c23ae71bde7de74009d02bc9412b07a75b1cdd77ebabf3f1/django-djcopyright-0.9.2.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.9.3": [
{
"comment_text": "",
"digests": {
"md5": "0f7a141a1ffc3141e26814ccda586228",
"sha256": "47a436f493404e0733107f230b1af479d9b8a62d93fc7d04d9bb956973c5dfc4"
},
"downloads": -1,
"filename": "django_djcopyright-0.9.3-py3-none-any.whl",
"has_sig": true,
"md5_digest": "0f7a141a1ffc3141e26814ccda586228",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20828,
"upload_time": "2019-11-23T17:04:24",
"upload_time_iso_8601": "2019-11-23T17:04:24.253127Z",
"url": "https://files.pythonhosted.org/packages/8b/8c/039f031e45cc7a6908e88a385c752d7bbc5cfd515750bdc33fa67f1ab91b/django_djcopyright-0.9.3-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "4e400403730c3912497d730ee84ec6d6",
"sha256": "36137dc6871afbcdfeeed56190ad7a05ced0bb6109fa9ccb72ea82b95732c77b"
},
"downloads": -1,
"filename": "django-djcopyright-0.9.3.zip",
"has_sig": true,
"md5_digest": "4e400403730c3912497d730ee84ec6d6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28611,
"upload_time": "2019-11-23T17:04:26",
"upload_time_iso_8601": "2019-11-23T17:04:26.008722Z",
"url": "https://files.pythonhosted.org/packages/8f/dc/68cecbcfa01a416a5ab70df741a0e919accb7db74a4224558828b3a7124f/django-djcopyright-0.9.3.zip",
"yanked": false,
"yanked_reason": null
}
],
"0.9.4": [
{
"comment_text": "",
"digests": {
"md5": "1c62d3018f68d47421d83afb6f6528dc",
"sha256": "3288f57f21be849b2959c052c7a7bf6ae7f98035bcefff1a9d8bd1b088309449"
},
"downloads": -1,
"filename": "django_djcopyright-0.9.4-py3-none-any.whl",
"has_sig": true,
"md5_digest": "1c62d3018f68d47421d83afb6f6528dc",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 20817,
"upload_time": "2019-11-27T18:26:58",
"upload_time_iso_8601": "2019-11-27T18:26:58.356608Z",
"url": "https://files.pythonhosted.org/packages/f9/dd/e609de4b7ab7eebd9ad39b27fb4580a53ec1bccc45fa61f24c4279b17fe5/django_djcopyright-0.9.4-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "e94b86229c15e38c26fb4c364a985117",
"sha256": "a01609fd767ab8f18a46fc6706fdf24609b2aa0db7bd6f3b49b0a8557a2c80b0"
},
"downloads": -1,
"filename": "django-djcopyright-0.9.4.zip",
"has_sig": true,
"md5_digest": "e94b86229c15e38c26fb4c364a985117",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 28603,
"upload_time": "2019-11-27T18:27:00",
"upload_time_iso_8601": "2019-11-27T18:27:00.510008Z",
"url": "https://files.pythonhosted.org/packages/2b/f3/75773b96bcdc4bbc243ff4f8b2267bb40ca4fe54496f17a76995aeea4edc/django-djcopyright-0.9.4.zip",
"yanked": false,
"yanked_reason": null
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "6f21f7afc5596a818284085cdc2eddef",
"sha256": "8fae7f17a6b3cb6e8b3e94b654302a0905fa6fbbc0f654081cbe9f6101a3e402"
},
"downloads": -1,
"filename": "django_djcopyright-0.17.0-py3-none-any.whl",
"has_sig": true,
"md5_digest": "6f21f7afc5596a818284085cdc2eddef",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 21377,
"upload_time": "2021-11-19T06:22:13",
"upload_time_iso_8601": "2021-11-19T06:22:13.685735Z",
"url": "https://files.pythonhosted.org/packages/40/30/de96093f16f3c34d6b3e485ec51c88966a206023317a685568a9d8777df9/django_djcopyright-0.17.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"md5": "296be8915aa4836c9787dfd04472c455",
"sha256": "6c6ec8803745c858c6eb3d24a15db1963280c339051e3686635963a490dafe2e"
},
"downloads": -1,
"filename": "django-djcopyright-0.17.0.zip",
"has_sig": true,
"md5_digest": "296be8915aa4836c9787dfd04472c455",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 32088,
"upload_time": "2021-11-19T06:22:15",
"upload_time_iso_8601": "2021-11-19T06:22:15.910829Z",
"url": "https://files.pythonhosted.org/packages/ae/ac/70d638781f80449ccab5f2630f81e47a94daaa7e24f3f827e7cd675463e4/django-djcopyright-0.17.0.zip",
"yanked": false,
"yanked_reason": null
}
],
"vulnerabilities": []
}