{ "info": { "author": "Erik van Widenfelt", "author_email": "ew2789@gmail.com", "bugtrack_url": null, "classifiers": [ "Environment :: Web Environment", "Framework :: Django", "Framework :: Django :: 3.2", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Operating System :: OS Independent", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9" ], "description": "|pypi| |actions| |codecov| |downloads|\n\n\nedc-action-items\n----------------\n\nAdd patient action items to the Edc\n\nOverview\n========\n\nAction items are reminders to submit a form.\n\nAction items can be configured to drive data collection\n\n* for forms that do not fit well in a visit schedule;\n* for forms that are required based on some clinical event.\n\nAction items are tracked. Each is allocated a unique `action_identifier` and maintain status (New, Open, Closed).\n\nActions can be chained. One action can create another action, group of actions or recreate itself.\n\nAdverse Events, Death, OffSchedule are all good candidates.\n+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n\nAdverse Event reports are required based on some clinical event. Since the event must be reported, leaving the decision to report the user is not sufficient. An action item can be opened based on the clinical event and the status of the action item tracked administratively. The action item is associtaed with the AE report. Once the report is submitted, the action item closes. If additional data is required after an initial AE report is submitted, a follow-up action can automatically be opened.\n\nSee module `ambition-ae.action_items` for examples.\n\nDefining action items\n+++++++++++++++++++++\n\nIn the root of your App, define an `action_items` module. The edc-action-item site controller will `autodiscover` this module and `register` the action item classes.\n\nRegister action item classes in the `action_items` module like this\n\n.. code-block:: python\n\n site_action_items.register(AeInitialAction)\n\n\nA simple action item\n++++++++++++++++++++\n\nIn it define actions using the `Action` class.\n\n.. code-block:: python\n\n from edc_action_item import Action, site_action_items\n from edc_constants.constants HIGH_PRIORITY\n from ambition_ae.action_items import AeFollowupAction, AeTmgAction\n\n class AeInitialAction(Action):\n\n name = AE_INITIAL_ACTION\n display_name = 'Submit AE Initial Report'\n model = 'ambition_ae.aeinitial'\n show_on_dashboard = True\n instructions = 'Complete the initial report and forward to the TMG'\n priority = HIGH_PRIORITY\n\nThe action item is associated with its model\n\n.. code-block:: python\n\n from edc_action_item.model_mixins import ActionModelMixin\n from edc_identifier.model_mixins import NonUniqueSubjectIdentifierFieldMixin\n\n class AeInitial(ActionModelMixin, NonUniqueSubjectIdentifierFieldMixin,\n BaseUuidModel):\n\n action_cls = AeInitialAction\n\n ... # field classes\n\nSomewhere in your code, instantiate the action item\n\n.. code-block:: python\n\n AeInitialAction(subject_identifier='12345')\n\nThis creates an `ActionItem` model instance for this subject with a `status` of `New` (if it does not exist).\n\nNow create the associated model instance\n\n.. code-block:: python\n\n AeInitial.objects.create(subject_identifier='12345', ...)\n\nThe `ActionItem` model instance now has a status of `Closed`.\n\nChanging the criteria to close an action\n++++++++++++++++++++++++++++++++++++++++\n\nBy default an action is closed once the associated model instance has been saved. For more refined behavior define `close_action_item_on_save` on the action item class\n\n\n.. code-block:: python\n\n class AeInitialAction(Action):\n\n ...\n\n def close_action_item_on_save(self):\n self.delete_children_if_new(action_cls=self)\n return self.model_obj.report_status == CLOSED\n\n\nSingleton action items\n++++++++++++++++++++++\n\nTo ensure an action item does not create more than one instance per subject, use the `singleton` attribute.\n\n.. code-block:: python\n\n class EnrollToSubstudyAction(Action):\n name = 'My Action'\n display_name = 'Enroll to sub-study'\n model = 'myapp.enroll'\n show_link_to_changelist = True\n admin_site_name = 'myapp_admin'\n priority = HIGH_PRIORITY\n create_by_user = False\n singleton=True\n\n\nAction items that create a `next` action item\n++++++++++++++++++++++++++++++++++++++++++++++\n\nFor an action item to open another action item(s) once closed, set `next_actions`.\n\n.. code-block:: python\n\n class AeInitialAction(Action):\n\n name = AE_INITIAL_ACTION\n display_name = 'Submit AE Initial Report'\n model = 'ambition_ae.aeinitial'\n show_on_dashboard = True\n instructions = 'Complete the initial report and forward to the TMG'\n priority = HIGH_PRIORITY\n next_actions = [AeFollowupAction]\n\nIf the criteria for the next action is based on some other information declare `get_next_actions` on the action item and return the list of action items needed.\n\n.. code-block:: python\n\n class AeInitialAction(Action):\n\n ...\n\n def get_next_actions(self):\n next_actions = []\n try:\n self.reference_model_cls().objects.get(\n ae_initial=self.model_obj.ae_initial)\n except MultipleObjectsReturned:\n pass\n else:\n if (self.model_obj.ae_initial.ae_classification\n != self.model_obj.ae_classification):\n next_actions = [self]\n return next_actions\n\n\nAction items with a notification\n++++++++++++++++++++++++++++++++\n\nAn action item can be associated with a notification from ``edc_notification`` so that when an action is created a notification (email or sms) is sent to those registered to receive it.\n\nA subclass of ''Action``, ``ActionWithNotification``` adds notifications to the action. The notification for the action is automatically registered when the action is registered by ``site_action_items``.\n\nFor example:\n\n.. code-block:: python\n\n class AeTmgAction(ActionWithNotification):\n name = AE_TMG_ACTION\n display_name = \"TMG AE Report pending\"\n notification_display_name = \"TMG AE Report\"\n parent_action_names = [AE_INITIAL_ACTION],\n reference_model = \"ambition_ae.aetmg\"\n related_reference_model = \"ambition_ae.aeinitial\"\n related_reference_fk_attr = \"ae_initial\"\n show_link_to_changelist = True\n admin_site_name = \"ambition_ae_admin\"\n\n\n\n\n.. |pypi| image:: https://img.shields.io/pypi/v/edc-action-item.svg\n :target: https://pypi.python.org/pypi/edc-action-item\n\n.. |actions| image:: https://github.com/clinicedc/edc-action-item/workflows/build/badge.svg?branch=develop\n :target: https://github.com/clinicedc/edc-action-item/actions?query=workflow:build\n\n.. |codecov| image:: https://codecov.io/gh/clinicedc/edc-action-item/branch/develop/graph/badge.svg\n :target: https://codecov.io/gh/clinicedc/edc-action-item\n\n.. |downloads| image:: https://pepy.tech/badge/edc-action-item\n :target: https://pepy.tech/project/edc-action-item\n\n\n\n", "description_content_type": "text/x-rst", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/clinicedc/edc-action-item", "keywords": "django Edc action items reminders,clinicedc,clinical trials", "license": "GPL license, see LICENSE", "maintainer": "", "maintainer_email": "", "name": "edc-action-item", "package_url": "https://pypi.org/project/edc-action-item/", "platform": null, "project_url": "https://pypi.org/project/edc-action-item/", "project_urls": { "Homepage": "https://github.com/clinicedc/edc-action-item" }, "release_url": "https://pypi.org/project/edc-action-item/0.3.23/", "requires_dist": null, "requires_python": ">=3.9", "summary": "Add patient action items to clinicedc/edc projects", "version": "0.3.23", "yanked": false, "yanked_reason": null }, "last_serial": 13692218, "releases": { "0.1.10": [ { "comment_text": "", "digests": { "md5": "726a0968a9a951e767b06961a3080332", "sha256": "d712c81f54720c26bccc50769ab87f93872606f317a17f9cbbe233143245d08a" }, "downloads": -1, "filename": "edc-action-item-0.1.10.macosx-10.13-x86_64.tar.gz", "has_sig": false, "md5_digest": "726a0968a9a951e767b06961a3080332", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77730, "upload_time": "2018-09-10T19:27:00", "upload_time_iso_8601": "2018-09-10T19:27:00.075013Z", "url": "https://files.pythonhosted.org/packages/ab/ec/9d13e147e406f901f1f30505f85203a0fa833d51c8b73fcd0a326d562b51/edc-action-item-0.1.10.macosx-10.13-x86_64.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e0703ecb91d26e814e15c171a90a83d8", "sha256": "ea0014c0245b98095c4e3c5fe7a7152d994df3dbab45db7c046b4a7ffe88322d" }, "downloads": -1, "filename": "edc_action_item-0.1.10-py3-none-any.whl", "has_sig": false, "md5_digest": "e0703ecb91d26e814e15c171a90a83d8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 54584, "upload_time": "2018-09-10T19:26:58", "upload_time_iso_8601": "2018-09-10T19:26:58.706168Z", "url": "https://files.pythonhosted.org/packages/f2/c0/176241e27db1dcb41c479ce5b45f9fe312ce4ba6a4b32e718625d3de0093/edc_action_item-0.1.10-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.11": [ { "comment_text": "", "digests": { "md5": "73ffcb61b5e58735a75851096066d3b3", "sha256": "5cfc8c55f668f8002e094273109a745ed26a02c0e24ec142c7f943b974f5d4f2" }, "downloads": -1, "filename": "edc-action-item-0.1.11.macosx-10.13-x86_64.tar.gz", "has_sig": false, "md5_digest": "73ffcb61b5e58735a75851096066d3b3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77956, "upload_time": "2018-09-12T18:54:01", "upload_time_iso_8601": "2018-09-12T18:54:01.120740Z", "url": "https://files.pythonhosted.org/packages/0c/33/a7ce6ccacb0a86178d5b92e0a834c91c3ed33e9cec862314acab30011fea/edc-action-item-0.1.11.macosx-10.13-x86_64.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e2cb4c2fedb81e7b73652b7b3ec213f0", "sha256": "c4ee8d2f64ea95e9b99fb81fa772732d8af9cbadde8375ec8d18d153ae643bfe" }, "downloads": -1, "filename": "edc_action_item-0.1.11-py3-none-any.whl", "has_sig": false, "md5_digest": "e2cb4c2fedb81e7b73652b7b3ec213f0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 54625, "upload_time": "2018-09-12T18:53:58", "upload_time_iso_8601": "2018-09-12T18:53:58.974780Z", "url": "https://files.pythonhosted.org/packages/5a/4b/ea7aecb78ea00b3c3863dc1f877559cbac44625838da434ad6b968af1e17/edc_action_item-0.1.11-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.12": [ { "comment_text": "", "digests": { "md5": "91a305560cdd215089f5265d6eea404e", "sha256": "1c27dd110ab6640e846bebf96863979c7bb36d80770e56be42a99a12e4aca351" }, "downloads": -1, "filename": "edc-action-item-0.1.12.macosx-10.13-x86_64.tar.gz", "has_sig": false, "md5_digest": "91a305560cdd215089f5265d6eea404e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 78000, "upload_time": "2018-09-23T17:12:07", "upload_time_iso_8601": "2018-09-23T17:12:07.283268Z", "url": "https://files.pythonhosted.org/packages/88/a4/87ee0c38a29443a0a1a2bbbd3257a5d752a1386706eee0eae9452bac09bd/edc-action-item-0.1.12.macosx-10.13-x86_64.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4f063f96f9cc86d173554cfb97b3ac9f", "sha256": "10c8cb98b6d64e606bf1e54baa2fd45245e21e3a7ad5c3a9cc8a89b8ba205c8d" }, "downloads": -1, "filename": "edc_action_item-0.1.12-py3-none-any.whl", "has_sig": false, "md5_digest": "4f063f96f9cc86d173554cfb97b3ac9f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 54642, "upload_time": "2018-09-23T17:12:05", "upload_time_iso_8601": "2018-09-23T17:12:05.739524Z", "url": "https://files.pythonhosted.org/packages/87/72/e67033e4e9932e65eb117b4105d255c7f58271555d76904ba7878031a9aa/edc_action_item-0.1.12-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.13": [ { "comment_text": "", "digests": { "md5": "46316675b7f08299ae8432c21bed2cb3", "sha256": "f73e65320b8a748393c734951893c95087233bc81e793317b9d334f9ab136d7f" }, "downloads": -1, "filename": "edc-action-item-0.1.13.macosx-10.13-x86_64.tar.gz", "has_sig": false, "md5_digest": "46316675b7f08299ae8432c21bed2cb3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80006, "upload_time": "2018-09-27T15:35:23", "upload_time_iso_8601": "2018-09-27T15:35:23.890815Z", "url": "https://files.pythonhosted.org/packages/6c/ee/6fd7112816b65b8a4b6043538694950abc5afd334200091b4a6ba8f9db85/edc-action-item-0.1.13.macosx-10.13-x86_64.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7df5a6dd23b2d042a2bc3790ba911ef1", "sha256": "169eab89f4bd024203d1288ddaef4aa22d186824435cec0542d91c2d69d9a871" }, "downloads": -1, "filename": "edc_action_item-0.1.13-py3-none-any.whl", "has_sig": false, "md5_digest": "7df5a6dd23b2d042a2bc3790ba911ef1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 56121, "upload_time": "2018-09-27T15:35:22", "upload_time_iso_8601": "2018-09-27T15:35:22.241375Z", "url": "https://files.pythonhosted.org/packages/d4/f4/d8498e9b9216864aab11428b7f36efad1f2e5774b35d97144c4e0c98e473/edc_action_item-0.1.13-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.14": [ { "comment_text": "", "digests": { "md5": "2b1e4ff6f00d5860e18450f072b23a3d", "sha256": "f856bc621fd38379e5885db3f21d152c6c7fe134575de99a364e360cec33f00d" }, "downloads": -1, "filename": "edc-action-item-0.1.14.macosx-10.13-x86_64.tar.gz", "has_sig": false, "md5_digest": "2b1e4ff6f00d5860e18450f072b23a3d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80232, "upload_time": "2018-09-27T21:10:57", "upload_time_iso_8601": "2018-09-27T21:10:57.863147Z", "url": "https://files.pythonhosted.org/packages/93/e1/efa2e759b16029264a55d06c22772b23e417012e6b3041ab37b16d8c461e/edc-action-item-0.1.14.macosx-10.13-x86_64.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1c2613e61dca7ffdd29d611d1ed8e86e", "sha256": "1979ea78dee817e2e307bcbaf91c82b89d49c1eff28ddfaa102bcbb1390c8060" }, "downloads": -1, "filename": "edc_action_item-0.1.14-py3-none-any.whl", "has_sig": false, "md5_digest": "1c2613e61dca7ffdd29d611d1ed8e86e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 56220, "upload_time": "2018-09-27T21:10:56", "upload_time_iso_8601": "2018-09-27T21:10:56.081154Z", "url": "https://files.pythonhosted.org/packages/ca/22/1f4a68a1364ed748831049dc07a3475290c56e7cbd99a1909189aa4a9f71/edc_action_item-0.1.14-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.15": [ { "comment_text": "", "digests": { "md5": "8c9ce139f012ee9be59bc08ad4fd2930", "sha256": "060ab63f71618d7df3888c86de3d240b6c1071370111e7dee5493b6ff01c8505" }, "downloads": -1, "filename": "edc-action-item-0.1.15.macosx-10.13-x86_64.tar.gz", "has_sig": false, "md5_digest": "8c9ce139f012ee9be59bc08ad4fd2930", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 93185, "upload_time": "2018-10-05T16:39:54", "upload_time_iso_8601": "2018-10-05T16:39:54.757956Z", "url": "https://files.pythonhosted.org/packages/ce/62/43d819c96a12afc88367378fbcbbe39128ee737f4c2b75e56cad2892d9b5/edc-action-item-0.1.15.macosx-10.13-x86_64.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "66cc18f2bb110377cf51dbf8824174bc", "sha256": "331c75a5b4ff259340b0eee053294707c8feba7d50a6f255b07d221c89b76852" }, "downloads": -1, "filename": "edc_action_item-0.1.15-py3-none-any.whl", "has_sig": false, "md5_digest": "66cc18f2bb110377cf51dbf8824174bc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 67203, "upload_time": "2018-10-05T16:39:52", "upload_time_iso_8601": "2018-10-05T16:39:52.842821Z", "url": "https://files.pythonhosted.org/packages/7f/a2/e9e58f2fbb62c22f0e4bc788a04829baea13252c2384d4fedb42421c6233/edc_action_item-0.1.15-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.16": [ { "comment_text": "", "digests": { "md5": "b36e4fc25407f22b710147bb5aed2431", "sha256": "0a98143549ef98fd9c2c3218665057dde4023711570d380f2b4c644aff8ef0b8" }, "downloads": -1, "filename": "edc-action-item-0.1.16.macosx-10.13-x86_64.tar.gz", "has_sig": false, "md5_digest": "b36e4fc25407f22b710147bb5aed2431", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 92763, "upload_time": "2018-10-16T05:38:19", "upload_time_iso_8601": "2018-10-16T05:38:19.275646Z", "url": "https://files.pythonhosted.org/packages/40/8f/6b5d12fdd381b1b1f91a5b3a7285019783a0133f39c0e081f6b11246b9a3/edc-action-item-0.1.16.macosx-10.13-x86_64.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0f5e6c420199083d3e682db84cca345b", "sha256": "72fe2a82823c1957812c4619e86d487efd5a1e046d78bc448b3c312e0df01646" }, "downloads": -1, "filename": "edc_action_item-0.1.16-py3-none-any.whl", "has_sig": false, "md5_digest": "0f5e6c420199083d3e682db84cca345b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 64240, "upload_time": "2018-10-16T05:38:17", "upload_time_iso_8601": "2018-10-16T05:38:17.593710Z", "url": "https://files.pythonhosted.org/packages/ef/d4/313a417ab33708d9006e61019ba4ca9f6077cb4e9eda39b9b32236c5a069/edc_action_item-0.1.16-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.17": [ { "comment_text": "", "digests": { "md5": "189dbe2db2d9a797e9624a6840beb690", "sha256": "8ee3f4ff3493ee37ff5fd1232960447c2a73d14f2ba1a9f68c49533c89947cc7" }, "downloads": -1, "filename": "edc-action-item-0.1.17.macosx-10.13-x86_64.tar.gz", "has_sig": false, "md5_digest": "189dbe2db2d9a797e9624a6840beb690", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 92664, "upload_time": "2018-10-31T02:17:45", "upload_time_iso_8601": "2018-10-31T02:17:45.839326Z", "url": "https://files.pythonhosted.org/packages/60/fe/8e2d2440563f3f9fac62c7fadca2ae03d07d487a2da18f6f51fcd53bd465/edc-action-item-0.1.17.macosx-10.13-x86_64.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2faeecaca40b5359e9a8958ab069c1f1", "sha256": "8cb2136c8271e0e4ea4333f78f721db1d21ea6abb03d6da641ee8a7e9e1b1c90" }, "downloads": -1, "filename": "edc_action_item-0.1.17-py3-none-any.whl", "has_sig": false, "md5_digest": "2faeecaca40b5359e9a8958ab069c1f1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 76830, "upload_time": "2018-10-31T02:17:44", "upload_time_iso_8601": "2018-10-31T02:17:44.057142Z", "url": "https://files.pythonhosted.org/packages/fc/63/aee90141bdac9ac37f0b8752e94d051e60c9aa6f0a721285bc3182dd5702/edc_action_item-0.1.17-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.18": [ { "comment_text": "", "digests": { "md5": "7d62ad3510f599bd6af5b196b8f66165", "sha256": "850466e172bc82f883ea59af899cbd16db0e393bc12764e018d6add692356129" }, "downloads": -1, "filename": "edc-action-item-0.1.18.macosx-10.13-x86_64.tar.gz", "has_sig": false, "md5_digest": "7d62ad3510f599bd6af5b196b8f66165", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 103029, "upload_time": "2018-11-12T05:04:28", "upload_time_iso_8601": "2018-11-12T05:04:28.117565Z", "url": "https://files.pythonhosted.org/packages/ce/6c/85cadcad481fa6700c1cde4e92b0f215a6a887efea90a2972d505c2df7e6/edc-action-item-0.1.18.macosx-10.13-x86_64.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0f7b8d73648e53f0c668577df212dcc7", "sha256": "c955b0e5591ef27f2c87b0b500d63d0c0417455adc288da0bcf73ec32357d47e" }, "downloads": -1, "filename": "edc_action_item-0.1.18-py3-none-any.whl", "has_sig": false, "md5_digest": "0f7b8d73648e53f0c668577df212dcc7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 69955, "upload_time": "2018-11-12T05:04:26", "upload_time_iso_8601": "2018-11-12T05:04:26.606254Z", "url": "https://files.pythonhosted.org/packages/bf/71/b80d95954d1f619d64100289eaa12f960aac952291fd808e4e9125131d6c/edc_action_item-0.1.18-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.19": [ { "comment_text": "", "digests": { "md5": "9ea6c75702ded0e3bebf35ebdb88d322", "sha256": "1c3067298b7cee3e9f1af9be137dc2978e158b85d02405e92cfe43dc4e3dee74" }, "downloads": -1, "filename": "edc-action-item-0.1.19.macosx-10.13-x86_64.tar.gz", "has_sig": false, "md5_digest": "9ea6c75702ded0e3bebf35ebdb88d322", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 103183, "upload_time": "2018-11-13T05:34:35", "upload_time_iso_8601": "2018-11-13T05:34:35.060271Z", "url": "https://files.pythonhosted.org/packages/f9/08/7230444308fd4067ea8e155de9884d9d0f9a11e3a3f39277bb687cd60d1f/edc-action-item-0.1.19.macosx-10.13-x86_64.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "916a8c203472080291f7cfa458c1adfe", "sha256": "2d411e7760100ba2b496b372e379ab09c09e636483295b74516df897fa8cb71e" }, "downloads": -1, "filename": "edc_action_item-0.1.19-py3-none-any.whl", "has_sig": false, "md5_digest": "916a8c203472080291f7cfa458c1adfe", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 70027, "upload_time": "2018-11-13T05:34:33", "upload_time_iso_8601": "2018-11-13T05:34:33.272399Z", "url": "https://files.pythonhosted.org/packages/53/ab/c760023223589de29ddfbdfdd21ba0e0b5ca0c93c72f2ca341088e61a375/edc_action_item-0.1.19-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.20": [ { "comment_text": "", "digests": { "md5": "a84315183e8c20dedbd9b465fac3bb15", "sha256": "26d704545cc03b93025be03a9070244345bf70c0d5d1fe4aaf295f44ea46f496" }, "downloads": -1, "filename": "edc-action-item-0.1.20.macosx-10.13-x86_64.tar.gz", "has_sig": false, "md5_digest": "a84315183e8c20dedbd9b465fac3bb15", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 103284, "upload_time": "2018-11-15T03:40:36", "upload_time_iso_8601": "2018-11-15T03:40:36.440976Z", "url": "https://files.pythonhosted.org/packages/1b/7c/b1ef527d605c09e87f5597830d52e0c0cca47dc09df81dde674d0c7ae937/edc-action-item-0.1.20.macosx-10.13-x86_64.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "610490edfe51be728e6b1369af0a5650", "sha256": "b6248707eafa63192a1537ee845ac595517a43b17efde392ea3b3dbb944a29b5" }, "downloads": -1, "filename": "edc_action_item-0.1.20-py3-none-any.whl", "has_sig": false, "md5_digest": "610490edfe51be728e6b1369af0a5650", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 70064, "upload_time": "2018-11-15T03:40:34", "upload_time_iso_8601": "2018-11-15T03:40:34.312651Z", "url": "https://files.pythonhosted.org/packages/22/2f/080cfb190ba16189de7103b2318868ed8de67d63e4e511cf30f121d9468f/edc_action_item-0.1.20-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.21": [ { "comment_text": "", "digests": { "md5": "25121ba2e328d70e3a7c191d4a67e8d1", "sha256": "929f4114968976030f36cddadbc5f2954ceb26ae1c7d2bb7e85a1bf510b1748e" }, "downloads": -1, "filename": "edc-action-item-0.1.21.macosx-10.13-x86_64.tar.gz", "has_sig": false, "md5_digest": "25121ba2e328d70e3a7c191d4a67e8d1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 102110, "upload_time": "2018-11-21T20:08:17", "upload_time_iso_8601": "2018-11-21T20:08:17.472862Z", "url": "https://files.pythonhosted.org/packages/f3/e1/c894c360c45bf23e8822eb70d24a794c3c5c5259646905e27d7b5ee32df8/edc-action-item-0.1.21.macosx-10.13-x86_64.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c701a03145408a554b511d4bb7758aa2", "sha256": "03ae94c64479216d0d00eed6f00e883eda9eeb845f6e5580526142ac7893f8fe" }, "downloads": -1, "filename": "edc_action_item-0.1.21-py3-none-any.whl", "has_sig": false, "md5_digest": "c701a03145408a554b511d4bb7758aa2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 68914, "upload_time": "2018-11-21T20:08:15", "upload_time_iso_8601": "2018-11-21T20:08:15.339131Z", "url": "https://files.pythonhosted.org/packages/8c/44/9263807d29c7a18870dfa8f8bc5ff9dd3fba56a5a1e4e99cac5d4200f616/edc_action_item-0.1.21-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.22": [ { "comment_text": "", "digests": { "md5": "1f848dccef075891b5243f238f86aa86", "sha256": "abf928567e78aefb1f047ff32b2e0edb91a5992fa8104a9e47bc234230ca63b1" }, "downloads": -1, "filename": "edc-action-item-0.1.22.macosx-10.13-x86_64.tar.gz", "has_sig": false, "md5_digest": "1f848dccef075891b5243f238f86aa86", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 102894, "upload_time": "2018-12-20T20:59:18", "upload_time_iso_8601": "2018-12-20T20:59:18.102073Z", "url": "https://files.pythonhosted.org/packages/e6/3c/399029104b2f432056069f2b3aa12481bffeb056e2ee278afc4e81eb7b6d/edc-action-item-0.1.22.macosx-10.13-x86_64.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8233e02abd5645125c1a71828076ddda", "sha256": "ff7cef25ab34ae8c35a9746b57a1c88c5685a581eae9c31d12948bb150ff31cd" }, "downloads": -1, "filename": "edc_action_item-0.1.22-py3-none-any.whl", "has_sig": false, "md5_digest": "8233e02abd5645125c1a71828076ddda", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 69492, "upload_time": "2018-12-20T20:59:15", "upload_time_iso_8601": "2018-12-20T20:59:15.282898Z", "url": "https://files.pythonhosted.org/packages/47/ff/842de3aaf8c392626a2edd31694f83330817aa5b2fb243a0587f99084f1f/edc_action_item-0.1.22-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.23": [ { "comment_text": "", "digests": { "md5": "25d9acc917c4ec755e6d492efd80cb98", "sha256": "70f74eea4da6f52ea9593fd5f7326af18684e6aae64223c6bc7ecb7b6e4d6391" }, "downloads": -1, "filename": "edc-action-item-0.1.23.macosx-10.13-x86_64.tar.gz", "has_sig": false, "md5_digest": "25d9acc917c4ec755e6d492efd80cb98", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 102943, "upload_time": "2018-12-25T14:22:16", "upload_time_iso_8601": "2018-12-25T14:22:16.310009Z", "url": "https://files.pythonhosted.org/packages/09/00/9207e2e3075019f94735ee6bf69858d1fd466d8f76a5ba384228895c3452/edc-action-item-0.1.23.macosx-10.13-x86_64.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "95247cd2b55e86c2e118e72b5ffc5c7a", "sha256": "dc261ce7004edddb6e725642dae0d42e8b7d79270c00fe575c5c09b8bdfb80a9" }, "downloads": -1, "filename": "edc_action_item-0.1.23-py3-none-any.whl", "has_sig": false, "md5_digest": "95247cd2b55e86c2e118e72b5ffc5c7a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 69492, "upload_time": "2018-12-25T14:22:14", "upload_time_iso_8601": "2018-12-25T14:22:14.524556Z", "url": "https://files.pythonhosted.org/packages/69/d7/eb23ccf79bdf5e95872191ca487edb7a81067fe3220482deb922174533ca/edc_action_item-0.1.23-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.24": [ { "comment_text": "", "digests": { "md5": "343bd3921127f03fc2390f54b091cbb6", "sha256": "dafb0800c61d9ab8b21384a4a0e56f57661da99a3d72cf577f874f78725cf9e4" }, "downloads": -1, "filename": "edc-action-item-0.1.24.macosx-10.13-x86_64.tar.gz", "has_sig": false, "md5_digest": "343bd3921127f03fc2390f54b091cbb6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 103690, "upload_time": "2018-12-27T15:03:37", "upload_time_iso_8601": "2018-12-27T15:03:37.255936Z", "url": "https://files.pythonhosted.org/packages/ef/e0/3138b0a59229c073b2206ce37089024dd2c4220c034c6ef150b68f1dde67/edc-action-item-0.1.24.macosx-10.13-x86_64.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d7ee57d5c185f3761939525368d256e9", "sha256": "24ed981ee5c4f24aed34940295f57c5ed5d5a56e5ba0c175a1d4dd1367127226" }, "downloads": -1, "filename": "edc_action_item-0.1.24-py3-none-any.whl", "has_sig": false, "md5_digest": "d7ee57d5c185f3761939525368d256e9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 69762, "upload_time": "2018-12-27T15:03:34", "upload_time_iso_8601": "2018-12-27T15:03:34.933168Z", "url": "https://files.pythonhosted.org/packages/a8/62/2e82141eafca494f0ef3512554f91082bd04f84aa2a8540a4321a4bcf535/edc_action_item-0.1.24-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.25": [ { "comment_text": "", "digests": { "md5": "625a9b19b36ff7e9046d1022551ac5c7", "sha256": "529500c4f87d0f982246adb8cbe4a9e40fa1cd2d824b5166a71db6da04ac2e91" }, "downloads": -1, "filename": "edc-action-item-0.1.25.macosx-10.7-x86_64.tar.gz", "has_sig": false, "md5_digest": "625a9b19b36ff7e9046d1022551ac5c7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 103380, "upload_time": "2019-01-12T14:55:56", "upload_time_iso_8601": "2019-01-12T14:55:56.306783Z", "url": "https://files.pythonhosted.org/packages/8d/e6/f3a635c056dc23aa71fbb4c2eaf1c41a90fb70ab46c6a1c61fbbf4944b34/edc-action-item-0.1.25.macosx-10.7-x86_64.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1661d3ec09bb59b1fa995597721fe967", "sha256": "9dd71689fd360dabdb0810e838326489f24f53cb6b2124b1d1be35dd20ecf8fa" }, "downloads": -1, "filename": "edc_action_item-0.1.25-py3-none-any.whl", "has_sig": false, "md5_digest": "1661d3ec09bb59b1fa995597721fe967", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 82751, "upload_time": "2019-01-12T14:55:54", "upload_time_iso_8601": "2019-01-12T14:55:54.526440Z", "url": "https://files.pythonhosted.org/packages/44/82/7d2c19b76e48070bfdee1a17e80f1b2e3cfe9b654ae5f0d612759ab9199f/edc_action_item-0.1.25-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.26": [ { "comment_text": "", "digests": { "md5": "12b0833408acc54c3c9c3e099a01a5af", "sha256": "77a155e026bcf2fc6cf227f96990d8948b1c434f3cc943c80a8d9cd9e4ae4d2c" }, "downloads": -1, "filename": "edc-action-item-0.1.26.macosx-10.7-x86_64.tar.gz", "has_sig": false, "md5_digest": "12b0833408acc54c3c9c3e099a01a5af", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 103806, "upload_time": "2019-01-12T22:26:40", "upload_time_iso_8601": "2019-01-12T22:26:40.610596Z", "url": "https://files.pythonhosted.org/packages/72/0f/91f01247d20b7a4ec88edb3440b870b67cbbb980174c743402b7f0089d4f/edc-action-item-0.1.26.macosx-10.7-x86_64.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8bbeff89b351b1ae9fafeef370261e3e", "sha256": "9f3f8e0fc9c954531f2e68fe4ee051b3a7cdf038408fe70043a2520a34989b65" }, "downloads": -1, "filename": "edc_action_item-0.1.26-py3-none-any.whl", "has_sig": false, "md5_digest": "8bbeff89b351b1ae9fafeef370261e3e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 82908, "upload_time": "2019-01-12T22:26:38", "upload_time_iso_8601": "2019-01-12T22:26:38.893685Z", "url": "https://files.pythonhosted.org/packages/6b/75/c8e29d8ae04783282bf2d148168fb49ddaed1f86e0282c3f2d91f8f652d4/edc_action_item-0.1.26-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.27": [ { "comment_text": "", "digests": { "md5": "c1df46933d6a629067054d0cd9088980", "sha256": "331ca14a2441ddc3273d4ba121e9d660419d313dbfce561b01d3c7c441e16c7d" }, "downloads": -1, "filename": "edc-action-item-0.1.27.macosx-10.7-x86_64.tar.gz", "has_sig": false, "md5_digest": "c1df46933d6a629067054d0cd9088980", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 105102, "upload_time": "2019-01-14T01:07:47", "upload_time_iso_8601": "2019-01-14T01:07:47.470782Z", "url": "https://files.pythonhosted.org/packages/ec/05/9b9e98e4faaf327f1bc455c275d068767a239b2f3a47d7ae6593502086d4/edc-action-item-0.1.27.macosx-10.7-x86_64.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6765a67e2ec10fe85047468e45c849cd", "sha256": "879fe68cc5661a548886b73bdec86dcf52837110a836001c44309ba057df1fbd" }, "downloads": -1, "filename": "edc_action_item-0.1.27-py3-none-any.whl", "has_sig": false, "md5_digest": "6765a67e2ec10fe85047468e45c849cd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 84319, "upload_time": "2019-01-14T01:07:45", "upload_time_iso_8601": "2019-01-14T01:07:45.830531Z", "url": "https://files.pythonhosted.org/packages/63/9f/43105aecf75f4e6ae5867c30d6063e7bd06ae42a4c938f9b53a1d061316c/edc_action_item-0.1.27-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.28": [ { "comment_text": "", "digests": { "md5": "fef8fd5decbb76ee73563c8b7e8de730", "sha256": "1e2e8234d6befba7542b3722d00962d766a7e6ead7dee583a8a1a280db2aaadf" }, "downloads": -1, "filename": "edc-action-item-0.1.28.macosx-10.7-x86_64.tar.gz", "has_sig": false, "md5_digest": "fef8fd5decbb76ee73563c8b7e8de730", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 106327, "upload_time": "2019-01-22T20:52:03", "upload_time_iso_8601": "2019-01-22T20:52:03.605115Z", "url": "https://files.pythonhosted.org/packages/07/42/97545604014a0166845edbde3fc0ced85b0d614694fb66cf427182e43ca9/edc-action-item-0.1.28.macosx-10.7-x86_64.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "03474cd135571e14dbc3873b55ae1cf1", "sha256": "503b2c81f3ff285fa1b9854dcdabb384d03376912581524d74b2cd23ba43c565" }, "downloads": -1, "filename": "edc_action_item-0.1.28-py3-none-any.whl", "has_sig": false, "md5_digest": "03474cd135571e14dbc3873b55ae1cf1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 85830, "upload_time": "2019-01-22T20:51:56", "upload_time_iso_8601": "2019-01-22T20:51:56.771205Z", "url": "https://files.pythonhosted.org/packages/6f/a1/f3524f62e5bbbc838aff3e65b9f5b431075fe981f1046ae8f08238aafc2a/edc_action_item-0.1.28-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.29": [ { "comment_text": "", "digests": { "md5": "8bf95151a045522186816eb842bec93a", "sha256": "358e187706df2cdf7badc9c8cc2955649bbe68d5aac2d6dae95881a835fabe3a" }, "downloads": -1, "filename": "edc-action-item-0.1.29.macosx-10.7-x86_64.tar.gz", "has_sig": false, "md5_digest": "8bf95151a045522186816eb842bec93a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 106380, "upload_time": "2019-01-30T16:35:28", "upload_time_iso_8601": "2019-01-30T16:35:28.996568Z", "url": "https://files.pythonhosted.org/packages/8c/5a/94d683306e7b397a0da675fb85d1dc7d06ebf389b09293b96e2e8730fcce/edc-action-item-0.1.29.macosx-10.7-x86_64.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2b12ae8e6bd8d8ab109b002dae583ef6", "sha256": "c79144b69c9c783dc330dfb5a1c4e2978ebacaf8b40b6764601b7781782cdb55" }, "downloads": -1, "filename": "edc_action_item-0.1.29-py3-none-any.whl", "has_sig": false, "md5_digest": "2b12ae8e6bd8d8ab109b002dae583ef6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 85837, "upload_time": "2019-01-30T16:35:26", "upload_time_iso_8601": "2019-01-30T16:35:26.822362Z", "url": "https://files.pythonhosted.org/packages/92/62/2d3a90e52c7d3bbde6a8a6cfe6d72fa77f15f0af322f6a583d17464880f7/edc_action_item-0.1.29-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "1aa5ac3c0da45b24429bef41c39495cc", "sha256": "48b0a284c3339db1c5bceeb17be29e500edbd85a0802b154d06f38382e1970e7" }, "downloads": -1, "filename": "edc_action_item-0.1.3-py3-none-any.whl", "has_sig": false, "md5_digest": "1aa5ac3c0da45b24429bef41c39495cc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 50917, "upload_time": "2018-07-20T10:58:58", "upload_time_iso_8601": "2018-07-20T10:58:58.764435Z", "url": "https://files.pythonhosted.org/packages/8b/14/6e581fec780ff2610ef30e26ac6702d5d387b1c47dbcdc38a6e2c8fc37e5/edc_action_item-0.1.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3489a13a86f7b298f77f60d9cbacd7d2", "sha256": "8654af55d14e495e9d7b92c3a408a34cb3fda9e4bb30b9e24c219dc4fad1c337" }, "downloads": -1, "filename": "edc-action-item-0.1.3.tar.gz", "has_sig": false, "md5_digest": "3489a13a86f7b298f77f60d9cbacd7d2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31444, "upload_time": "2018-07-20T10:59:00", "upload_time_iso_8601": "2018-07-20T10:59:00.871136Z", "url": "https://files.pythonhosted.org/packages/b2/06/a605d3a8d65014780ade6e58cbef4c63f79f91aab209aad5ebb04d35ebe2/edc-action-item-0.1.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.30": [ { "comment_text": "", "digests": { "md5": "9624debf1938cd6e8874cafd273eb47d", "sha256": "c1c5bb4cb98b6a05c68b287f6ec992d65dea3f5a6f165e07b68c19f1d3d65e9b" }, "downloads": -1, "filename": "edc-action-item-0.1.30.macosx-10.7-x86_64.tar.gz", "has_sig": false, "md5_digest": "9624debf1938cd6e8874cafd273eb47d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 106555, "upload_time": "2019-02-01T03:06:57", "upload_time_iso_8601": "2019-02-01T03:06:57.314435Z", "url": "https://files.pythonhosted.org/packages/eb/a5/834ef342b762aa929b3c9dfd61a6e35a18a4607d806855cc5f0cfcaa8288/edc-action-item-0.1.30.macosx-10.7-x86_64.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f5bdda0dc1483c3517c4394e14b24465", "sha256": "5fe47ac65eb2a64073f92fe9775df5ffb77869f9444fe84b3edcaee607760ee6" }, "downloads": -1, "filename": "edc_action_item-0.1.30-py3-none-any.whl", "has_sig": false, "md5_digest": "f5bdda0dc1483c3517c4394e14b24465", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 73823, "upload_time": "2019-02-01T03:06:55", "upload_time_iso_8601": "2019-02-01T03:06:55.656068Z", "url": "https://files.pythonhosted.org/packages/1f/a0/1886f5cade8971460ce1af6d192d0854840ded7f9c7b5eca26d05a000603/edc_action_item-0.1.30-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.31": [ { "comment_text": "", "digests": { "md5": "d86e15d09efdd4953ee09b17fcc02df8", "sha256": "bfdaf6f592847f16f1758599cc5873838088b4e6496283996695ec348841c0b2" }, "downloads": -1, "filename": "edc_action_item-0.1.31-py3-none-any.whl", "has_sig": false, "md5_digest": "d86e15d09efdd4953ee09b17fcc02df8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 86655, "upload_time": "2019-02-11T02:26:46", "upload_time_iso_8601": "2019-02-11T02:26:46.740707Z", "url": "https://files.pythonhosted.org/packages/9b/08/5c69e17d450ac0d2ec5e6f1e4f178586c33382a16db41e2702c48ce44d5a/edc_action_item-0.1.31-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.32": [ { "comment_text": "", "digests": { "md5": "8cb20e6bdcb8f659ad6b2e971d9388dd", "sha256": "4e8741f076596e02a9fba1df2e8e9ae057b23d877c011f9f0a3006e0b2e24c2b" }, "downloads": -1, "filename": "edc_action_item-0.1.32-py3-none-any.whl", "has_sig": false, "md5_digest": "8cb20e6bdcb8f659ad6b2e971d9388dd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 86699, "upload_time": "2019-02-27T14:34:18", "upload_time_iso_8601": "2019-02-27T14:34:18.896614Z", "url": "https://files.pythonhosted.org/packages/a1/01/2c7f48ac4ccb4a773ff09ba3769bc31c515afc71231ccac99cbdf8f5729c/edc_action_item-0.1.32-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.33": [ { "comment_text": "", "digests": { "md5": "6f90a799ec0f22c4b2b3f83865abe5b9", "sha256": "93e33250c9477ca6fe1577952abcb1ccb8ef3d4b21f4abed3b6481df4c27862e" }, "downloads": -1, "filename": "edc_action_item-0.1.33-py3-none-any.whl", "has_sig": false, "md5_digest": "6f90a799ec0f22c4b2b3f83865abe5b9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 87439, "upload_time": "2019-03-05T00:10:39", "upload_time_iso_8601": "2019-03-05T00:10:39.232220Z", "url": "https://files.pythonhosted.org/packages/29/e3/8fe3e8b75f569114157cbdbf3013ff9d7fba38664eb5b1fb39e6434b9f61/edc_action_item-0.1.33-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.34": [ { "comment_text": "", "digests": { "md5": "623aa2c8a1a63c6182077bebd136d4a8", "sha256": "190b6c1a00a3adc064bdd8f05c2cefbb57f91393f01285cb69f9e83a24dcbfb4" }, "downloads": -1, "filename": "edc_action_item-0.1.34-py3-none-any.whl", "has_sig": false, "md5_digest": "623aa2c8a1a63c6182077bebd136d4a8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 87449, "upload_time": "2019-03-18T15:12:46", "upload_time_iso_8601": "2019-03-18T15:12:46.522436Z", "url": "https://files.pythonhosted.org/packages/f2/a4/2d6128866fc899fbe890d482ce6e3d73e464bd8cea52e7851e8896439bcc/edc_action_item-0.1.34-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.35": [ { "comment_text": "", "digests": { "md5": "62c4deba2c8f9892564cafed717a2ff8", "sha256": "d6e9b9ad2af7123b85f8a7d8aa183c687754468a566057651ff4c94c71fadff8" }, "downloads": -1, "filename": "edc_action_item-0.1.35-py3-none-any.whl", "has_sig": false, "md5_digest": "62c4deba2c8f9892564cafed717a2ff8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 86570, "upload_time": "2019-03-23T17:51:13", "upload_time_iso_8601": "2019-03-23T17:51:13.901193Z", "url": "https://files.pythonhosted.org/packages/ab/bf/3605c1ae0d97b11cf0fb89ceb613109bc174fd14cf52952c9ef782445180/edc_action_item-0.1.35-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.36": [ { "comment_text": "", "digests": { "md5": "f6f862e92999a14e7a162cc8f00cffdb", "sha256": "0270eee59a71daae554a0ee641ab9ac8ab38bcbaa05236224b62f219fbefaa15" }, "downloads": -1, "filename": "edc_action_item-0.1.36-py3-none-any.whl", "has_sig": false, "md5_digest": "f6f862e92999a14e7a162cc8f00cffdb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 86569, "upload_time": "2019-03-23T17:54:31", "upload_time_iso_8601": "2019-03-23T17:54:31.850099Z", "url": "https://files.pythonhosted.org/packages/4c/f0/6434090580e1e6f6f2033fcd15854424ba96e8f4afcdb6e97b5326b8d354/edc_action_item-0.1.36-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.37": [ { "comment_text": "", "digests": { "md5": "c28c0fdbfe92bd76d0a6422a3ee69743", "sha256": "19e7848be731d49ffe803d9bb08fdd4eafe7f4bc2e12781150062a9b7a9f2dbb" }, "downloads": -1, "filename": "edc_action_item-0.1.37-py3-none-any.whl", "has_sig": false, "md5_digest": "c28c0fdbfe92bd76d0a6422a3ee69743", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 86568, "upload_time": "2019-03-27T22:43:46", "upload_time_iso_8601": "2019-03-27T22:43:46.780360Z", "url": "https://files.pythonhosted.org/packages/a5/0b/9991f3570a9421033671c2b2aec8962905aa3ac262087d82a7f569d897b6/edc_action_item-0.1.37-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.38": [ { "comment_text": "", "digests": { "md5": "7fd92a5a16bf51cc0ce6d8a8c680ff3a", "sha256": "3207eaa437260f399e6387eefef78c9982997a8df758887b1d42207621f0f0d1" }, "downloads": -1, "filename": "edc_action_item-0.1.38-py3-none-any.whl", "has_sig": false, "md5_digest": "7fd92a5a16bf51cc0ce6d8a8c680ff3a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 86909, "upload_time": "2019-03-29T22:36:32", "upload_time_iso_8601": "2019-03-29T22:36:32.226671Z", "url": "https://files.pythonhosted.org/packages/c6/56/30d39a5713be378193593ccfd413b374e2261630ccc41e2e5e7582f9aaaf/edc_action_item-0.1.38-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.39": [ { "comment_text": "", "digests": { "md5": "6dfd0a1d3b6ad4603ca3572a459f9ca9", "sha256": "3a005c729e88c4352327993d06b26390e202de4c2cf374b9e36ee5d890e24935" }, "downloads": -1, "filename": "edc_action_item-0.1.39-py3-none-any.whl", "has_sig": false, "md5_digest": "6dfd0a1d3b6ad4603ca3572a459f9ca9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 86910, "upload_time": "2019-03-29T22:45:25", "upload_time_iso_8601": "2019-03-29T22:45:25.746382Z", "url": "https://files.pythonhosted.org/packages/e5/44/132ec6ec5fc408084fc2db0c97eddd5bca088c661dd4042f8d813d04f7af/edc_action_item-0.1.39-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "6663837323cf5317158b027e987976cb", "sha256": "8228d9ca6f658692abb37f4a073f67fbdbfc6a5d604d40dacbb0e39528d48f4e" }, "downloads": -1, "filename": "edc-action-item-0.1.4.macosx-10.13-x86_64.tar.gz", "has_sig": false, "md5_digest": "6663837323cf5317158b027e987976cb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71700, "upload_time": "2018-08-01T01:20:59", "upload_time_iso_8601": "2018-08-01T01:20:59.114641Z", "url": "https://files.pythonhosted.org/packages/90/f7/d2c69c7be358ac02bcc189bd0be54b6645b72588238d368eeec1f5e2acbb/edc-action-item-0.1.4.macosx-10.13-x86_64.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fc9289ac904e5c771852060a53a52fcf", "sha256": "39e99c0b5cae6d5361e41967ebc7f29fe32ee863e8c66bbb1a5d1446c284b3e2" }, "downloads": -1, "filename": "edc_action_item-0.1.4-py3-none-any.whl", "has_sig": false, "md5_digest": "fc9289ac904e5c771852060a53a52fcf", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 51010, "upload_time": "2018-08-01T01:20:56", "upload_time_iso_8601": "2018-08-01T01:20:56.907021Z", "url": "https://files.pythonhosted.org/packages/11/39/54d1241fa2c05afa6f8f12eca21af9354643d3cb0d006770464f4b5f1433/edc_action_item-0.1.4-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.40": [ { "comment_text": "", "digests": { "md5": "f7e9acd21deecf9e78ac96e8d5ce32ab", "sha256": "49802bb8b243c0d73d1a2f422accf0852d525a7920d1b8329b2f2cb063359015" }, "downloads": -1, "filename": "edc_action_item-0.1.40-py3-none-any.whl", "has_sig": false, "md5_digest": "f7e9acd21deecf9e78ac96e8d5ce32ab", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 86906, "upload_time": "2019-04-08T22:22:37", "upload_time_iso_8601": "2019-04-08T22:22:37.870495Z", "url": "https://files.pythonhosted.org/packages/1b/c8/05e710cc1b287e17b84a0dc12dd5e86a266c6b15aa65473220207d6d18f0/edc_action_item-0.1.40-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.41": [ { "comment_text": "", "digests": { "md5": "94d7c59ac01c790bd3e466fcbd67964d", "sha256": "d5d060227aaa57bc1740f6816808a0a9116eb65870f9c4eb37df848b75c0e20f" }, "downloads": -1, "filename": "edc_action_item-0.1.41-py3-none-any.whl", "has_sig": false, "md5_digest": "94d7c59ac01c790bd3e466fcbd67964d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 86914, "upload_time": "2019-05-06T02:39:53", "upload_time_iso_8601": "2019-05-06T02:39:53.173414Z", "url": "https://files.pythonhosted.org/packages/4e/12/05f98d1898c4a590944d059c730f764b261c281073f43334480afe98906b/edc_action_item-0.1.41-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.42": [ { "comment_text": "", "digests": { "md5": "1f37e08ed5dd20bf6545c7fcbed5b3e9", "sha256": "68f1e179c33447d74f92e4ad72384b1bd1bf4e058b3828fb2341080327da579d" }, "downloads": -1, "filename": "edc_action_item-0.1.42-py3-none-any.whl", "has_sig": false, "md5_digest": "1f37e08ed5dd20bf6545c7fcbed5b3e9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 87041, "upload_time": "2019-05-23T15:01:25", "upload_time_iso_8601": "2019-05-23T15:01:25.043453Z", "url": "https://files.pythonhosted.org/packages/39/fa/3c81c7a8a07137be2938ddf13399eab3f59f699ca8f90631fbd4c5071beb/edc_action_item-0.1.42-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.43": [ { "comment_text": "", "digests": { "md5": "e03216cddb4106f80f6884793134255a", "sha256": "eba18083a763a91c3021d818ede6c1cef4155623391f5283b0a1e38a3b6cd82d" }, "downloads": -1, "filename": "edc_action_item-0.1.43-py3-none-any.whl", "has_sig": false, "md5_digest": "e03216cddb4106f80f6884793134255a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 87347, "upload_time": "2019-06-04T19:25:01", "upload_time_iso_8601": "2019-06-04T19:25:01.236400Z", "url": "https://files.pythonhosted.org/packages/9e/ce/5ea7351d3a167a7ab1b2f79f166c4eaeb31aa80763e4d0a69db716bfd5ee/edc_action_item-0.1.43-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.44": [ { "comment_text": "", "digests": { "md5": "bd6bd5f40430c0b743b911eaab18e31f", "sha256": "a7ed54f3953fe6b584d527877e56412a4e18e844c856f64e40447c2e194a08c2" }, "downloads": -1, "filename": "edc_action_item-0.1.44-py3-none-any.whl", "has_sig": false, "md5_digest": "bd6bd5f40430c0b743b911eaab18e31f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 74761, "upload_time": "2019-06-09T13:45:15", "upload_time_iso_8601": "2019-06-09T13:45:15.307519Z", "url": "https://files.pythonhosted.org/packages/0c/d3/601de20d204e553aad159f886e7e742136b91c47739b62b48c1dc7fa2ae4/edc_action_item-0.1.44-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.45": [ { "comment_text": "", "digests": { "md5": "d9ddf3330d50aa187373a4c98265d8b9", "sha256": "203ab3489f5ec3a6782151d78043090e8df2d8ba41fa1ed08eb988ac769866ed" }, "downloads": -1, "filename": "edc_action_item-0.1.45-py3-none-any.whl", "has_sig": false, "md5_digest": "d9ddf3330d50aa187373a4c98265d8b9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 87249, "upload_time": "2019-06-24T23:56:52", "upload_time_iso_8601": "2019-06-24T23:56:52.248831Z", "url": "https://files.pythonhosted.org/packages/6d/7f/6a57c45ce28e747b4277821ca182f8d239f28ce1865f8da33c7e9cb3b3f1/edc_action_item-0.1.45-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.46": [ { "comment_text": "", "digests": { "md5": "120dc374cc1d378dcd54c436f7398c4d", "sha256": "45fcc1db00e648b6eef7b85a3638ff262aab50f1c06cb334e7440d36cba95e56" }, "downloads": -1, "filename": "edc_action_item-0.1.46-py3-none-any.whl", "has_sig": false, "md5_digest": "120dc374cc1d378dcd54c436f7398c4d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 88383, "upload_time": "2019-06-26T23:57:54", "upload_time_iso_8601": "2019-06-26T23:57:54.143552Z", "url": "https://files.pythonhosted.org/packages/4e/cd/9f5e4ce23d4adfc4268d60396989626cab394bf2228bfcd518bde3ffa960/edc_action_item-0.1.46-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.47": [ { "comment_text": "", "digests": { "md5": "fadb7adad8e0aa891ff82f94c1d52c1c", "sha256": "623e2f54c243931be3e11bd4ef80a16194bd8e77fd3483254741375a5b932de8" }, "downloads": -1, "filename": "edc_action_item-0.1.47-py3-none-any.whl", "has_sig": false, "md5_digest": "fadb7adad8e0aa891ff82f94c1d52c1c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 88376, "upload_time": "2019-06-27T13:57:17", "upload_time_iso_8601": "2019-06-27T13:57:17.841428Z", "url": "https://files.pythonhosted.org/packages/17/fb/0665a4741945d5fa54d2ab42bfa855096dbd74404791d4ebe14ddd7207ac/edc_action_item-0.1.47-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.48": [ { "comment_text": "", "digests": { "md5": "1d0c24f4fdd98711ec48c2ae1f8abe8b", "sha256": "adc282758da4bcc0e3bf52f3cc661518c4878e6803aeafe2dcf26ab02140a9bd" }, "downloads": -1, "filename": "edc_action_item-0.1.48-py3-none-any.whl", "has_sig": false, "md5_digest": "1d0c24f4fdd98711ec48c2ae1f8abe8b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 88903, "upload_time": "2019-06-27T21:29:16", "upload_time_iso_8601": "2019-06-27T21:29:16.161492Z", "url": "https://files.pythonhosted.org/packages/bb/e2/298be7e1877b7b571e449f3a2bbd668b0c0298dac4049ea8d2e95120fc65/edc_action_item-0.1.48-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.49": [ { "comment_text": "", "digests": { "md5": "6b9b35c84aa522006b4fcce86bf378bf", "sha256": "aeac85e68c8299fdf99e80d4f569a3c7fa72fa020e124d4999da28fefba2ad98" }, "downloads": -1, "filename": "edc_action_item-0.1.49-py3-none-any.whl", "has_sig": false, "md5_digest": "6b9b35c84aa522006b4fcce86bf378bf", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 90312, "upload_time": "2019-06-29T02:30:34", "upload_time_iso_8601": "2019-06-29T02:30:34.770123Z", "url": "https://files.pythonhosted.org/packages/49/30/9081d72d7d6664ab7b512dfa9a0b2509584c1dce1a284e0e894d1f0f57e8/edc_action_item-0.1.49-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "3c8b201883b9d15bb0c0a9a892aea7ed", "sha256": "5f6a8459c5e704ce654d1fd06448198d7bd445b6887e4221b9c8ad9ecf245d16" }, "downloads": -1, "filename": "edc-action-item-0.1.5.macosx-10.13-x86_64.tar.gz", "has_sig": false, "md5_digest": "3c8b201883b9d15bb0c0a9a892aea7ed", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71519, "upload_time": "2018-08-07T21:13:33", "upload_time_iso_8601": "2018-08-07T21:13:33.745662Z", "url": "https://files.pythonhosted.org/packages/7a/36/200693e6d12821a399800723123765a74a190eef84804dfd74b3a8994245/edc-action-item-0.1.5.macosx-10.13-x86_64.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dc2b88a22cd1f47004bc07956a67224a", "sha256": "5d5d41e2dddeda6e3b5e2b7685afd68aeb44c96cb55d12e8cad9f76bbe02db27" }, "downloads": -1, "filename": "edc_action_item-0.1.5-py3-none-any.whl", "has_sig": false, "md5_digest": "dc2b88a22cd1f47004bc07956a67224a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 51035, "upload_time": "2018-08-07T21:13:32", "upload_time_iso_8601": "2018-08-07T21:13:32.519413Z", "url": "https://files.pythonhosted.org/packages/61/df/3bbb4ffed7b4920bc1fea6b35b506a32675c2b7fe86c60585f355b481541/edc_action_item-0.1.5-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.50": [ { "comment_text": "", "digests": { "md5": "e32dc6958659a8c083ab277887816d50", "sha256": "c815b093369adebe8e43ffdd4e04593ec1193b231f3e18e1917cf894f0c0f0f4" }, "downloads": -1, "filename": "edc_action_item-0.1.50-py3-none-any.whl", "has_sig": false, "md5_digest": "e32dc6958659a8c083ab277887816d50", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 90340, "upload_time": "2019-07-14T03:36:12", "upload_time_iso_8601": "2019-07-14T03:36:12.051006Z", "url": "https://files.pythonhosted.org/packages/48/e3/42fc64a4fd7585068c726dffea75fdfd24b313d8f514d8dd75d80f8aae4a/edc_action_item-0.1.50-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.51": [ { "comment_text": "", "digests": { "md5": "afb75eab5b557e5f2b73e1a07b8ef852", "sha256": "3e21c201b8ddf3f48b86860476e97d219e5d5d18a0a1787f0187a5da01fe4d00" }, "downloads": -1, "filename": "edc_action_item-0.1.51-py3-none-any.whl", "has_sig": false, "md5_digest": "afb75eab5b557e5f2b73e1a07b8ef852", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 90266, "upload_time": "2019-07-30T23:30:28", "upload_time_iso_8601": "2019-07-30T23:30:28.468435Z", "url": "https://files.pythonhosted.org/packages/25/28/fb47c3da7f3847800fd9b79c73be6d602c276bdb1e7e6b98f1e76194db71/edc_action_item-0.1.51-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.52": [ { "comment_text": "", "digests": { "md5": "2f1fd3a110bbe1c610a9a21e122f78df", "sha256": "02980e65fee8070a6f021bda19e898ebf92c6b9fff0351feb480b0bec1b49855" }, "downloads": -1, "filename": "edc_action_item-0.1.52-py3-none-any.whl", "has_sig": false, "md5_digest": "2f1fd3a110bbe1c610a9a21e122f78df", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 90372, "upload_time": "2019-08-03T00:10:50", "upload_time_iso_8601": "2019-08-03T00:10:50.361165Z", "url": "https://files.pythonhosted.org/packages/d4/da/04b627195d841ff6d89d8e6aa3a450a6ed503eb0fa7db8128d1b8ae9ff20/edc_action_item-0.1.52-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.53": [ { "comment_text": "", "digests": { "md5": "bdac782c94f533d90bbdbe199a0459f2", "sha256": "a8689ad4d33cc7ff782a63c74979aaa4bdcf8d4e6ff4de1df394c3114c68e84f" }, "downloads": -1, "filename": "edc_action_item-0.1.53-py3-none-any.whl", "has_sig": false, "md5_digest": "bdac782c94f533d90bbdbe199a0459f2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 90345, "upload_time": "2019-08-16T03:26:54", "upload_time_iso_8601": "2019-08-16T03:26:54.191371Z", "url": "https://files.pythonhosted.org/packages/7b/2e/e5d1d646feb2dea9bcc8d2651b25d0192d2ddd60238beea4efb2727f940e/edc_action_item-0.1.53-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.54": [ { "comment_text": "", "digests": { "md5": "1d0c49a6a7ce5425619b530cf4498bb3", "sha256": "482d32c7b54b9df6903afc85b7ea40e5dff30826fb50bdeec988dedbc52ef38a" }, "downloads": -1, "filename": "edc_action_item-0.1.54-py3-none-any.whl", "has_sig": false, "md5_digest": "1d0c49a6a7ce5425619b530cf4498bb3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 90370, "upload_time": "2019-09-18T23:38:35", "upload_time_iso_8601": "2019-09-18T23:38:35.826295Z", "url": "https://files.pythonhosted.org/packages/6c/c0/a33a935f8848649f4351768bcb70ada027daa77441f1b2db53a16c77db78/edc_action_item-0.1.54-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.55": [ { "comment_text": "", "digests": { "md5": "bc7300d58d932865ea418ea10f55f07d", "sha256": "711d030c0fac33292a99a2e48cf4f9201e5d2c9b2d8ed553d0cfbe66219202fd" }, "downloads": -1, "filename": "edc_action_item-0.1.55-py3-none-any.whl", "has_sig": false, "md5_digest": "bc7300d58d932865ea418ea10f55f07d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 91351, "upload_time": "2019-09-22T12:39:12", "upload_time_iso_8601": "2019-09-22T12:39:12.698483Z", "url": "https://files.pythonhosted.org/packages/1f/ee/ca313ab2d0536e5795f5999508b1ef18bd105530d6bca70827b6b202fb33/edc_action_item-0.1.55-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.56": [ { "comment_text": "", "digests": { "md5": "b0a64e5eb48d7e6ad18b76d8daf551e1", "sha256": "eda5821219c34659d88c606c2d5b29245b042af31b876979c267c34bd6633761" }, "downloads": -1, "filename": "edc_action_item-0.1.56-py3-none-any.whl", "has_sig": false, "md5_digest": "b0a64e5eb48d7e6ad18b76d8daf551e1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 91519, "upload_time": "2019-10-05T00:36:47", "upload_time_iso_8601": "2019-10-05T00:36:47.998192Z", "url": "https://files.pythonhosted.org/packages/01/e1/523bcad93300100ddb625ccbc547a217d5933dc0be5e65cee7cfc40f2148/edc_action_item-0.1.56-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.57": [ { "comment_text": "", "digests": { "md5": "99d5dd82d31c459bc48c8cec0f744a6d", "sha256": "fe2d8ccae23f8f1ba4eb9aaba688eba79b532a5abcb496f312dd802bd21ba5eb" }, "downloads": -1, "filename": "edc_action_item-0.1.57-py3-none-any.whl", "has_sig": false, "md5_digest": "99d5dd82d31c459bc48c8cec0f744a6d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 91567, "upload_time": "2019-10-06T00:14:56", "upload_time_iso_8601": "2019-10-06T00:14:56.295413Z", "url": "https://files.pythonhosted.org/packages/f1/11/18a4c579a9092cd7f1e7bd0c7506890ac6340cd18ff639dfcbc9e350da52/edc_action_item-0.1.57-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.58": [ { "comment_text": "", "digests": { "md5": "cfd74d314aeb6de054b57e2c7737e2c4", "sha256": "571d0cdf5647e82e248a46e5f20059b3562ff35755458a9946956acb0e35b436" }, "downloads": -1, "filename": "edc_action_item-0.1.58-py3-none-any.whl", "has_sig": false, "md5_digest": "cfd74d314aeb6de054b57e2c7737e2c4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 91148, "upload_time": "2019-10-07T03:27:11", "upload_time_iso_8601": "2019-10-07T03:27:11.488826Z", "url": "https://files.pythonhosted.org/packages/72/40/18f1cbde62df22db6a85329d59bfe00e826c985bc5a4554636bedb046676/edc_action_item-0.1.58-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.59": [ { "comment_text": "", "digests": { "md5": "f25a51f610f5c8a0271b810d4bcc4d09", "sha256": "f21991d4f47fb33ba5132750d8558a3916fa9a984855657ff40feedf0a00983f" }, "downloads": -1, "filename": "edc_action_item-0.1.59-py3-none-any.whl", "has_sig": false, "md5_digest": "f25a51f610f5c8a0271b810d4bcc4d09", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 91127, "upload_time": "2019-10-08T21:12:47", "upload_time_iso_8601": "2019-10-08T21:12:47.926781Z", "url": "https://files.pythonhosted.org/packages/8a/93/99c07c033d323e34462de5f9cf597d8fcbebf77aed736aac367b0c89d358/edc_action_item-0.1.59-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "4256f04d858d9d74048ab0ff797ddd19", "sha256": "dcca1cf5a845e3620d2aaa518a6636c38f019ca66baa0e55a36817ecfd988f3a" }, "downloads": -1, "filename": "edc-action-item-0.1.6.macosx-10.13-x86_64.tar.gz", "has_sig": false, "md5_digest": "4256f04d858d9d74048ab0ff797ddd19", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72184, "upload_time": "2018-08-09T03:27:41", "upload_time_iso_8601": "2018-08-09T03:27:41.126426Z", "url": "https://files.pythonhosted.org/packages/d2/bd/4787d8be5b82768ad76f7da9ed551fe4da99fc334b7712e4b8762f6426f8/edc-action-item-0.1.6.macosx-10.13-x86_64.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "15fdd5880e1b677f73486bb73f249ff4", "sha256": "d7cc7a8993c29fd5c8625fc5b6bd286d12630b340dc1ab4d9a25e4634a106e8d" }, "downloads": -1, "filename": "edc_action_item-0.1.6-py3-none-any.whl", "has_sig": false, "md5_digest": "15fdd5880e1b677f73486bb73f249ff4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 52280, "upload_time": "2018-08-09T03:27:39", "upload_time_iso_8601": "2018-08-09T03:27:39.736306Z", "url": "https://files.pythonhosted.org/packages/2f/ab/7df6e115c3feae026820f86569e79f040d09a5aaa4245aa14611615a2d2f/edc_action_item-0.1.6-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.60": [ { "comment_text": "", "digests": { "md5": "c2b4079b52c078042eab2ce2bd3a7c1a", "sha256": "3d0d63f30ab6c2f0f7b5a3b358d332c80cbce312eae9dbdb875e6145a263ec1a" }, "downloads": -1, "filename": "edc_action_item-0.1.60-py3-none-any.whl", "has_sig": false, "md5_digest": "c2b4079b52c078042eab2ce2bd3a7c1a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 91136, "upload_time": "2019-10-14T14:26:47", "upload_time_iso_8601": "2019-10-14T14:26:47.863664Z", "url": "https://files.pythonhosted.org/packages/2a/2a/5b691397301477a2002ddaeb74299887bf3a5c264bc50a62a5cca50f0366/edc_action_item-0.1.60-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.61": [ { "comment_text": "", "digests": { "md5": "c0c0cb70b72d1378ff1559e8a403be8a", "sha256": "c993c22a81bdeadef8b622e95670d1ec4ca82a4bb824b4acf064320ddbea72b5" }, "downloads": -1, "filename": "edc_action_item-0.1.61-py3-none-any.whl", "has_sig": false, "md5_digest": "c0c0cb70b72d1378ff1559e8a403be8a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 91135, "upload_time": "2019-10-18T04:33:32", "upload_time_iso_8601": "2019-10-18T04:33:32.270790Z", "url": "https://files.pythonhosted.org/packages/14/f0/50fb0611198d4c2698192011458e0d44cc89ec3573996f235a48af540ebf/edc_action_item-0.1.61-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.62": [ { "comment_text": "", "digests": { "md5": "5f8c5f248d08fab9d611986dd107c4b3", "sha256": "6d101f68b8b924a73137dac3ae480f11da5466b1445b21975a3adbef8c68d73e" }, "downloads": -1, "filename": "edc_action_item-0.1.62-py3-none-any.whl", "has_sig": false, "md5_digest": "5f8c5f248d08fab9d611986dd107c4b3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 91135, "upload_time": "2019-10-18T04:34:32", "upload_time_iso_8601": "2019-10-18T04:34:32.138027Z", "url": "https://files.pythonhosted.org/packages/06/c5/53eb87bbdd648d421c54df10bacc2001bdcd007b74a8f260164160d2d695/edc_action_item-0.1.62-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.63": [ { "comment_text": "", "digests": { "md5": "c914d9839dcad2c4927af33fca9f015a", "sha256": "9d4338959c46ae16b0f760ab0967c74661c72d99f863997be95b5008f114f1d3" }, "downloads": -1, "filename": "edc_action_item-0.1.63-py3-none-any.whl", "has_sig": false, "md5_digest": "c914d9839dcad2c4927af33fca9f015a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 91663, "upload_time": "2019-10-24T07:03:00", "upload_time_iso_8601": "2019-10-24T07:03:00.150099Z", "url": "https://files.pythonhosted.org/packages/dc/30/eabfe597a4f01942f241f53c0cb12ae99b7bcb9808b18ccbd494c7befae9/edc_action_item-0.1.63-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.64": [ { "comment_text": "", "digests": { "md5": "2810b13e863def185e8e3299f6426198", "sha256": "5d1eec0354e96cec3d980dcaad1dec960aef8018c31ffbcb558b76e007bd1184" }, "downloads": -1, "filename": "edc_action_item-0.1.64-py3-none-any.whl", "has_sig": false, "md5_digest": "2810b13e863def185e8e3299f6426198", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 91662, "upload_time": "2019-10-25T18:37:04", "upload_time_iso_8601": "2019-10-25T18:37:04.044705Z", "url": "https://files.pythonhosted.org/packages/42/f8/fcbade9d773fd37d81ded89b9e7f78aa978d6fdd2360c4e8cacccb7739bf/edc_action_item-0.1.64-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.65": [ { "comment_text": "", "digests": { "md5": "2fd22f1a3836d69b74ec91f378749c17", "sha256": "adc7ec9d9211174342ab726d8e8c52062941fa9450aa6a776bf1f9b4e33c4a6e" }, "downloads": -1, "filename": "edc_action_item-0.1.65-py3-none-any.whl", "has_sig": false, "md5_digest": "2fd22f1a3836d69b74ec91f378749c17", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 91663, "upload_time": "2019-11-13T22:54:48", "upload_time_iso_8601": "2019-11-13T22:54:48.334364Z", "url": "https://files.pythonhosted.org/packages/dc/70/25a320f63c71caa725a65e8da8c93e288d852dd357782ca5a4cd920774c2/edc_action_item-0.1.65-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.66": [ { "comment_text": "", "digests": { "md5": "01c750d948b687998ac4a7ad428e3bf5", "sha256": "2bf637ce12f72ebf06d69522fa4bc991530d3ed5ef242ed551c424ad69227163" }, "downloads": -1, "filename": "edc_action_item-0.1.66-py3-none-any.whl", "has_sig": false, "md5_digest": "01c750d948b687998ac4a7ad428e3bf5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 91638, "upload_time": "2020-01-18T13:18:06", "upload_time_iso_8601": "2020-01-18T13:18:06.968447Z", "url": "https://files.pythonhosted.org/packages/83/48/683ba77a259a2be3f102d2887993e14009553cf85d50152dd68987b53f54/edc_action_item-0.1.66-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.67": [ { "comment_text": "", "digests": { "md5": "51c5abf133ac76583ccda32e39368ace", "sha256": "2a90a1cfea1f941fe8dcb8eb152214f0c46f14e632d9acf13c45bf4904d942f8" }, "downloads": -1, "filename": "edc_action_item-0.1.67-py3-none-any.whl", "has_sig": false, "md5_digest": "51c5abf133ac76583ccda32e39368ace", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 88971, "upload_time": "2020-02-12T18:51:35", "upload_time_iso_8601": "2020-02-12T18:51:35.402786Z", "url": "https://files.pythonhosted.org/packages/1a/cb/a55792941b437afbbf2998c72ad0c8b188d95f7830db725a9375360ae200/edc_action_item-0.1.67-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.68": [ { "comment_text": "", "digests": { "md5": "b80de85d5d3fc08adc8a8815c35ecc35", "sha256": "b56fa9bcf319177388bc0f32b8bf3bdbef26d56eb1c202eba71d6a03fd3265b6" }, "downloads": -1, "filename": "edc_action_item-0.1.68-py3-none-any.whl", "has_sig": false, "md5_digest": "b80de85d5d3fc08adc8a8815c35ecc35", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 89749, "upload_time": "2020-03-02T18:20:39", "upload_time_iso_8601": "2020-03-02T18:20:39.350254Z", "url": "https://files.pythonhosted.org/packages/6e/f6/24543b75ad040aed104bf524a9aec16d0525cb2faf0d78561acbd62cfce0/edc_action_item-0.1.68-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.69": [ { "comment_text": "", "digests": { "md5": "756c10210c4154cb3a71999f237ade86", "sha256": "70a8b6cb246bcbe030671cf9b95bb67f1cf2ea4505dd0b11a05c720023285684" }, "downloads": -1, "filename": "edc_action_item-0.1.69-py3-none-any.whl", "has_sig": false, "md5_digest": "756c10210c4154cb3a71999f237ade86", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 89748, "upload_time": "2020-03-09T13:23:29", "upload_time_iso_8601": "2020-03-09T13:23:29.016275Z", "url": "https://files.pythonhosted.org/packages/14/93/a9c0992d8d9726f9c6bab4268ab00562bb829360f455c38127d5e005d16d/edc_action_item-0.1.69-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "ceb2958bce589ea07dd85caea565b030", "sha256": "3382e2130fe831a3b46e32d57d777dc6764ec36f3a6039ab4376f30a9a51fd49" }, "downloads": -1, "filename": "edc-action-item-0.1.7.macosx-10.13-x86_64.tar.gz", "has_sig": false, "md5_digest": "ceb2958bce589ea07dd85caea565b030", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72217, "upload_time": "2018-08-16T22:20:23", "upload_time_iso_8601": "2018-08-16T22:20:23.097871Z", "url": "https://files.pythonhosted.org/packages/15/cb/d1265c722cd559a3d90ae97ba1a3eebddcede32a2c57b7d14dfd41ee4e72/edc-action-item-0.1.7.macosx-10.13-x86_64.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7668b94880ab81052bc386171c3d8554", "sha256": "c94f8d2bab93d6b5193790a1a3ef395e0bbceab406ff37f3fe3ace23a1fb5842" }, "downloads": -1, "filename": "edc_action_item-0.1.7-py3-none-any.whl", "has_sig": false, "md5_digest": "7668b94880ab81052bc386171c3d8554", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 52289, "upload_time": "2018-08-16T22:20:21", "upload_time_iso_8601": "2018-08-16T22:20:21.741372Z", "url": "https://files.pythonhosted.org/packages/2b/d1/26e3f1c109d2ebf6d90b26b2718ff931ed2f3a950b69e042183410a11b17/edc_action_item-0.1.7-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.70": [ { "comment_text": "", "digests": { "md5": "23f9d137ba3b9cd3d1418e98a235afbd", "sha256": "fe0b0a0b13b619c3a8a6fea9b064483ca5a6844804d7fe9a67dc5f415d47c6b6" }, "downloads": -1, "filename": "edc_action_item-0.1.70-py3-none-any.whl", "has_sig": false, "md5_digest": "23f9d137ba3b9cd3d1418e98a235afbd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 89747, "upload_time": "2020-03-12T18:29:22", "upload_time_iso_8601": "2020-03-12T18:29:22.124589Z", "url": "https://files.pythonhosted.org/packages/33/ed/f334217c2fa3433d0fa8d29d7aaf3efd90408d8a27baf378d98ccaefd0ff/edc_action_item-0.1.70-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.71": [ { "comment_text": "", "digests": { "md5": "cc9cdeafcc885d4f32a09d95a3c64ec4", "sha256": "391d5935a259b22ec92a722c6efaddd4158a46c803f64920318b437b16d29d5e" }, "downloads": -1, "filename": "edc_action_item-0.1.71-py3-none-any.whl", "has_sig": false, "md5_digest": "cc9cdeafcc885d4f32a09d95a3c64ec4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 89745, "upload_time": "2020-03-13T02:55:26", "upload_time_iso_8601": "2020-03-13T02:55:26.451781Z", "url": "https://files.pythonhosted.org/packages/11/14/22a15313a2a8aaf4da3f8ea26990ff9a14405daae75e7c40a3512760cb14/edc_action_item-0.1.71-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.72": [ { "comment_text": "", "digests": { "md5": "f7de824aa5db11b9242087d54deef824", "sha256": "6396b9a85b3ce5c066cefe2b5d1d9dfb6d35ec33b51f7b13e8ab82b1bed4e3f9" }, "downloads": -1, "filename": "edc_action_item-0.1.72-py3-none-any.whl", "has_sig": false, "md5_digest": "f7de824aa5db11b9242087d54deef824", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 90910, "upload_time": "2020-05-12T03:42:02", "upload_time_iso_8601": "2020-05-12T03:42:02.966105Z", "url": "https://files.pythonhosted.org/packages/9d/ce/b62f1b71d011bfe1174d35ee36fad4f17a5cd01eed0c322458f214369e7b/edc_action_item-0.1.72-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.73": [ { "comment_text": "", "digests": { "md5": "de6ad9b6967687e2ac2eaddd15b193fe", "sha256": "9275c3750886ddd44f95c0b02eadb3f4c024700d388592ed32e01d6247a54d38" }, "downloads": -1, "filename": "edc_action_item-0.1.73-py3-none-any.whl", "has_sig": false, "md5_digest": "de6ad9b6967687e2ac2eaddd15b193fe", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 90437, "upload_time": "2020-05-12T13:47:45", "upload_time_iso_8601": "2020-05-12T13:47:45.302017Z", "url": "https://files.pythonhosted.org/packages/18/3a/408da7c2e35ea4fdfdeb0867d287f9ee1f75eaa2d15b3e778f97ab802ff3/edc_action_item-0.1.73-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.74": [ { "comment_text": "", "digests": { "md5": "4d098995be163a60fcd56e3a1b87a0de", "sha256": "d6b378b8ec00762dac652ce08c1d5e73666ba3328366464729ee3e513a3c99c9" }, "downloads": -1, "filename": "edc_action_item-0.1.74-py3-none-any.whl", "has_sig": false, "md5_digest": "4d098995be163a60fcd56e3a1b87a0de", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 91003, "upload_time": "2020-06-10T15:59:00", "upload_time_iso_8601": "2020-06-10T15:59:00.316828Z", "url": "https://files.pythonhosted.org/packages/d4/45/09e40172fff352d8862c68784166f51a6f4194e02e02c505f16270d608a1/edc_action_item-0.1.74-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.75": [ { "comment_text": "", "digests": { "md5": "0f5d0f821c67f6357da059d142096d06", "sha256": "be63f9e4087a10a94afdac66d323f92eb53351cf74427ac2abd343ccdec913a0" }, "downloads": -1, "filename": "edc_action_item-0.1.75-py3-none-any.whl", "has_sig": false, "md5_digest": "0f5d0f821c67f6357da059d142096d06", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 90981, "upload_time": "2020-06-10T17:04:14", "upload_time_iso_8601": "2020-06-10T17:04:14.533724Z", "url": "https://files.pythonhosted.org/packages/e1/0b/1d51420277b585479e0ac6d8f853a966de90c33055a8ba893563ddae4904/edc_action_item-0.1.75-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.76": [ { "comment_text": "", "digests": { "md5": "0104a26d2485c00ae505ae98e6cb8b56", "sha256": "4adf0c04bb5b833e3e02a689bfb0740a2fff5c3f54377a52080d03b38f47e589" }, "downloads": -1, "filename": "edc_action_item-0.1.76-py3-none-any.whl", "has_sig": false, "md5_digest": "0104a26d2485c00ae505ae98e6cb8b56", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 90985, "upload_time": "2020-06-10T18:24:25", "upload_time_iso_8601": "2020-06-10T18:24:25.583883Z", "url": "https://files.pythonhosted.org/packages/1e/42/5d647bd99e67a7ba08debaebdcbd1b1d8accfde2ed4c3d16c43d11b27b36/edc_action_item-0.1.76-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.77": [ { "comment_text": "", "digests": { "md5": "d3c0623f9741c2935cc1f73857227d5a", "sha256": "edab32ffa6cb6bd69d4e3d535ae4e6e9a65d6f19446c847d35494d6b039f0617" }, "downloads": -1, "filename": "edc_action_item-0.1.77-py3-none-any.whl", "has_sig": false, "md5_digest": "d3c0623f9741c2935cc1f73857227d5a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 90983, "upload_time": "2020-06-10T18:49:35", "upload_time_iso_8601": "2020-06-10T18:49:35.646665Z", "url": "https://files.pythonhosted.org/packages/7b/17/cf42cb610fde2f26c77005f809bc1176d26923dfa85d8cb9a02579845ba4/edc_action_item-0.1.77-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.78": [ { "comment_text": "", "digests": { "md5": "c4c640521504db8f4bc924d2d9dfff40", "sha256": "dbc68d81955e844ffd247b212436eb0bd30a33a6a9c0acb01eff9afb8fdeee2c" }, "downloads": -1, "filename": "edc_action_item-0.1.78-py3-none-any.whl", "has_sig": false, "md5_digest": "c4c640521504db8f4bc924d2d9dfff40", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 91548, "upload_time": "2020-06-14T18:06:18", "upload_time_iso_8601": "2020-06-14T18:06:18.453646Z", "url": "https://files.pythonhosted.org/packages/89/26/fd2d0ac7d75a4788386d901a8267b0ce49872b04449381ae5da41284d210/edc_action_item-0.1.78-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.79": [ { "comment_text": "", "digests": { "md5": "3af0ae05ea6e677f0d623fe43bdf3e2b", "sha256": "768e5019c16ecf69547726ea25572c210f179b5f35a087716af683d7cba2bada" }, "downloads": -1, "filename": "edc_action_item-0.1.79-py3-none-any.whl", "has_sig": false, "md5_digest": "3af0ae05ea6e677f0d623fe43bdf3e2b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 93411, "upload_time": "2020-07-02T03:09:22", "upload_time_iso_8601": "2020-07-02T03:09:22.218783Z", "url": "https://files.pythonhosted.org/packages/e3/c0/c83a6c5cc779f0070a1b029ead6e8ad6007104dd7adc6164dbe972df74a3/edc_action_item-0.1.79-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "26b93efd78ff406e286b77d6172aeb36", "sha256": "b4dea4761fe66cf97d12f641cb7a3e2408fc6c1d054b0644bcd845232b94254f" }, "downloads": -1, "filename": "edc-action-item-0.1.8.macosx-10.13-x86_64.tar.gz", "has_sig": false, "md5_digest": "26b93efd78ff406e286b77d6172aeb36", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77506, "upload_time": "2018-09-03T00:29:39", "upload_time_iso_8601": "2018-09-03T00:29:39.965417Z", "url": "https://files.pythonhosted.org/packages/b6/79/d6b2b138825229a4bb3a1b79d2fb903fc1fdc0b6ade0bcc5607e06b9645b/edc-action-item-0.1.8.macosx-10.13-x86_64.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "007bd1e935ffac3e9d3c278751fab6d8", "sha256": "bb17c59ba15eccec0e3f467a3c14edd7cb8a5c799aa38d82dd5618b397a6653d" }, "downloads": -1, "filename": "edc_action_item-0.1.8-py3-none-any.whl", "has_sig": false, "md5_digest": "007bd1e935ffac3e9d3c278751fab6d8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 54515, "upload_time": "2018-09-03T00:29:38", "upload_time_iso_8601": "2018-09-03T00:29:38.281213Z", "url": "https://files.pythonhosted.org/packages/7b/28/8ed1b5452eefd3a243a3d43064ca838907a30c789e649c0c12abfa2006ba/edc_action_item-0.1.8-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.80": [ { "comment_text": "", "digests": { "md5": "339ad5b1cf527bb6b8e3f907f30a60d2", "sha256": "aea6ad88d4b9df756d671e9eae8277525c8f0e8a56faa9648c75508952342283" }, "downloads": -1, "filename": "edc_action_item-0.1.80-py3-none-any.whl", "has_sig": false, "md5_digest": "339ad5b1cf527bb6b8e3f907f30a60d2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 94045, "upload_time": "2020-07-30T04:27:02", "upload_time_iso_8601": "2020-07-30T04:27:02.716508Z", "url": "https://files.pythonhosted.org/packages/34/14/17634487f9a73729e730054e0a3323155e376dcf68957df4e677f8233e11/edc_action_item-0.1.80-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.81": [ { "comment_text": "", "digests": { "md5": "f2cf6ab9d370ccb8aab72912dadb811a", "sha256": "e5a80d4f51993722e62fc5d7c0be5f8150240c46dc65b124293a8d6ab3db98fe" }, "downloads": -1, "filename": "edc_action_item-0.1.81-py3-none-any.whl", "has_sig": false, "md5_digest": "f2cf6ab9d370ccb8aab72912dadb811a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 94039, "upload_time": "2020-09-22T19:03:15", "upload_time_iso_8601": "2020-09-22T19:03:15.926778Z", "url": "https://files.pythonhosted.org/packages/37/e4/de16be3aab4995e4bf607fc5c625ce98047bd7437deddceb41a328dbb2a7/edc_action_item-0.1.81-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.82": [ { "comment_text": "", "digests": { "md5": "d0d5fc22a5857928ad399ccd2ecec237", "sha256": "1d1e430fa92edbfb1bf79e5b54bf6d87c68b30de3cc28eabb04cc35dd9591db1" }, "downloads": -1, "filename": "edc_action_item-0.1.82-py3-none-any.whl", "has_sig": false, "md5_digest": "d0d5fc22a5857928ad399ccd2ecec237", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 94061, "upload_time": "2021-01-19T17:29:38", "upload_time_iso_8601": "2021-01-19T17:29:38.323213Z", "url": "https://files.pythonhosted.org/packages/48/71/5e1c564a6426514a6d91a3cb69b35b602c8c2c835c66ac14f37b0fd34351/edc_action_item-0.1.82-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.83": [ { "comment_text": "", "digests": { "md5": "33ed3b547390f2db3e07a6c6fa1988fe", "sha256": "9ea74637f9abd7178a90b16cc09e7ebef4bb75cad2709898fce0bff65e247e24" }, "downloads": -1, "filename": "edc_action_item-0.1.83-py3-none-any.whl", "has_sig": false, "md5_digest": "33ed3b547390f2db3e07a6c6fa1988fe", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 94632, "upload_time": "2021-01-19T21:06:47", "upload_time_iso_8601": "2021-01-19T21:06:47.760961Z", "url": "https://files.pythonhosted.org/packages/af/a1/482ffb42bc5fed327b9dfbbfebecb1c693e73c4f218a05e17a5fc3ac6744/edc_action_item-0.1.83-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.84": [ { "comment_text": "", "digests": { "md5": "24bb3e870d7647c253c7d1ba73920ebe", "sha256": "76d26bcb2ac3421ced1c6c267b12064695c02817bd3b48fdf192158be399aa2d" }, "downloads": -1, "filename": "edc_action_item-0.1.84-py3-none-any.whl", "has_sig": false, "md5_digest": "24bb3e870d7647c253c7d1ba73920ebe", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 94631, "upload_time": "2021-01-19T21:10:24", "upload_time_iso_8601": "2021-01-19T21:10:24.993099Z", "url": "https://files.pythonhosted.org/packages/eb/67/c4406fa78ca00cedded5047aa8f42679c774808aa284c89d458fb0316c21/edc_action_item-0.1.84-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.85": [ { "comment_text": "", "digests": { "md5": "ed1e4a993ad1ca90db6d1366e61536e9", "sha256": "581ab69950a93311462eb32ba6dc7eff2de72900663cff11588315d2477f31d2" }, "downloads": -1, "filename": "edc_action_item-0.1.85-py3-none-any.whl", "has_sig": false, "md5_digest": "ed1e4a993ad1ca90db6d1366e61536e9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 94656, "upload_time": "2021-01-24T19:09:34", "upload_time_iso_8601": "2021-01-24T19:09:34.585742Z", "url": "https://files.pythonhosted.org/packages/cb/d6/2edf7fc5ba9574a5b0739b0e8923874ad93d61c3873a722db65b887ee0b8/edc_action_item-0.1.85-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.1.9": [ { "comment_text": "", "digests": { "md5": "5d43578e81fa26522b2c995aa304cb52", "sha256": "e45d299815049e9d0250c93820ec248d44fd47a272e9adef45528ff4a65d7ec0" }, "downloads": -1, "filename": "edc-action-item-0.1.9.macosx-10.13-x86_64.tar.gz", "has_sig": false, "md5_digest": "5d43578e81fa26522b2c995aa304cb52", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77634, "upload_time": "2018-09-06T05:24:49", "upload_time_iso_8601": "2018-09-06T05:24:49.187658Z", "url": "https://files.pythonhosted.org/packages/a9/38/768c5a6f1ad0c2996f0ae11cceb881c51e49833821fcde239d7ffed90adb/edc-action-item-0.1.9.macosx-10.13-x86_64.tar.gz", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3199f1c08b904927fb2e0e2c6ac0efb7", "sha256": "a997d1cd7d9d2f36c3d02c1071115182420cec006b0ce05edeeb94a1c2338de6" }, "downloads": -1, "filename": "edc_action_item-0.1.9-py3-none-any.whl", "has_sig": false, "md5_digest": "3199f1c08b904927fb2e0e2c6ac0efb7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 54535, "upload_time": "2018-09-06T05:24:47", "upload_time_iso_8601": "2018-09-06T05:24:47.586314Z", "url": "https://files.pythonhosted.org/packages/b4/42/9dfe5947569aa952dc110538c13cae09ad790fbe572068695c657bdf05ba/edc_action_item-0.1.9-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "e11c478e5865a1266128cc1ef7834cd6", "sha256": "3622a1c52a5acd7b61261f58a94900373c6359bacf0deae546a2c798b749c92d" }, "downloads": -1, "filename": "edc_action_item-0.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "e11c478e5865a1266128cc1ef7834cd6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 94641, "upload_time": "2021-01-25T00:58:21", "upload_time_iso_8601": "2021-01-25T00:58:21.890278Z", "url": "https://files.pythonhosted.org/packages/8b/25/9a7c9a3fee111f9c51f1fe66dbbce471db68c80e255ca2fb9c0f3432171a/edc_action_item-0.3.0-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "9fec7648a1fb084833d434fe0af19632", "sha256": "79b646450dc0eea35b8db5475d8c4deaeaad173d6bc6313b38c9b432958f6711" }, "downloads": -1, "filename": "edc_action_item-0.3.1-py3-none-any.whl", "has_sig": false, "md5_digest": "9fec7648a1fb084833d434fe0af19632", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 95350, "upload_time": "2021-02-04T14:58:21", "upload_time_iso_8601": "2021-02-04T14:58:21.020334Z", "url": "https://files.pythonhosted.org/packages/44/f5/99135fcacf847d5b6abe26bba56b63ad175d97fd93513ff5b3e592021866/edc_action_item-0.3.1-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.3.10": [ { "comment_text": "", "digests": { "md5": "3f5421ca4b52c17c272edfe03d00917e", "sha256": "eec1dae0d5db7f2670543305473761ea32293c26ef70ea4a07ff975fe73e14c8" }, "downloads": -1, "filename": "edc_action_item-0.3.10-py3-none-any.whl", "has_sig": false, "md5_digest": "3f5421ca4b52c17c272edfe03d00917e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8", "size": 96581, "upload_time": "2021-07-28T02:23:16", "upload_time_iso_8601": "2021-07-28T02:23:16.681254Z", "url": "https://files.pythonhosted.org/packages/03/39/39757f09476686e63d188a1d9a040032e36516edb2a52e93f088aa2b1814/edc_action_item-0.3.10-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.3.11": [ { "comment_text": "", "digests": { "md5": "73921a9b4420479f0ee6691dda786bb5", "sha256": "75710de00bbf646ec575133f8890d9a19ad6cff54c96ca4c9660a9b237d43b52" }, "downloads": -1, "filename": "edc_action_item-0.3.11-py3-none-any.whl", "has_sig": false, "md5_digest": "73921a9b4420479f0ee6691dda786bb5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8", "size": 96576, "upload_time": "2021-08-18T11:32:42", "upload_time_iso_8601": "2021-08-18T11:32:42.714075Z", "url": "https://files.pythonhosted.org/packages/17/42/bbb81c4d2fba8611ad8cea9312a76563ed0ccbe45cd43fd18fc5c0541de6/edc_action_item-0.3.11-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.3.12": [ { "comment_text": "", "digests": { "md5": "06d7991b625efa36bf67a65593226058", "sha256": "00a593b0feef2de4302b5d56cb803c752668e70cae608f787c46a225b6122330" }, "downloads": -1, "filename": "edc_action_item-0.3.12-py3-none-any.whl", "has_sig": false, "md5_digest": "06d7991b625efa36bf67a65593226058", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8", "size": 97361, "upload_time": "2021-09-09T00:30:31", "upload_time_iso_8601": "2021-09-09T00:30:31.646785Z", "url": "https://files.pythonhosted.org/packages/27/05/725f78ef9bf5465a00fa185a73223464c51d5e4bed3b78a45d3051b7a604/edc_action_item-0.3.12-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.3.13": [ { "comment_text": "", "digests": { "md5": "8cb1dc269176b90b7effd823d226a5ea", "sha256": "de0e1c222805cda4aa74f395ab80e22d5fa6b2e713939dbec4749b40a4575bbe" }, "downloads": -1, "filename": "edc_action_item-0.3.13-py3-none-any.whl", "has_sig": false, "md5_digest": "8cb1dc269176b90b7effd823d226a5ea", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8", "size": 97381, "upload_time": "2021-09-11T14:18:48", "upload_time_iso_8601": "2021-09-11T14:18:48.926270Z", "url": "https://files.pythonhosted.org/packages/98/dd/a9f94b8e309bd9b5e8dded5899a3701392d16638ca8b622fdf2de143e3b2/edc_action_item-0.3.13-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.3.14": [ { "comment_text": "", "digests": { "md5": "a2c1bfcb9c69660772f8349c7acadbd3", "sha256": "d733f784f89d907004bb2c32cdf9b726697391efc8ce56961be004e0dba4656a" }, "downloads": -1, "filename": "edc_action_item-0.3.14-py3-none-any.whl", "has_sig": false, "md5_digest": "a2c1bfcb9c69660772f8349c7acadbd3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8", "size": 97421, "upload_time": "2021-09-13T03:09:31", "upload_time_iso_8601": "2021-09-13T03:09:31.524999Z", "url": "https://files.pythonhosted.org/packages/1e/c5/13aa447424347f78680e3b9336f8f82de4ee6abf4fbc52fa3c30aad3b0b0/edc_action_item-0.3.14-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.3.15": [ { "comment_text": "", "digests": { "md5": "1f113f3e4211fd8e7722b5c15d734bce", "sha256": "24d366ac01bf876e539835bb0a6ba1a801090cf2f955c86fdec8c6ee73dab701" }, "downloads": -1, "filename": "edc_action_item-0.3.15-py3-none-any.whl", "has_sig": false, "md5_digest": "1f113f3e4211fd8e7722b5c15d734bce", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8", "size": 98146, "upload_time": "2021-09-14T01:43:52", "upload_time_iso_8601": "2021-09-14T01:43:52.295862Z", "url": "https://files.pythonhosted.org/packages/10/82/005a582d4a1f6cf172467b65142fb59d812af074cedb3dbf9b71bf29d338/edc_action_item-0.3.15-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.3.16": [ { "comment_text": "", "digests": { "md5": "1e2c364ed87072fb8122871169ff47da", "sha256": "595e88dd297cbe42426957a497c21d8a2d6f5c442bb4e16d95aa504358f9594b" }, "downloads": -1, "filename": "edc_action_item-0.3.16-py3-none-any.whl", "has_sig": false, "md5_digest": "1e2c364ed87072fb8122871169ff47da", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8", "size": 98141, "upload_time": "2021-09-14T01:55:18", "upload_time_iso_8601": "2021-09-14T01:55:18.035929Z", "url": "https://files.pythonhosted.org/packages/75/e0/8009699b95527e07b09bf754b01765efc2b7d4e38a19ddef23c9b71bc403/edc_action_item-0.3.16-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.3.17": [ { "comment_text": "", "digests": { "md5": "9043802a80a3dc689361ea41621ee96b", "sha256": "e3b9711d1c19967e56a06fe78ddbabadb32218497e9ea39eb759812364310482" }, "downloads": -1, "filename": "edc_action_item-0.3.17-py3-none-any.whl", "has_sig": false, "md5_digest": "9043802a80a3dc689361ea41621ee96b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8", "size": 98040, "upload_time": "2021-09-15T02:59:34", "upload_time_iso_8601": "2021-09-15T02:59:34.601905Z", "url": "https://files.pythonhosted.org/packages/bc/53/0a0b7d470262fa3f3e25f0144589f9fe5fd63655deb6556c5201d113c708/edc_action_item-0.3.17-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.3.18": [ { "comment_text": "", "digests": { "md5": "175b2290d109c564a2eb00d7d315cc03", "sha256": "3074ad6a726bf013e5899687f4d6699a7cc0c7fb747d73532e93a4a622447587" }, "downloads": -1, "filename": "edc_action_item-0.3.18-py3-none-any.whl", "has_sig": false, "md5_digest": "175b2290d109c564a2eb00d7d315cc03", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8", "size": 98045, "upload_time": "2021-09-15T04:02:38", "upload_time_iso_8601": "2021-09-15T04:02:38.987042Z", "url": "https://files.pythonhosted.org/packages/73/fb/40542e9ce568aa1e7d931759b27ce9e77863bbd95e286e3170d86d936cb3/edc_action_item-0.3.18-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.3.19": [ { "comment_text": "", "digests": { "md5": "07e03b59791313462d580ebbdbdd869d", "sha256": "56b48bee980daf149b91d45e7ce0c8897e730d617a763b122a2ac381312ed9fa" }, "downloads": -1, "filename": "edc_action_item-0.3.19-py3-none-any.whl", "has_sig": false, "md5_digest": "07e03b59791313462d580ebbdbdd869d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8", "size": 98050, "upload_time": "2021-10-12T04:46:46", "upload_time_iso_8601": "2021-10-12T04:46:46.483870Z", "url": "https://files.pythonhosted.org/packages/51/fc/35b88e1e8e1f2020beca35cfffc8e3869a9739b9992ea3f4246b75d786d3/edc_action_item-0.3.19-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "737f7c9ffb23fae001957126fef4bb9b", "sha256": "c7aab33bab5467537e96b6dc2cc3e7de58c913b6d3e4b67532e4d3ac25be5c96" }, "downloads": -1, "filename": "edc_action_item-0.3.2-py3-none-any.whl", "has_sig": false, "md5_digest": "737f7c9ffb23fae001957126fef4bb9b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 95342, "upload_time": "2021-02-04T16:13:38", "upload_time_iso_8601": "2021-02-04T16:13:38.034608Z", "url": "https://files.pythonhosted.org/packages/7d/3a/99b6eb08db1cd7dce639acfed2d714d607535db8fb0effaff3991afeb4e8/edc_action_item-0.3.2-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.3.20": [ { "comment_text": "", "digests": { "md5": "de433191514af170e0634772b094fc17", "sha256": "eb3d2295b23ae7f8cd0124cf4d5c514fd4853aa613f3e5e1c5b1902b94075170" }, "downloads": -1, "filename": "edc_action_item-0.3.20-py3-none-any.whl", "has_sig": false, "md5_digest": "de433191514af170e0634772b094fc17", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8", "size": 98338, "upload_time": "2022-02-05T16:07:04", "upload_time_iso_8601": "2022-02-05T16:07:04.272848Z", "url": "https://files.pythonhosted.org/packages/d7/fb/a150b4d6f1f7b47cc9891625addf7090de60530f3a6ebaee3f92e0bd6d50/edc_action_item-0.3.20-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2380570662761d0a5df0426d27fa490a", "sha256": "e07def09d841f62166c70dc4bf766fa4ac214bc4eb8e52a66c924b792fae5c8e" }, "downloads": -1, "filename": "edc-action-item-0.3.20.tar.gz", "has_sig": false, "md5_digest": "2380570662761d0a5df0426d27fa490a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8", "size": 64403, "upload_time": "2022-02-05T16:07:05", "upload_time_iso_8601": "2022-02-05T16:07:05.823721Z", "url": "https://files.pythonhosted.org/packages/cc/41/ced3c8ec0d552fbf15d6ae7e2e02dad5bae83ff35f1232ab4dacfa221ce1/edc-action-item-0.3.20.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.21": [ { "comment_text": "", "digests": { "md5": "8dfdc284fff30e5290281bb0cd63d0d5", "sha256": "7bc51419377885d54f084247ce2bc3460eba3f7a2af995944eb73d61adb0a68f" }, "downloads": -1, "filename": "edc_action_item-0.3.21-py3-none-any.whl", "has_sig": false, "md5_digest": "8dfdc284fff30e5290281bb0cd63d0d5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8", "size": 98359, "upload_time": "2022-02-16T02:40:52", "upload_time_iso_8601": "2022-02-16T02:40:52.381448Z", "url": "https://files.pythonhosted.org/packages/1f/29/704b89621fcee6382f5afe8c35ed24fa9d3e9ed7c3610517147a4295b583/edc_action_item-0.3.21-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6bb31966da8ca028d1d2479bd70a0d2d", "sha256": "3423ea3428964077983d32cf7013ed90c56646519d1843ab2372ff149f6a998d" }, "downloads": -1, "filename": "edc-action-item-0.3.21.tar.gz", "has_sig": false, "md5_digest": "6bb31966da8ca028d1d2479bd70a0d2d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8", "size": 64443, "upload_time": "2022-02-16T02:40:54", "upload_time_iso_8601": "2022-02-16T02:40:54.283065Z", "url": "https://files.pythonhosted.org/packages/fd/b2/9452489584e2b0d0e50382827e25405a23a760cd1ab72ed1e870788f6742/edc-action-item-0.3.21.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.22": [ { "comment_text": "", "digests": { "md5": "b9ae55d906a52c68661877007c0c98b9", "sha256": "c47d07fd235299ecdc7e1ccf3f12eab9bc277a35ce244d4756b024f1930401c4" }, "downloads": -1, "filename": "edc_action_item-0.3.22-py3-none-any.whl", "has_sig": false, "md5_digest": "b9ae55d906a52c68661877007c0c98b9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8", "size": 98328, "upload_time": "2022-04-08T08:29:39", "upload_time_iso_8601": "2022-04-08T08:29:39.491559Z", "url": "https://files.pythonhosted.org/packages/0b/84/b2436f8c9576dd157268c437251a25b1867487e9d33ae50a9b3c16bba77e/edc_action_item-0.3.22-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0c55a3e133c73d14fa4df4049c570997", "sha256": "7c7951cf62cc4a752b0bb29c517336603a5457e1a6c286f75e8cce57cf5923c9" }, "downloads": -1, "filename": "edc-action-item-0.3.22.tar.gz", "has_sig": false, "md5_digest": "0c55a3e133c73d14fa4df4049c570997", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.8", "size": 64412, "upload_time": "2022-04-08T08:29:44", "upload_time_iso_8601": "2022-04-08T08:29:44.055822Z", "url": "https://files.pythonhosted.org/packages/d9/e0/9eabc6026fefcb56ed470d07568c9d94637d16f5a9b3e11ad8215941c2a9/edc-action-item-0.3.22.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.23": [ { "comment_text": "", "digests": { "md5": "5b48f41966d60c2bf9d8f332f0059e46", "sha256": "0e1ea6e46f4f95214149d24efd5e23ae20385bf6e6c5c01ce6406f67c29c1376" }, "downloads": -1, "filename": "edc_action_item-0.3.23-py3-none-any.whl", "has_sig": false, "md5_digest": "5b48f41966d60c2bf9d8f332f0059e46", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.9", "size": 105869, "upload_time": "2022-05-02T20:12:08", "upload_time_iso_8601": "2022-05-02T20:12:08.110435Z", "url": "https://files.pythonhosted.org/packages/a1/a6/7102dcc4b14e2befa0389fc75e75adbdd613022ce3f0475024f971920eb4/edc_action_item-0.3.23-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d327a69a4f18474f475599acaf550a70", "sha256": "e3b293ca311edc4151646db5f348f9f2c16af3618f2d9e5922cf9287238b2f07" }, "downloads": -1, "filename": "edc-action-item-0.3.23.tar.gz", "has_sig": false, "md5_digest": "d327a69a4f18474f475599acaf550a70", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.9", "size": 74282, "upload_time": "2022-05-02T20:12:09", "upload_time_iso_8601": "2022-05-02T20:12:09.798863Z", "url": "https://files.pythonhosted.org/packages/b7/41/6c91a421f84ada04da717fabdabfc013ad1f888ad9e238cc08a892fbb5ff/edc-action-item-0.3.23.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "45b036b32dece98daad5f22baf9ba1de", "sha256": "c237c283ed6c35e9a27520377f704291192c22cec19201167efa0e260150dc82" }, "downloads": -1, "filename": "edc_action_item-0.3.3-py3-none-any.whl", "has_sig": false, "md5_digest": "45b036b32dece98daad5f22baf9ba1de", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 96433, "upload_time": "2021-03-01T03:06:03", "upload_time_iso_8601": "2021-03-01T03:06:03.525695Z", "url": "https://files.pythonhosted.org/packages/95/22/2602cd4d9034d9adb405d2e3a41bc4b76c1eafa06b26051dacc978836308/edc_action_item-0.3.3-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "9bbff3d3d81ade395306d2620f45340e", "sha256": "130a4598abef07a6205743ab8ba3c049760d818581bccda0064920d53ee35df3" }, "downloads": -1, "filename": "edc_action_item-0.3.4-py3-none-any.whl", "has_sig": false, "md5_digest": "9bbff3d3d81ade395306d2620f45340e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8", "size": 96434, "upload_time": "2021-04-06T02:14:56", "upload_time_iso_8601": "2021-04-06T02:14:56.515969Z", "url": "https://files.pythonhosted.org/packages/38/c0/b9c691724a04a8fc01e044cda5be1b552e4674c79f289faa9f391a986b3c/edc_action_item-0.3.4-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "45a5b56fc1e9cbd625f3508cd69f6a7f", "sha256": "42604fbb28ad296c91358999d49d5bdd450d7ab8a6823be14b513cf088d7130d" }, "downloads": -1, "filename": "edc_action_item-0.3.5-py3-none-any.whl", "has_sig": false, "md5_digest": "45a5b56fc1e9cbd625f3508cd69f6a7f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8", "size": 96434, "upload_time": "2021-04-23T11:34:13", "upload_time_iso_8601": "2021-04-23T11:34:13.712144Z", "url": "https://files.pythonhosted.org/packages/65/c8/df3778481090d514aebbf88b09064fdd2d65b3a3dca1ab0140abfeca1f87/edc_action_item-0.3.5-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.3.6": [ { "comment_text": "", "digests": { "md5": "31b50dc2be5f7dd54509e2793df756d3", "sha256": "edffac11b0dddeac6743111575eda20aa68da4df4f0ae6dd20c273aeca03c08e" }, "downloads": -1, "filename": "edc_action_item-0.3.6-py3-none-any.whl", "has_sig": false, "md5_digest": "31b50dc2be5f7dd54509e2793df756d3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8", "size": 96420, "upload_time": "2021-06-23T15:51:56", "upload_time_iso_8601": "2021-06-23T15:51:56.815837Z", "url": "https://files.pythonhosted.org/packages/3b/09/4fbb9da74f21c7a6ad616b6bef2e36a9599b39a84747b75a1323ea38ea45/edc_action_item-0.3.6-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.3.7": [ { "comment_text": "", "digests": { "md5": "61e9c7d8326b766b71e6298dc401cdad", "sha256": "b0893cbc2573efe5d890b0534d7be70168a9f90c67100c54298dbf9a69c4d25e" }, "downloads": -1, "filename": "edc_action_item-0.3.7-py3-none-any.whl", "has_sig": false, "md5_digest": "61e9c7d8326b766b71e6298dc401cdad", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8", "size": 96471, "upload_time": "2021-07-04T15:31:48", "upload_time_iso_8601": "2021-07-04T15:31:48.316497Z", "url": "https://files.pythonhosted.org/packages/74/ab/0532775061660b1ce05c7bf99de01cb29ec7d316334fdaa636c913c12219/edc_action_item-0.3.7-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.3.8": [ { "comment_text": "", "digests": { "md5": "7c56a9a47dc114b41be4d37399bd0cca", "sha256": "b99bad2a308084208101de9e67837df0aba3fa29631ed30d50499f59f58a840e" }, "downloads": -1, "filename": "edc_action_item-0.3.8-py3-none-any.whl", "has_sig": false, "md5_digest": "7c56a9a47dc114b41be4d37399bd0cca", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8", "size": 96477, "upload_time": "2021-07-22T21:33:05", "upload_time_iso_8601": "2021-07-22T21:33:05.065539Z", "url": "https://files.pythonhosted.org/packages/de/5a/1dc166c4fd573ff5dfdb59854b9486b0bb27eb6c6e8c720e931baf318a4c/edc_action_item-0.3.8-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.3.9": [ { "comment_text": "", "digests": { "md5": "44686506846f3449e0f40ee0170f4226", "sha256": "91428ba25dce665f6c09537ca249fb1f3a5a6bd78e7f649338c38a6b7e02ab79" }, "downloads": -1, "filename": "edc_action_item-0.3.9-py3-none-any.whl", "has_sig": false, "md5_digest": "44686506846f3449e0f40ee0170f4226", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.8", "size": 96584, "upload_time": "2021-07-27T13:13:50", "upload_time_iso_8601": "2021-07-27T13:13:50.199604Z", "url": "https://files.pythonhosted.org/packages/1f/74/a25a0c0516fcd227b7ff92f76a6964b274c5434b3f53ee629dbdb634e005/edc_action_item-0.3.9-py3-none-any.whl", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "5b48f41966d60c2bf9d8f332f0059e46", "sha256": "0e1ea6e46f4f95214149d24efd5e23ae20385bf6e6c5c01ce6406f67c29c1376" }, "downloads": -1, "filename": "edc_action_item-0.3.23-py3-none-any.whl", "has_sig": false, "md5_digest": "5b48f41966d60c2bf9d8f332f0059e46", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.9", "size": 105869, "upload_time": "2022-05-02T20:12:08", "upload_time_iso_8601": "2022-05-02T20:12:08.110435Z", "url": "https://files.pythonhosted.org/packages/a1/a6/7102dcc4b14e2befa0389fc75e75adbdd613022ce3f0475024f971920eb4/edc_action_item-0.3.23-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d327a69a4f18474f475599acaf550a70", "sha256": "e3b293ca311edc4151646db5f348f9f2c16af3618f2d9e5922cf9287238b2f07" }, "downloads": -1, "filename": "edc-action-item-0.3.23.tar.gz", "has_sig": false, "md5_digest": "d327a69a4f18474f475599acaf550a70", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.9", "size": 74282, "upload_time": "2022-05-02T20:12:09", "upload_time_iso_8601": "2022-05-02T20:12:09.798863Z", "url": "https://files.pythonhosted.org/packages/b7/41/6c91a421f84ada04da717fabdabfc013ad1f888ad9e238cc08a892fbb5ff/edc-action-item-0.3.23.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }