edc-data-manager


Nameedc-data-manager JSON
Version 0.3.77 PyPI version JSON
download
home_pagehttps://github.com/clinicedc/edc-data-manager
SummaryData manager administrative models and classes for clinicedc/edc projects
upload_time2024-03-26 04:53:52
maintainerNone
docs_urlNone
authorErik van Widenfelt
requires_python>=3.11
licenseGPL license, see LICENSE
keywords django edc data management crf clinicedc clinical trials
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            |pypi| |actions| |codecov| |downloads|

edc-data-manager
----------------

Data manager administrative models and classes.

``edc-data-manager`` adds models and functionality to the Edc that compliment the role of the clinical trial data manager.
The ``Data Query`` form guides the data manager in describing missing, incomplete or incorrect participant data. The ``Data Query``
is then made available to research staff on the participant's dashboard and administrative pages. Additionally, the data manager
can define ``Query Rules`` that scan the dataset for participant data that match the rule's criteria. For each match found,
``edc-data-manager`` automatically creates a ``Data Query``.

For automated queries, those created when a ``Query Rule`` is run, ``edc-data-manager`` will re-run a ``Query Rule`` upon updates
to the participant data. If the criteria is no longer met, the ``Data Query`` is automatically closed.


User Roles
==========

``edc_data_manager`` adds the ``DATA MANAGER`` and the ``DATA_QUERY`` user groups.
Members of the ``DATA_QUERY`` group can respond to existing data queries by completing  the "site response" section of the form.
They do not have permissions to change the criteria of the data query. Research staff responsible for submitting participant
data are typically given membership to the ``DATA_QUERY`` user group.


Members of the ``DATA MANAGER`` user group can add/change/delete any ``Data Query`` form and ``Query Rule`` form.
Data managers, those who oversee data collection but do not submit data themselves, are typically members of the ``DATA MANAGER`` user group.


The Data Query Model
====================
The central model of ``edc_data_manager`` is the ``Data Query`` model. A ``Data Query`` is either created manually by a data manager
or automatically when a ``Query Rule`` is run. The ``data query`` describes an issue for the attention of the research staff.
A data query might be general, describing the issue with nothing more than a free text comment, or specific. To allow for a specific
data query, the ``Query Rule`` form has questions where the data manager (or ``Query Rule``) can select the relevant timepoints, form questions,
and timing.

Data query status
+++++++++++++++++

The ``Data Query`` status is split between two fields, one managed by the research staff and one by the data manager. Initially the
research staff status is set to ``New`` and the data manager's status is set to ``Open``.

The available states of a ``Data Query`` are similar to those used on ticketing systems; namely, New, Open , Feedback, Resolved, Closed.
Only a data manager can close a data query.

Members of the ``DATA_QUERY`` group can:

* Open the query -- indicating they are working on the issue. (``Open``)
* Request feedback -- indicating they need assistance from the data manager .(``Feedback``)
* Resolve the query -- indicating the issue is resolved. (``Resolved``)

This status field, managed by members of the ``DATA_QUERY`` group, is in a seperate section of the ``Data Query`` form.

Members of the ``DATA_MANAGER`` have their own section on the form and can:

* Resolve the query (but only if the site status is also ``Resolved``)
* Resolve with an action plan

Since data managers have full permissions to the form, they can override the status set by the research staff.

Query Rules
===========

Query Rules define criteria to be used to scan the dataset for data problems. In a query rule you can define the following:

* CRF model
* Related requisition panel name (if applicable)
* CRF questions
* Timepoints (visits)
* Timing (when to run the query, e.g. 48 hours after the visit report is submitted)
* Priority
* Research staff contact
* Data manager contact

As mentioned above, a ``Data Query`` can be automatically created by a ``Query Rule``. Simple ``Query Rules`` are defined using the ``Query Rule`` form.
``Query Rules`` are run by a "handler". The default handler is sufficient in most cases. If not, a custom handler can be written, registered with
``edc_data_manager``, and selected on the ``Query Rule`` form.

When are Query Rules run?
+++++++++++++++++++++++++

* Query rules can be run as an Admin action from the QueryRule Admin page;
* A Query rule is run when a model is modified;
* Query rules can be scheduled if ``django-celery`` is installed.

Data Queries trigger action items
+++++++++++++++++++++++++++++++++

When a data query is created, a supporting action item is also created. As with all action items, this means an "alert"
shows on the participant dashboard and users can be notified by email and/or SMS. See ``edc_action_item``.


