{ "info": { "author": "Chris Chang", "author_email": "c@crccheck.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5" ], "description": "Django Object Actions\n=====================\n\n.. image:: https://travis-ci.org/crccheck/django-object-actions.png\n :target: https://travis-ci.org/crccheck/django-object-actions\n\n.. image:: https://coveralls.io/repos/crccheck/django-object-actions/badge.png\n :target: https://coveralls.io/r/crccheck/django-object-actions\n\nIf you've ever tried making your own admin object tools and you were\nlike me, you immediately gave up. Why can't they be as easy as making\nDjango Admin Actions? Well now they can be.\n\n\nQuick-Start Guide\n-----------------\n\nInstall Django Object Actions::\n\n pip install django-object-actions\n\nAdd ``django_object_actions`` to your ``INSTALLED_APPS`` so Django can find our\ntemplates.\n\nIn your admin.py::\n\n from django_object_actions import DjangoObjectActions\n\n\n class ArticleAdmin(DjangoObjectActions, admin.ModelAdmin):\n def publish_this(self, request, obj):\n publish_obj(obj)\n publish_this.label = \"Publish\" # optional\n publish_this.short_description = \"Submit this article\" # optional\n\n change_actions = ('publish_this', )\n\n\nUsage\n-----\n\nDefining new tool actions are just like defining regular `admin actions\n`_. The major\ndifference is the action functions for you write for the change view will take\nan object instance instead of a queryset (see *Re-using Admin Actions* below).\n\nTool actions are exposed by putting them in a ``change_actions`` attribute in\nyour model admin. You can also add tool actions to the changelist views too.\nYou'll get a queryset like a regular admin action::\n\n from django_object_actions import DjangoObjectActions\n\n class MyModelAdmin(DjangoObjectActions, admin.ModelAdmin):\n def toolfunc(self, request, obj):\n pass\n toolfunc.label = \"This will be the label of the button\" # optional\n toolfunc.short_description = \"This will be the tooltip of the button\" # optional\n\n def make_published(modeladmin, request, queryset):\n queryset.update(status='p')\n\n change_actions = ('toolfunc', )\n changelist_actions = ('make_published', )\n\nJust like admin actions, you can send a message with ``self.message_user``.\nNormally, you would do something to the object and go back to the same\nplace, but if you return a HttpResponse, it will follow it (hey, just\nlike admin actions!).\n\nIf your admin modifies ``get_urls``, ``change_view``, or ``changelist_view``,\nyou'll need to take extra care.\n\nRe-using Admin Actions\n``````````````````````\n\nIf you would like a preexisting admin action to also be an change action, add\nthe ``takes_instance_or_queryset`` decorator like::\n\n\n from django_object_actions import (DjangoObjectActions,\n takes_instance_or_queryset)\n\n class RobotAdmin(DjangoObjectActions, admin.ModelAdmin):\n # ... snip ...\n\n @takes_instance_or_queryset\n def tighten_lug_nuts(self, request, queryset):\n queryset.update(lugnuts=F('lugnuts') - 1)\n\n change_actions = ['tighten_lug_nuts']\n actions = ['tighten_lug_nuts']\n\nCustomizing Admin Actions\n`````````````````````````\n\nTo give the action some a helpful title tooltip, add a ``short_description``\nattribute, similar to how admin actions work::\n\n def increment_vote(self, request, obj):\n obj.votes = obj.votes + 1\n obj.save()\n increment_vote.short_description = \"Increment the vote count by one\"\n\nBy default, Django Object Actions will guess what to label the button based on\nthe name of the function. You can override this with a ``label`` attribute::\n\n def increment_vote(self, request, obj):\n obj.votes = obj.votes + 1\n obj.save()\n increment_vote.label = \"Vote++\"\n\nIf you need even more control, you can add arbitrary attributes to the buttons\nby adding a Django widget style `attrs` attribute::\n\n def increment_vote(self, request, obj):\n obj.votes = obj.votes + 1\n obj.save()\n increment_vote.attrs = {\n 'class': 'addlink',\n }\n\nProgrammatically Disabling Actions\n``````````````````````````````````\n\nYou can programmatically disable registered actions by defining your own custom\n``get_change_actions()`` method. In this example, certain actions only apply to\ncertain object states (i.e. You should not be able to close an company account\nif the account is already closed)::\n\n def get_change_actions(self, request, object_id, form_url):\n actions = super(PollAdmin, self).get_change_actions(request, object_id, form_url)\n actions = list(actions)\n if not request.user.is_superuser:\n return []\n\n obj = self.model.objects.get(pk=object_id)\n if obj.question.endswith('?'):\n actions.remove('question_mark')\n\n return actions\n\nThe same is true for changelist actions with ``get_changelist_actions``.\n\n\nAlternate Installation\n``````````````````````\n\nYou don't have to add this to ``INSTALLED_APPS``, all you need to to do is copy\nthe template ``django_object_actions/change_form.html`` some place Django's\ntemplate loader `will find it\n`_.\n\nIf you don't intend to use the template customizations at all, don't add\n``django_object_actions`` to your ``INSTALLED_APPS`` at all and use\n``BaseDjangoObjectActions`` instead of ``DjangoObjectActions``.\n\n\nMore Examples\n-------------\n\nMaking an action that links off-site::\n\n def external_link(self, request, obj):\n from django.http import HttpResponseRedirect\n url = f'https://example.com/{obj.id}'\n return HttpResponseRedirect(url)\n\n\nLimitations\n-----------\n\n1. ``django-object-actions`` expects functions to be methods of the model admin.\n While Django gives you a lot more options for their admin actions.\n\n2. If you provide your own custom ``change_form.html``, you'll also need to\n manually copy in the relevant bits of `our change form\n `_. You can also\n use ``from django_object_actions import BaseDjangoObjectActions`` instead.\n\n3. Security. This has been written with the assumption that everyone in the\n Django admin belongs there. Permissions should be enforced in your own\n actions irregardless of what this provides. Better default security is\n planned for the future.\n\n\nDemo Admin & Docker images\n--------------------------\n\nYou can try the demo admin against several versions of Django with these Docker\nimages: https://hub.docker.com/r/crccheck/django-object-actions/\n\nThis runs the example Django project in ``./example_project`` based on the\n\"polls\" tutorial. ``admin.py`` demos what you can do with this app.\n\n\nDevelopment\n-----------\n\nGetting started *(with virtualenvwrapper)*::\n\n # get a copy of the code\n git clone git@github.com:crccheck/django-object-actions.git\n cd django-object-actions\n # set up your virtualenv (with virtualenvwrapper)\n mkvirtualenv django-object-actions\n # Install requirements\n make install\n # Hack your path so that we can reference packages starting from the root\n add2virtualenv .\n make test # run test suite\n make quickstart # runs 'make resetdb' and some extra steps\n\nThis will install whatever the latest stable version of Django is. You can also\ninstall a specific version of Django and ``pip install -r requirements.txt``.\n\nVarious helpers are available as make commands. Type ``make help`` and view the\n``Makefile`` to see what other things you can do.\n\n\nSimilar Packages\n----------------\n\nIf you want an actions menu for each row of your changelist, check out `Django Admin Row Actions\n`_.\n\nDjango Object Actions is very similar to\n`django-object-tools `_,\nbut does not require messing with your urls.py, does not do anything\nspecial with permissions, and uses the same patterns as making `admin\nactions `_\nin Django.\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/crccheck/django-object-actions", "keywords": "", "license": "Apache License, Version 2.0", "maintainer": "", "maintainer_email": "", "name": "django-object-actions", "package_url": "https://pypi.org/project/django-object-actions/", "platform": "", "project_url": "https://pypi.org/project/django-object-actions/", "project_urls": { "Homepage": "https://github.com/crccheck/django-object-actions" }, "release_url": "https://pypi.org/project/django-object-actions/1.1.0/", "requires_dist": null, "requires_python": "", "summary": "A Django app for adding object tools for models in the admin", "version": "1.1.0" }, "last_serial": 5225816, "releases": { "0.1.0": [], "0.1.1": [ { "comment_text": "", "digests": { "md5": "2f8acab18312c62d152598b887333c16", "sha256": "ff46abd9425192e8e8164a04282bdcbd89799404c4cb49395515ee35612b9856" }, "downloads": -1, "filename": "django-object-actions-0.1.1.tar.gz", "has_sig": false, "md5_digest": "2f8acab18312c62d152598b887333c16", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8095, "upload_time": "2013-02-26T23:48:14", "url": "https://files.pythonhosted.org/packages/7b/3b/8c45060f7bc3291cc9c3a1f09c2f4d6e90bf862dd8efd62eeda0f659b7df/django-object-actions-0.1.1.tar.gz" } ], "0.10.0": [ { "comment_text": "", "digests": { "md5": "8999f6a3ff7e012a12f621758b95ab38", "sha256": "b68ab47afe005eca8e88a955f7b3b9153a26802a78c9a101f9a4648284fb337f" }, "downloads": -1, "filename": "django_object_actions-0.10.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8999f6a3ff7e012a12f621758b95ab38", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 12834, "upload_time": "2017-05-10T03:56:37", "url": "https://files.pythonhosted.org/packages/0f/4d/c0ad50c080764793986e6bb33484050e3780e8deb06c443ac4350a63aaa4/django_object_actions-0.10.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "349cc75c73fde98a243a3b42c3221265", "sha256": "3a6a0fbe991d665d359f25a6924fe5f8b62516d967a7e3f4bbabce7e43c449f9" }, "downloads": -1, "filename": "django-object-actions-0.10.0.tar.gz", "has_sig": false, "md5_digest": "349cc75c73fde98a243a3b42c3221265", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12781, "upload_time": "2017-05-10T03:56:33", "url": "https://files.pythonhosted.org/packages/37/63/f0587bf83e0be2f613f51ab698441d6a8da29e6a5408d972cbc6ee3b165b/django-object-actions-0.10.0.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "96e2420bb65a489adacba0ad7de9a646", "sha256": "27969addc446696573e0ce229918f60bbf9a870e53cb5e08547fd275e17673f2" }, "downloads": -1, "filename": "django-object-actions-0.2.0.tar.gz", "has_sig": false, "md5_digest": "96e2420bb65a489adacba0ad7de9a646", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16262, "upload_time": "2013-11-10T04:08:09", "url": "https://files.pythonhosted.org/packages/4a/2f/f252c7309380186f4df56f29b7d56ee5ec1b47cacacfac816182f1acf93c/django-object-actions-0.2.0.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "a05c47eb6f513c2ad43b2530b9fee8cc", "sha256": "74fc51cafe42668772df1d1c8f91f861b5337e113c647bab904cca6ea7378f54" }, "downloads": -1, "filename": "django-object-actions-0.3.0.tar.gz", "has_sig": false, "md5_digest": "a05c47eb6f513c2ad43b2530b9fee8cc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12966, "upload_time": "2014-01-09T21:57:54", "url": "https://files.pythonhosted.org/packages/8a/cf/5d900922347ce8a14115292bb4dcb132bc99af961a41af8c1ae9010d3d96/django-object-actions-0.3.0.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "04ea9ae4b40c619a2c5e1f0e30917f77", "sha256": "eddc63f1ade98152669f291b0af3f4887275a873c709dde7a425bc49ae9db32c" }, "downloads": -1, "filename": "django-object-actions-0.4.0.tar.gz", "has_sig": false, "md5_digest": "04ea9ae4b40c619a2c5e1f0e30917f77", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14679, "upload_time": "2014-02-13T00:13:29", "url": "https://files.pythonhosted.org/packages/95/51/2b8295800fbfa015974e4a9313f4783290483174f3d7d4aa16b879b58082/django-object-actions-0.4.0.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "39eadaa4af0593b99988bf3f67ce33db", "sha256": "b608a9dfc6328d8e5385e5f0902668074b52470ccdc23341ac9f09fb3b37274e" }, "downloads": -1, "filename": "django_object_actions-0.5.0-py2-none-any.whl", "has_sig": false, "md5_digest": "39eadaa4af0593b99988bf3f67ce33db", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 17154, "upload_time": "2014-07-01T16:00:15", "url": "https://files.pythonhosted.org/packages/b2/45/4c91171ae4f4a76c865c72ecdf20e703f9808d7506111448db20b41a716d/django_object_actions-0.5.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9421394812a26655ec44ab3ed2763848", "sha256": "a2cdcc952a8b97287d1263d00870b12e2dd7a7e19d4db2992d32ee900b56048a" }, "downloads": -1, "filename": "django-object-actions-0.5.0.tar.gz", "has_sig": false, "md5_digest": "9421394812a26655ec44ab3ed2763848", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14666, "upload_time": "2014-07-01T15:59:27", "url": "https://files.pythonhosted.org/packages/0c/90/fc94b9c86c2bea8867fa1f3e3d069f43558e399eb1f7708b8fbb551b3dc6/django-object-actions-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "fd178f845877fe270858c43e159a488c", "sha256": "ae47397e6e0c011ce6df93c9fe2cb308d0725624664445377df25b9f116e8cbf" }, "downloads": -1, "filename": "django_object_actions-0.5.1-py2-none-any.whl", "has_sig": false, "md5_digest": "fd178f845877fe270858c43e159a488c", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 10818, "upload_time": "2014-11-28T03:37:13", "url": "https://files.pythonhosted.org/packages/5d/2f/601f1b552ad0bec259ecd200c69bd18f4ad04cb708bfec0bb2bbfa174e70/django_object_actions-0.5.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4e20e8772da8e1f319238f89006eb565", "sha256": "73bc4b1c66a5f1df767c66f048732554b8e39f33e45e19f0babc0402e4463519" }, "downloads": -1, "filename": "django-object-actions-0.5.1.tar.gz", "has_sig": false, "md5_digest": "4e20e8772da8e1f319238f89006eb565", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10658, "upload_time": "2014-11-28T03:37:11", "url": "https://files.pythonhosted.org/packages/ba/04/39fe4ca554cfc32c42124b4960b7cd1f96015bde02f5fc392f5ead9ee52b/django-object-actions-0.5.1.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "cd5755486c98e440ab0966a821f85337", "sha256": "db9b6321eae4aa8275abd5ac45a64e439933505f62ecff709da8037b91a6fbb8" }, "downloads": -1, "filename": "django_object_actions-0.6.0-py2-none-any.whl", "has_sig": false, "md5_digest": "cd5755486c98e440ab0966a821f85337", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 10857, "upload_time": "2015-12-07T02:54:32", "url": "https://files.pythonhosted.org/packages/64/9f/cd22257297a2ccf825f9cfc23931b09fba7b9418b9544bab9c2e54baaf3d/django_object_actions-0.6.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "86c00be5a2e7556d82e5d5be6a6b01a6", "sha256": "5a2fceb1616aaa79c31cdf8506b72822443144e7f59f18317167b3f1f39601e4" }, "downloads": -1, "filename": "django-object-actions-0.6.0.tar.gz", "has_sig": false, "md5_digest": "86c00be5a2e7556d82e5d5be6a6b01a6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10685, "upload_time": "2015-12-07T02:54:27", "url": "https://files.pythonhosted.org/packages/2d/ed/664c6c39c3376c356e8afb8123725d27645c71bc6fa214551e60c61c3e21/django-object-actions-0.6.0.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "8365a674654f763ec2a13a7b2fe1407b", "sha256": "47bfb77eb621f1a7bf41dc26a3658f18f0db4df654d45408b3a84b02a5724df3" }, "downloads": -1, "filename": "django_object_actions-0.7.0-py2-none-any.whl", "has_sig": false, "md5_digest": "8365a674654f763ec2a13a7b2fe1407b", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 11325, "upload_time": "2016-01-14T04:15:23", "url": "https://files.pythonhosted.org/packages/67/ad/7f3c553e17baef90be0a66300abead70fef85ac6d495a39b98e877bc1380/django_object_actions-0.7.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6ad56ea7ad69ee549d5eb6d94eba95f1", "sha256": "da230241b0704b6be5fc98a41a8821c07e90e948182743f0a9e9f5ebd96674a8" }, "downloads": -1, "filename": "django-object-actions-0.7.0.tar.gz", "has_sig": false, "md5_digest": "6ad56ea7ad69ee549d5eb6d94eba95f1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11883, "upload_time": "2016-01-14T04:15:18", "url": "https://files.pythonhosted.org/packages/30/d8/5c1334df79ab2583222acc3870d7ea33c6509feacdc980204006334b51ec/django-object-actions-0.7.0.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "804b9e7fd4ba0fbc850e469d21a7b538", "sha256": "b46e89651be2616f8e239f37fb0ddb9ec98ecb2a88f585ad287ee782edda7dba" }, "downloads": -1, "filename": "django_object_actions-0.8.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "804b9e7fd4ba0fbc850e469d21a7b538", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 12713, "upload_time": "2016-02-26T04:06:37", "url": "https://files.pythonhosted.org/packages/1f/61/bd762d57a4f74f82a1971a3ceacf9c453a08542526d04bfdaa7f01d5fa05/django_object_actions-0.8.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6936755b303d87bd16c8cbe3712cace2", "sha256": "ed297a13d4574afb78c7be252faf37e3341d3b5fe67f20f6948cf8a625e53362" }, "downloads": -1, "filename": "django-object-actions-0.8.0.tar.gz", "has_sig": false, "md5_digest": "6936755b303d87bd16c8cbe3712cace2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12709, "upload_time": "2016-02-26T04:06:19", "url": "https://files.pythonhosted.org/packages/e5/26/24ddfe83d80385b9ded46b713db761aff329b6e9ebbd624ddc459ce8a0e7/django-object-actions-0.8.0.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "b71198d087d63f278916e5ecd4f4e83d", "sha256": "6fc4f046bfcfdb1ecc95bddce8460d02f53c8bf5fed47c9d0e950d022a106996" }, "downloads": -1, "filename": "django-object-actions-0.8.1.tar.gz", "has_sig": false, "md5_digest": "b71198d087d63f278916e5ecd4f4e83d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12759, "upload_time": "2016-04-23T17:29:36", "url": "https://files.pythonhosted.org/packages/92/05/432ac4fe92987b18e88c9e607735a21a1ef9ac3b3fce2bd1d6b11ee6ca76/django-object-actions-0.8.1.tar.gz" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "e5cde24dbdca8b755b9c7003cebb94c8", "sha256": "74be76169bb1cebd4d6b306d76b3dcf4728abc73a4974dd2177fd213cdbc81fc" }, "downloads": -1, "filename": "django-object-actions-0.8.2.tar.gz", "has_sig": false, "md5_digest": "e5cde24dbdca8b755b9c7003cebb94c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12757, "upload_time": "2016-04-23T17:43:14", "url": "https://files.pythonhosted.org/packages/a1/3b/2b5374e40cce26979869e061f1bb747ac93b725b5bcee5460ea2617f4689/django-object-actions-0.8.2.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "356d93fa9ed42b2d110960893b8c15d8", "sha256": "57e67118ea9d7dee7cdfac42fb005fa0e0b087a7bbb9e25f1f2dfd0ddcc24016" }, "downloads": -1, "filename": "django_object_actions-0.9.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "356d93fa9ed42b2d110960893b8c15d8", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 12789, "upload_time": "2016-12-04T05:28:31", "url": "https://files.pythonhosted.org/packages/b4/c2/50fa184c504d3899b527b6ea9ed413897f1375dddd916dee19ca6eaa30bb/django_object_actions-0.9.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9a9cf3a2bd701a3416a8d6940f11de74", "sha256": "d40d59dc56a63c3118147f95fa1b1ccaff898c50163e81e4991c072beb61d175" }, "downloads": -1, "filename": "django-object-actions-0.9.0.tar.gz", "has_sig": false, "md5_digest": "9a9cf3a2bd701a3416a8d6940f11de74", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12766, "upload_time": "2016-12-04T05:28:29", "url": "https://files.pythonhosted.org/packages/1b/00/b6abde65a00b4f69741f9411dfa0a1912fd3e11df1a180be81dfc183fe86/django-object-actions-0.9.0.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "3e23ec8a290eb23116f099ce42852947", "sha256": "ac764e1fea91150160a9690c1cb5ae88d320da89cd06c65ec24c92247fb0762c" }, "downloads": -1, "filename": "django_object_actions-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3e23ec8a290eb23116f099ce42852947", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 13125, "upload_time": "2018-03-09T06:52:45", "url": "https://files.pythonhosted.org/packages/1f/fd/71b59a1ec31f229c154a17e907564c945d604e955c48ea7a5888499622ba/django_object_actions-1.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "06fc00697d42e67832e0dddcfb784dde", "sha256": "54151c8760cc3dc8627fdd0e66e5b1ae5391625756d7b301b939155a74f231a6" }, "downloads": -1, "filename": "django-object-actions-1.0.0.tar.gz", "has_sig": false, "md5_digest": "06fc00697d42e67832e0dddcfb784dde", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12014, "upload_time": "2018-03-09T06:52:43", "url": "https://files.pythonhosted.org/packages/6b/a6/fca5cac3f23902488eb557ceb89005788bbf7e2bee2327bb40d943f84d9d/django-object-actions-1.0.0.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "36e558cdb546e35f0f77444fd07236e8", "sha256": "75baab881ce0bc0873126bf42a7d683b17ab5e26971cecc003a295eddc5c8f26" }, "downloads": -1, "filename": "django_object_actions-1.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "36e558cdb546e35f0f77444fd07236e8", "packagetype": "bdist_wheel", "python_version": "3.7", "requires_python": null, "size": 13436, "upload_time": "2019-05-04T15:17:11", "url": "https://files.pythonhosted.org/packages/8e/f8/2a924d8011fd4cc725179a17ff0d9ec4c167cbf5010db9a18fddfbc5529f/django_object_actions-1.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9b509513bb2709ee2c19ab927eb601a3", "sha256": "5b0398bbc8071e923d96348d440b7a56083583c8b4d9022e72be03af87a93a3b" }, "downloads": -1, "filename": "django-object-actions-1.1.0.tar.gz", "has_sig": false, "md5_digest": "9b509513bb2709ee2c19ab927eb601a3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12991, "upload_time": "2019-05-04T15:17:10", "url": "https://files.pythonhosted.org/packages/6b/dd/596f7e3d2bbbf35764b232589e3f72e46457797b22842425162720d3792c/django-object-actions-1.1.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "36e558cdb546e35f0f77444fd07236e8", "sha256": "75baab881ce0bc0873126bf42a7d683b17ab5e26971cecc003a295eddc5c8f26" }, "downloads": -1, "filename": "django_object_actions-1.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "36e558cdb546e35f0f77444fd07236e8", "packagetype": "bdist_wheel", "python_version": "3.7", "requires_python": null, "size": 13436, "upload_time": "2019-05-04T15:17:11", "url": "https://files.pythonhosted.org/packages/8e/f8/2a924d8011fd4cc725179a17ff0d9ec4c167cbf5010db9a18fddfbc5529f/django_object_actions-1.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9b509513bb2709ee2c19ab927eb601a3", "sha256": "5b0398bbc8071e923d96348d440b7a56083583c8b4d9022e72be03af87a93a3b" }, "downloads": -1, "filename": "django-object-actions-1.1.0.tar.gz", "has_sig": false, "md5_digest": "9b509513bb2709ee2c19ab927eb601a3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12991, "upload_time": "2019-05-04T15:17:10", "url": "https://files.pythonhosted.org/packages/6b/dd/596f7e3d2bbbf35764b232589e3f72e46457797b22842425162720d3792c/django-object-actions-1.1.0.tar.gz" } ] }