QueryRuleHandler -- the default rule handler
++++++++++++++++++++++++++++++++++++++++++++

For each timepoint specified in the ``Query Rule``, the handler:

* checks to see if the visit report has been submitted. If not, the rule is ignored.
* checks if the requisition has been completed (if a requisition panel is linked to the query rule). If the requisition has not been completed, a ``Data Query`` is created immediately.
* gathers each value specified in the list of CRF form questions and calls ``inspect_model``.
* if ``inspect_model`` returns False, the ``Data Query`` is created or re-opened.
* if ``inspect_model`` returns True, no data query is created or the existing ``Data Query`` is resolved.

Custom rule handlers
++++++++++++++++++++

The default rule handler, ``QueryRuleHandler``, already does a lot, but it cannot satisfy all cases. The default ``inspect_model`` method
does most of the form specific work of ``QueryRuleHandler``. In the default implementation of ``inspect_model``, a blank field value is
considered invalid and ``inspect_model`` returns ``False``. This may be fine if the ``Query Rule`` is just looking for just a single field value
but not for a combination of values. When looking for a combination of field values, a blank field value may be valid. In such cases
you can override the ``inspect_model`` method and specify the correct logic for the desired data condition.

For example:

.. code-block:: python

    # data_manager.py

    from ambition_subject.constants import AWAITING_RESULTS
    from edc_constants.constants import NOT_DONE, YES, NO
    from edc_data_manager.handlers import QueryRuleHandler
    from edc_data_manager.site_data_manager import site_data_manager


    class LumbarPunctureHandlerQ13(QueryRuleHandler):

        name = "lumbar_puncture_q13"
        display_name = "Lumbar Puncture (Q13, 15, 21, 23, 24)"
        model_name = "ambition_subject.lumbarpuncturecsf"

        @property
        def inspect_model(self):
            """Lumbar Puncture/Cerebrospinal Fluid 13, 15, 21, 23, 24.
            """
            valid = False
            if self.get_field_value("csf_culture") == AWAITING_RESULTS:
                pass
            elif self.get_field_value("csf_culture") == NOT_DONE:
                valid = True
            elif self.get_field_value("csf_culture") == YES:
                if (self.get_field_value("other_csf_culture")
                        and self.get_field_value("csf_wbc_cell_count")
                        and self.get_field_value("csf_glucose")
                        and self.get_field_value("csf_protein")
                        and (self.get_field_value("csf_cr_ag")
                             or self.get_field_value("india_ink"))):
                    valid = True
            elif self.get_field_value("csf_culture") == NO:
                if (self.get_field_value("csf_wbc_cell_count")
                        and self.get_field_value("csf_glucose")
                        and self.get_field_value("csf_protein")
                        and (self.get_field_value("csf_cr_ag")
                             or self.get_field_value("india_ink"))):
                    valid = True
            return valid

    site_data_manager.register(LumbarPunctureHandlerQ13)

Note the use of ``get_field_value`` method instead of directly accessing the model instance. This is not absolutely necessary but
avoids confusion by ensuring you only access fields defined in the ``Query Rule``.


Registering custom rule handlers
++++++++++++++++++++++++++++++++

``edc_data_manager`` has a site registry that ``autodiscovers`` module ``data_manager.py`` in the root of each app in ``INSTALLED_APPS``.

For example:

.. code-block:: python

    # data_manager.py

    from edc_data_manager.handlers import QueryRuleHandler
    from edc_data_manager.site_data_manager import site_data_manager


    class MyCustomHandler(QueryRuleHandler):

        name = "my_custom_handler"
        display_name = "My Custom Handler"
        model_name = "my_app.somecrf"

        @property
        def inspect_model(self):

            valid = False

            if self.get_field_value("field_one") == 1:

            ... some more code that eventually sets valid to True

            return valid

    site_data_manager.register(MyCustomHandler)

Dumping and loading a QueryRule fixture
++++++++++++++++++++++++++++++++++++++++++

.. code-block:: bash

    python manage.py dumpdata edc_data_manager.queryrule --natural-foreign --natural-primary --indent 4 -o queryrule.json

.. code-block:: bash

    python manage.py loaddata queryrules.json

Updating query rules
++++++++++++++++++++

Query rules can be triggered manually to run from the admin action under the `QueryRule` admin page.

If ``celery`` is enabled, the ``update_query_rules`` will try to send proccessing to the MQ.

See also ``update_query_rules``, ``update_query_rules_action``.

Rerun form validation
=====================

You can use the ``FormValidationRunner`` to rerun form validation on all instances for a model.

You could do this:

.. code-block:: python

    runner = FormValidationRunner(modelform)
    runner.run()


You could also run for every model in your EDC deployment by getting the ``ModelForm`` class
from the ``admin`` registry and running ``FormValidationRunner``:

.. code-block:: python

    from django.apps import apps as django_apps
    from edc_data_manager.form_validation_runners import (
        FormValidationRunner,
        FormValidationRunnerError,
        get_modelform_cls,
        )

    for app_config in django_apps.get_app_configs():
        if app_config.name.startswith("edc_"):
            continue
        for model_cls in app_config.get_models():
            if model_cls == Appointment:
                continue
            print(model_cls._meta.label_lower)
            try:
                modelform = get_modelform_cls(model_cls._meta.label_lower)
            except FormValidationRunnerError as e:
                print(e)
            else:
                print(modelform)
                try:
                    runner = FormValidationRunner(modelform)
                except AttributeError as e:
                    print(f"{e}. See {model_cls._meta.label_lower}.")
                else:
                    try:
                        runner.run()
                    except (AttributeError, FieldError) as e:
                        print(f"{e}. See {model_cls._meta.label_lower}.")


You could also create a custom ``FormValidationRunner`` for your model to add extra fields and ignore others.

For example:

.. code-block:: python

    class AppointmentFormValidationRunner(FormValidationRunner):
        def __init__(self, modelform_cls: ModelForm = None, **kwargs):
            modelform_cls = modelform_cls or AppointmentForm
            extra_fieldnames = ["appt_datetime"]
            ignore_fieldnames = ["appt_close_datetime"]
            super().__init__(
                modelform_cls=modelform_cls,
                extra_formfields=extra_fieldnames,
                ignore_formfields=ignore_fieldnames,
                **kwargs,
            )


.. |pypi| image:: https://img.shields.io/pypi/v/edc-data-manager.svg
  :target: https://pypi.python.org/pypi/edc-data-manager

.. |actions| image:: https://github.com/clinicedc/edc-data-manager/actions/workflows/build.yml/badge.svg
  :target: https://github.com/clinicedc/edc-data-manager/actions/workflows/build.yml

.. |codecov| image:: https://codecov.io/gh/clinicedc/edc-data-manager/branch/develop/graph/badge.svg
  :target: https://codecov.io/gh/clinicedc/edc-data-manager

.. |downloads| image:: https://pepy.tech/badge/edc-data-manager
   :target: https://pepy.tech/project/edc-data-manager


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/clinicedc/edc-data-manager",
    "name": "edc-data-manager",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.11",
    "maintainer_email": null,
    "keywords": "django Edc, data management, CRF, clinicedc, clinical trials",
    "author": "Erik van Widenfelt",
    "author_email": "ew2789@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/5d/70/d1fad455d4f1da11e3b6ee40fc598fd2afa3fb8b7b7e13c73fc28142e40f/edc-data-manager-0.3.77.tar.gz",
    "platform": null,
    "description": "|pypi| |actions| |codecov| |downloads|\n\nedc-data-manager\n----------------\n\nData manager administrative models and classes.\n\n``edc-data-manager`` adds models and functionality to the Edc that compliment the role of the clinical trial data manager.\nThe ``Data Query`` form guides the data manager in describing missing, incomplete or incorrect participant data. The ``Data Query``\nis then made available to research staff on the participant's dashboard and administrative pages. Additionally, the data manager\ncan define ``Query Rules`` that scan the dataset for participant data that match the rule's criteria. For each match found,\n``edc-data-manager`` automatically creates a ``Data Query``.\n\nFor automated queries, those created when a ``Query Rule`` is run, ``edc-data-manager`` will re-run a ``Query Rule`` upon updates\nto the participant data. If the criteria is no longer met, the ``Data Query`` is automatically closed.\n\n\nUser Roles\n==========\n\n``edc_data_manager`` adds the ``DATA MANAGER`` and the ``DATA_QUERY`` user groups.\nMembers of the ``DATA_QUERY`` group can respond to existing data queries by completing  the \"site response\" section of the form.\nThey do not have permissions to change the criteria of the data query. Research staff responsible for submitting participant\ndata are typically given membership to the ``DATA_QUERY`` user group.\n\n\nMembers of the ``DATA MANAGER`` user group can add/change/delete any ``Data Query`` form and ``Query Rule`` form.\nData managers, those who oversee data collection but do not submit data themselves, are typically members of the ``DATA MANAGER`` user group.\n\n\nThe Data Query Model\n====================\nThe central model of ``edc_data_manager`` is the ``Data Query`` model. A ``Data Query`` is either created manually by a data manager\nor automatically when a ``Query Rule`` is run. The ``data query`` describes an issue for the attention of the research staff.\nA data query might be general, describing the issue with nothing more than a free text comment, or specific. To allow for a specific\ndata query, the ``Query Rule`` form has questions where the data manager (or ``Query Rule``) can select the relevant timepoints, form questions,\nand timing.\n\nData query status\n+++++++++++++++++\n\nThe ``Data Query`` status is split between two fields, one managed by the research staff and one by the data manager. Initially the\nresearch staff status is set to ``New`` and the data manager's status is set to ``Open``.\n\nThe available states of a ``Data Query`` are similar to those used on ticketing systems; namely, New, Open , Feedback, Resolved, Closed.\nOnly a data manager can close a data query.\n\nMembers of the ``DATA_QUERY`` group can:\n\n* Open the query -- indicating they are working on the issue. (``Open``)\n* Request feedback -- indicating they need assistance from the data manager .(``Feedback``)\n* Resolve the query -- indicating the issue is resolved. (``Resolved``)\n\nThis status field, managed by members of the ``DATA_QUERY`` group, is in a seperate section of the ``Data Query`` form.\n\nMembers of the ``DATA_MANAGER`` have their own section on the form and can:\n\n* Resolve the query (but only if the site status is also ``Resolved``)\n* Resolve with an action plan\n\nSince data managers have full permissions to the form, they can override the status set by the research staff.\n\nQuery Rules\n===========\n\nQuery Rules define criteria to be used to scan the dataset for data problems. In a query rule you can define the following:\n\n* CRF model\n* Related requisition panel name (if applicable)\n* CRF questions\n* Timepoints (visits)\n* Timing (when to run the query, e.g. 48 hours after the visit report is submitted)\n* Priority\n* Research staff contact\n* Data manager contact\n\nAs mentioned above, a ``Data Query`` can be automatically created by a ``Query Rule``. Simple ``Query Rules`` are defined using the ``Query Rule`` form.\n``Query Rules`` are run by a \"handler\". The default handler is sufficient in most cases. If not, a custom handler can be written, registered with\n``edc_data_manager``, and selected on the ``Query Rule`` form.\n\nWhen are Query Rules run?\n+++++++++++++++++++++++++\n\n* Query rules can be run as an Admin action from the QueryRule Admin page;\n* A Query rule is run when a model is modified;\n* Query rules can be scheduled if ``django-celery`` is installed.\n\nData Queries trigger action items\n+++++++++++++++++++++++++++++++++\n\nWhen a data query is created, a supporting action item is also created. As with all action items, this means an \"alert\"\nshows on the participant dashboard and users can be notified by email and/or SMS. See ``edc_action_item``.\n\n\nQueryRuleHandler -- the default rule handler\n++++++++++++++++++++++++++++++++++++++++++++\n\nFor each timepoint specified in the ``Query Rule``, the handler:\n\n* checks to see if the visit report has been submitted. If not, the rule is ignored.\n* checks if the requisition has been completed (if a requisition panel is linked to the query rule). If the requisition has not been completed, a ``Data Query`` is created immediately.\n* gathers each value specified in the list of CRF form questions and calls ``inspect_model``.\n* if ``inspect_model`` returns False, the ``Data Query`` is created or re-opened.\n* if ``inspect_model`` returns True, no data query is created or the existing ``Data Query`` is resolved.\n\nCustom rule handlers\n++++++++++++++++++++\n\nThe default rule handler, ``QueryRuleHandler``, already does a lot, but it cannot satisfy all cases. The default ``inspect_model`` method\ndoes most of the form specific work of ``QueryRuleHandler``. In the default implementation of ``inspect_model``, a blank field value is\nconsidered invalid and ``inspect_model`` returns ``False``. This may be fine if the ``Query Rule`` is just looking for just a single field value\nbut not for a combination of values. When looking for a combination of field values, a blank field value may be valid. In such cases\nyou can override the ``inspect_model`` method and specify the correct logic for the desired data condition.\n\nFor example:\n\n.. code-block:: python\n\n    # data_manager.py\n\n    from ambition_subject.constants import AWAITING_RESULTS\n    from edc_constants.constants import NOT_DONE, YES, NO\n    from edc_data_manager.handlers import QueryRuleHandler\n    from edc_data_manager.site_data_manager import site_data_manager\n\n\n    class LumbarPunctureHandlerQ13(QueryRuleHandler):\n\n        name = \"lumbar_puncture_q13\"\n        display_name = \"Lumbar Puncture (Q13, 15, 21, 23, 24)\"\n        model_name = \"ambition_subject.lumbarpuncturecsf\"\n\n        @property\n        def inspect_model(self):\n            \"\"\"Lumbar Puncture/Cerebrospinal Fluid 13, 15, 21, 23, 24.\n            \"\"\"\n            valid = False\n            if self.get_field_value(\"csf_culture\") == AWAITING_RESULTS:\n                pass\n            elif self.get_field_value(\"csf_culture\") == NOT_DONE:\n                valid = True\n            elif self.get_field_value(\"csf_culture\") == YES:\n                if (self.get_field_value(\"other_csf_culture\")\n                        and self.get_field_value(\"csf_wbc_cell_count\")\n                        and self.get_field_value(\"csf_glucose\")\n                        and self.get_field_value(\"csf_protein\")\n                        and (self.get_field_value(\"csf_cr_ag\")\n                             or self.get_field_value(\"india_ink\"))):\n                    valid = True\n            elif self.get_field_value(\"csf_culture\") == NO:\n                if (self.get_field_value(\"csf_wbc_cell_count\")\n                        and self.get_field_value(\"csf_glucose\")\n                        and self.get_field_value(\"csf_protein\")\n                        and (self.get_field_value(\"csf_cr_ag\")\n                             or self.get_field_value(\"india_ink\"))):\n                    valid = True\n            return valid\n\n    site_data_manager.register(LumbarPunctureHandlerQ13)\n\nNote the use of ``get_field_value`` method instead of directly accessing the model instance. This is not absolutely necessary but\navoids confusion by ensuring you only access fields defined in the ``Query Rule``.\n\n\nRegistering custom rule handlers\n++++++++++++++++++++++++++++++++\n\n``edc_data_manager`` has a site registry that ``autodiscovers`` module ``data_manager.py`` in the root of each app in ``INSTALLED_APPS``.\n\nFor example:\n\n.. code-block:: python\n\n    # data_manager.py\n\n    from edc_data_manager.handlers import QueryRuleHandler\n    from edc_data_manager.site_data_manager import site_data_manager\n\n\n    class MyCustomHandler(QueryRuleHandler):\n\n        name = \"my_custom_handler\"\n        display_name = \"My Custom Handler\"\n        model_name = \"my_app.somecrf\"\n\n        @property\n        def inspect_model(self):\n\n            valid = False\n\n            if self.get_field_value(\"field_one\") == 1:\n\n            ... some more code that eventually sets valid to True\n\n            return valid\n\n    site_data_manager.register(MyCustomHandler)\n\nDumping and loading a QueryRule fixture\n++++++++++++++++++++++++++++++++++++++++++\n\n.. code-block:: bash\n\n    python manage.py dumpdata edc_data_manager.queryrule --natural-foreign --natural-primary --indent 4 -o queryrule.json\n\n.. code-block:: bash\n\n    python manage.py loaddata queryrules.json\n\nUpdating query rules\n++++++++++++++++++++\n\nQuery rules can be triggered manually to run from the admin action under the `QueryRule` admin page.\n\nIf ``celery`` is enabled, the ``update_query_rules`` will try to send proccessing to the MQ.\n\nSee also ``update_query_rules``, ``update_query_rules_action``.\n\nRerun form validation\n=====================\n\nYou can use the ``FormValidationRunner`` to rerun form validation on all instances for a model.\n\nYou could do this:\n\n.. code-block:: python\n\n    runner = FormValidationRunner(modelform)\n    runner.run()\n\n\nYou could also run for every model in your EDC deployment by getting the ``ModelForm`` class\nfrom the ``admin`` registry and running ``FormValidationRunner``:\n\n.. code-block:: python\n\n    from django.apps import apps as django_apps\n    from edc_data_manager.form_validation_runners import (\n        FormValidationRunner,\n        FormValidationRunnerError,\n        get_modelform_cls,\n        )\n\n    for app_config in django_apps.get_app_configs():\n        if app_config.name.startswith(\"edc_\"):\n            continue\n        for model_cls in app_config.get_models():\n            if model_cls == Appointment:\n                continue\n            print(model_cls._meta.label_lower)\n            try:\n                modelform = get_modelform_cls(model_cls._meta.label_lower)\n            except FormValidationRunnerError as e:\n                print(e)\n            else:\n                print(modelform)\n                try:\n                    runner = FormValidationRunner(modelform)\n                except AttributeError as e:\n                    print(f\"{e}. See {model_cls._meta.label_lower}.\")\n                else:\n                    try:\n                        runner.run()\n                    except (AttributeError, FieldError) as e:\n                        print(f\"{e}. See {model_cls._meta.label_lower}.\")\n\n\nYou could also create a custom ``FormValidationRunner`` for your model to add extra fields and ignore others.\n\nFor example:\n\n.. code-block:: python\n\n    class AppointmentFormValidationRunner(FormValidationRunner):\n        def __init__(self, modelform_cls: ModelForm = None, **kwargs):\n            modelform_cls = modelform_cls or AppointmentForm\n            extra_fieldnames = [\"appt_datetime\"]\n            ignore_fieldnames = [\"appt_close_datetime\"]\n            super().__init__(\n                modelform_cls=modelform_cls,\n                extra_formfields=extra_fieldnames,\n                ignore_formfields=ignore_fieldnames,\n                **kwargs,\n            )\n\n\n.. |pypi| image:: https://img.shields.io/pypi/v/edc-data-manager.svg\n  :target: https://pypi.python.org/pypi/edc-data-manager\n\n.. |actions| image:: https://github.com/clinicedc/edc-data-manager/actions/workflows/build.yml/badge.svg\n  :target: https://github.com/clinicedc/edc-data-manager/actions/workflows/build.yml\n\n.. |codecov| image:: https://codecov.io/gh/clinicedc/edc-data-manager/branch/develop/graph/badge.svg\n  :target: https://codecov.io/gh/clinicedc/edc-data-manager\n\n.. |downloads| image:: https://pepy.tech/badge/edc-data-manager\n   :target: https://pepy.tech/project/edc-data-manager\n\n",
    "bugtrack_url": null,
    "license": "GPL license, see LICENSE",
    "summary": "Data manager administrative models and classes for clinicedc/edc projects",
    "version": "0.3.77",
    "project_urls": {
        "Homepage": "https://github.com/clinicedc/edc-data-manager"
    },
    "split_keywords": [
        "django edc",
        " data management",
        " crf",
        " clinicedc",
        " clinical trials"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "665a2d4f2364804b77284480e0c8dfad040a046391c50be988a44fc17d830e42",
                "md5": "e9db95a87abf9edd297604974fd6728a",
                "sha256": "fc4a5c7204f653c35faf4337b8ba7d18eff2d44f363159fc52d181713d478131"
            },
            "downloads": -1,
            "filename": "edc_data_manager-0.3.77-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "e9db95a87abf9edd297604974fd6728a",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.11",
            "size": 114730,
            "upload_time": "2024-03-26T04:53:49",
            "upload_time_iso_8601": "2024-03-26T04:53:49.453462Z",
            "url": "https://files.pythonhosted.org/packages/66/5a/2d4f2364804b77284480e0c8dfad040a046391c50be988a44fc17d830e42/edc_data_manager-0.3.77-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5d70d1fad455d4f1da11e3b6ee40fc598fd2afa3fb8b7b7e13c73fc28142e40f",
                "md5": "648eb52af5ce625c9ce773713f10a6ff",
                "sha256": "8f0b62981f4ee795a20e671f6f894a5ac2a0189ea248c2aea18975aaac136f52"
            },
            "downloads": -1,
            "filename": "edc-data-manager-0.3.77.tar.gz",
            "has_sig": false,
            "md5_digest": "648eb52af5ce625c9ce773713f10a6ff",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.11",
            "size": 81213,
            "upload_time": "2024-03-26T04:53:52",
            "upload_time_iso_8601": "2024-03-26T04:53:52.746833Z",
            "url": "https://files.pythonhosted.org/packages/5d/70/d1fad455d4f1da11e3b6ee40fc598fd2afa3fb8b7b7e13c73fc28142e40f/edc-data-manager-0.3.77.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-26 04:53:52",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "clinicedc",
    "github_project": "edc-data-manager",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "lcname": "edc-data-manager"
}
        
Elapsed time: 0.22744s