iglu-r


Nameiglu-r JSON
Version 0.0.7 PyPI version JSON
download
home_page
SummaryPython wrapper of R package `iglu` for continuous glucose monitoring data analysis. Wraps the R functions, thus making them accessible in Python.
upload_time2023-11-28 16:22:12
maintainer
docs_urlNone
authorLizzie Chun, Nathaniel J. Fernandes, Irina Gaynanova
requires_python
license
keywords iglu continuous glucose monitoring analysis software diabetes
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ## Purpose
We are releasing a Python wrapper (_[iglu-r](https://pypi.org/project/iglu-r/)_) for the [iglu R package](https://irinagain.github.io/iglu/) (_iglu_), since a large number of developers and diabetes researchers program primarily in Python. We hope this abstraction makes development with iglu even easier and more user-friendly.

Note that _iglu_ is the "source of truth" and all _iglu-r_ functions simply call the corresponding _iglu_ function internally. In other words, **there is no new functionality in iglu-py that is not in iglu-r** (see [Functionality](#functionality) below for more details).

## Citation
Please cite **both** _iglu-r_ and the original _iglu_ package.

> Chun E, Fernandes NJ, Gaynanova I (2023). iglu-r: Interpreting Glucose Data from Continuous Glucose Monitors. Python package version 1.0.0.

> Broll S, Buchanan D, Chun E, Muschelli J, Fernandes N, Seo J, Shih J, Urbanek J, Schwenck J, Gaynanova I (2021). iglu: Interpreting Glucose Data from Continuous Glucose Monitors. R package version 3.0.0.

## Getting Started
### Installation
```
pip install iglu-r
```

This will automatically install all the necessary Python dependencies for you.

There is *no need* to download R, _iglu_, or any other CRAN package directly. Version 3.5.0 of _iglu_ comes bundled with _iglu-r_ and will be installed automatically on the first runtime.

> ⚠️ If you already have _iglu_ installed on your machine, _iglu-r_ will use that version of _iglu_ internally instead of Version 3.5.0.  
>
> See [Changing iglu-r Version](#changing-iglu-r-version) below to change to your desired version.

### How to Use
```
import iglu_r
import pandas as pd

# 1. Load pandas DF through any method, not exclusive to CSV
# DF must have 3 columns:
# > id: string or int
# > time: POSIX.ct()
# > gl: numeric type

df = pd.read_csv('path_to_file.csv')

# 2. Run metrics
# The output is a pandas DF.

iglu.mean_glu(df)

iglu.mage(df) # uses default arguments in iglu-r
iglu.mage(df, short_ma = 3, long_ma = 35) # overrides defaults

# 3. Load example data
example_data: pd.DataFrame = iglu.example_data_1_subject

iglu.mage(example_data)

# 4. Launch interactive GUI
iglu.iglu_shiny()
```

See [Functionality](#functionality) below for the list of Python functions and data in _iglu-r_. See _[iglu Function Documentation](https://irinagain.github.io/iglu/reference/index.html)_ to know the acceptable arguments & types for the implemented _iglu-r_ functions.

When reading the aforementioned _iglu_ documentation & coding in Python, **always use Python types** not R ones. Only use types in the Python column of the table below.

|      Python      |     R      |
|:----------------:|:----------:|
|    True/False    | TRUE/FALSE |
| Pandas DataFrame |   tibble   |
| Pandas DataFrame | Data Frame |
|       str        | character  |
|    int\|float    |  numeric   |
|       list       |   vector   |

### Changing iglu-r Version
By default, the R-version [iglu v3.5.0](https://github.com/irinagain/iglu/blob/master/NEWS.md) comes embedded in iglu-py. However, you can change this version if you desire.

Follow these simple steps below.

1. **Uninstall Previous _iglu_ Version**: run the following code in Python to delete the previous version of _iglu_

```
import iglu_r

iglu_r.uninstall_iglu()
```

2. **Install a new version of _iglu_**:  
    * Way 1: Download most recent version released on [CRAN](https://cran.r-project.org/web/packages/iglu/index.html)
    ```
    import iglu_r

    iglu_r.install_iglu(name = 'iglu', name_type = 'CRAN')
    ```
    * Way 2: Get a TAR GZIP file of the desired _iglu_ version from [CRAN](https://cran.r-project.org/web/packages/iglu/) or make one by tar-gzipping the [iglu-r GitHub repo](https://github.com/irinagain/iglu) (the GitHub is slightly ahead of official-release on CRAN). Then do:
    ```
    import iglu_r

    iglu_r.install_iglu(name = 'absolute/path/to/file', name_type = 'absolute')
    ```

3. **Update Metrics, If Needed:** You only need to edit the _iglu-r_ source code in Case 2 & 3 below.
    * CASE 1: A metric in the new _iglu_ version has different default parameters from the old _iglu_ version
        * **No change to _iglu-r_ source code needed.** Simply use the _iglu-r_ function as normal, passing in the required parameters and any optional ones as well.
    
    * CASE 2: A metric in the new _iglu_ version has different non-default/required parameters
        * Add the parameters to the function definition in `package-path/iglu/metrics.py`
        * Then, in the `package-path` directory, run in the terminal
        ```
        cd iglu_r/package-path/dir
        pip uninstall iglu_r
        pip install . 
        ```

    * CASE 3: The new `iglu-r` version has a metric not in previous iglu version:
        1. add the metric to the `package-path/iglu/metrics.py` file following the examples already there (note: don't add "default parameters" to the function definition - instead, use `**kwargs` in Python to prevent overriding those defaults specified in the R package)
        2. import the metric into the `package-path/iglu/__init__.py` file

## Functionality
_iglu-r_ allows most functionality in _iglu_ including all metrics, data processing functions, and an interactive GUI.

However, plotting programmatically is unavailable. Please use the Shiny app to generate and download plots in _iglu-r_ or the original _iglu_ R package. <u>**(There is no plan to support plotting programmatically in iglu-py due to the complexity of the task.)**</u>

See the table below to understand what is accessible in iglu Python vs. iglu R.

| Feature         |                                        Python                                        |                                            R                                            | Comment |
|-----------------|:------------------------------------------------------------------------------------:|:---------------------------------------------------------------------------------------:|:-------:|
| Interactive GUI |                                  iglu.iglu_shiny()                                   |                                   iglu::iglu_shiny()                                    |         |
| All Plots       |                                          ❌                                           |                                            ✅                                            |         |
| Example Data    | iglu.example_data_X_subject<br />iglu.example_meals_hall<br />iglu.example_data_hall | iglu::example_data_X_subject<br />iglu::example_meals_hall<br />iglu::example_data_hall |  X=1,5  |


| Metrics                           |           Python           |              R               | Comment |
|-----------------------------------|:--------------------------:|:----------------------------:|:-------:|
| CGMS2DayByDay                     |             ❌              |    iglu::CGMS2DayByDay()     |         |
| Above %                           |    iglu.above_percent()    |    iglu::above_percent()     |         |
| Active %                          |   iglu.active_percent()    |    iglu::active_percent()    |         |
| ADRR                              |        iglu.adrr()         |         iglu::adrr()         |         |
| AGP                               |         iglu.agp()         |         iglu::agp()          |         |
| AGP Metrics                       |     iglu.agp_metrics()     |     iglu::agp_metrics()      |         |
| All Metrics                       |     iglu.all_metrics()     |      iglu::all_metrics       |         |
| AUC                               |         iglu.auc()         |         iglu::auc()          |         |
| Below %                           |    iglu.below_percent()    |    iglu::below_percent()     |         |
| Calculate Sleep Wake              |             ❌              | iglu::calculate_sleep_wake() |         |
| COGI                              |        iglu.cogi()         |         iglu::cogi()         |         |
| CONGA                             |        iglu.conga()        |        iglu::conga()         |         |
| Coefficient of Variation (CV)     |       iglu.cv_glu()        |        iglu::cv_glu()        |         |
| Coefficient of Variation subtypes |     iglu.cv_measures()     |     iglu::cv_measures()      |         |
| eA1C                              |        iglu.ea1c()         |         iglu::ea1c()         |         |
| Episode Calculation Profile       |   iglu.epicalc_profile()   |   iglu::epicalc_profile()    |         |
| Episode Calculation               | iglu.episode_calculation() | iglu::episode_calculation()  |         |
| GMI                               |         iglu.gmi()         |         iglu::gmi()          |         |
| GRADE                             |        iglu.grade()        |        iglu::grade()         |         |
| Grade Eugly                       |     iglu.grade_eugly()     |     iglu::grade_eugly()      |         |
| Grade Hyper                       |     iglu.grade_hyper()     |     iglu::grade_hyper()      |         |
| Grade Hypo                        |     iglu.grade_hypo()      |      iglu::grade_hypo()      |         |
| GRI                               |         iglu.gri()         |         iglu::gri()          |         |
| GVP                               |         iglu.gvp()         |         iglu::gvp()          |         |
| HBGI                              |        iglu.hbgi()         |         iglu::hbgi()         |         |
| Hyperglucemia Index               |     iglu.hyper_index()     |     iglu::hyper_index()      |         |
| Hypoglycemia Index                |     iglu.hypo_index()      |      iglu::hypo_index()      |         |
| Index of Glycemic Control         |         iglu.igc()         |         iglu::igc()          |         |
| % in target range                 |  iglu.in_range_percent()   |   iglu::in_range_percent()   |         |
| IQR                               |       iglu.iqr_glu()       |       iglu::iqr_glu()        |         |
| J-Index                           |       iglu.j_index()       |       iglu::j_index()        |         |
| LBGI                              |        iglu.lbgi()         |         iglu::lbgi()         |         |
| M-Value                           |       iglu.m_value()       |       iglu::m_value()        |         |
| MAD                               |       iglu.mad_glu()       |       iglu::mad_glu()        |         |
| MAG                               |         iglu.mag()         |         iglu::mag()          |         |
| MAGE                              |        iglu.mage()         |         iglu::mage()         |         |
| Meal Metrics                      |          iglu.()           |     iglu::meal_metrics()     |         |
| Mean                              |      iglu.mean_glu()       |       iglu::mean_glu()       |         |
| Median                            |     iglu.median_glu()      |      iglu::median_glu()      |         |
| Metrics Heatmap                   |             ❌              |   iglu::metrics_heatmap()    |         |
| MODD                              |        iglu.modd()         |         iglu::modd()         |         |
| PGS                               |             ❌              |         iglu::pgs()          |         |
| Process Data                      |    iglu.process_data()     |     iglu::process_data()     |         |
| Quantile                          |    iglu.quantile_glu()     |     iglu::quantile_glu()     |         |
| Range                             |      iglu.range_glu()      |      iglu::range_glu()       |         |
| Read Raw Data                     |    iglu.read_raw_data()    |    iglu::read_raw_data()     |         |
| ROC                               |         iglu.roc()         |         iglu::roc()          |         |
| SD                                |       iglu.sd_glu()        |        iglu::sd_glu()        |         |
| SD  Measures                      |     iglu.sd_measures()     |     iglu::sd_measures()      |         |
| SD  ROC                           |       iglu.sd_roc()        |        iglu::sd_glu()        |         |
| Summary                           |     iglu.summary_glu()     |     iglu::summary_glu()      |         |

## License Agreements
1. By using this package, you agree to the license agreement of the [R version of iglu](https://irinagain.github.io/iglu/), which is the GPL-2.

2. By using the data included in this package, you consent to the following User Agreement.

> Use of the T1D Exchange publicly-available data requires that you include the following attribution and disclaimer in any publication, presentation or communication resulting from use of these data:
> 
> The source of the data is the T1D Exchange, but the analyses, content and conclusions presented herein are solely the responsibility of the authors and have not been reviewed or approved by the T1D Exchange.
> 
> In addition, the T1D Exchange should be notified via email (publicdatasetuse@t1dexchange.org) when a manuscript (send title) or abstract (send title and name of meeting) reports T1D Exchange data or analyses of the data. Please provide notification at the time of submission and again at time of acceptance.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "iglu-r",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "iglu,Continuous Glucose Monitoring analysis software,diabetes",
    "author": "Lizzie Chun, Nathaniel J. Fernandes, Irina Gaynanova",
    "author_email": "lizzie_chun1@tamu.edu, njfernandes24@tamu.edu, irinagn@umich.edu",
    "download_url": "https://files.pythonhosted.org/packages/f0/a2/9ce32d4814544e93b623100a222ae6f7d098cdad82702117640eed406aa1/iglu-r-0.0.7.tar.gz",
    "platform": null,
    "description": "## Purpose\nWe are releasing a Python wrapper (_[iglu-r](https://pypi.org/project/iglu-r/)_) for the [iglu R package](https://irinagain.github.io/iglu/) (_iglu_), since a large number of developers and diabetes researchers program primarily in Python. We hope this abstraction makes development with iglu even easier and more user-friendly.\n\nNote that _iglu_ is the \"source of truth\" and all _iglu-r_ functions simply call the corresponding _iglu_ function internally. In other words, **there is no new functionality in iglu-py that is not in iglu-r** (see [Functionality](#functionality) below for more details).\n\n## Citation\nPlease cite **both** _iglu-r_ and the original _iglu_ package.\n\n> Chun E, Fernandes NJ, Gaynanova I (2023). iglu-r: Interpreting Glucose Data from Continuous Glucose Monitors. Python package version 1.0.0.\n\n> Broll S, Buchanan D, Chun E, Muschelli J, Fernandes N, Seo J, Shih J, Urbanek J, Schwenck J, Gaynanova I (2021). iglu: Interpreting Glucose Data from Continuous Glucose Monitors. R package version 3.0.0.\n\n## Getting Started\n### Installation\n```\npip install iglu-r\n```\n\nThis will automatically install all the necessary Python dependencies for you.\n\nThere is *no need* to download R, _iglu_, or any other CRAN package directly. Version 3.5.0 of _iglu_ comes bundled with _iglu-r_ and will be installed automatically on the first runtime.\n\n> \u26a0\ufe0f If you already have _iglu_ installed on your machine, _iglu-r_ will use that version of _iglu_ internally instead of Version 3.5.0.  \n>\n> See [Changing iglu-r Version](#changing-iglu-r-version) below to change to your desired version.\n\n### How to Use\n```\nimport iglu_r\nimport pandas as pd\n\n# 1. Load pandas DF through any method, not exclusive to CSV\n# DF must have 3 columns:\n# > id: string or int\n# > time: POSIX.ct()\n# > gl: numeric type\n\ndf = pd.read_csv('path_to_file.csv')\n\n# 2. Run metrics\n# The output is a pandas DF.\n\niglu.mean_glu(df)\n\niglu.mage(df) # uses default arguments in iglu-r\niglu.mage(df, short_ma = 3, long_ma = 35) # overrides defaults\n\n# 3. Load example data\nexample_data: pd.DataFrame = iglu.example_data_1_subject\n\niglu.mage(example_data)\n\n# 4. Launch interactive GUI\niglu.iglu_shiny()\n```\n\nSee [Functionality](#functionality) below for the list of Python functions and data in _iglu-r_. See _[iglu Function Documentation](https://irinagain.github.io/iglu/reference/index.html)_ to know the acceptable arguments & types for the implemented _iglu-r_ functions.\n\nWhen reading the aforementioned _iglu_ documentation & coding in Python, **always use Python types** not R ones. Only use types in the Python column of the table below.\n\n|      Python      |     R      |\n|:----------------:|:----------:|\n|    True/False    | TRUE/FALSE |\n| Pandas DataFrame |   tibble   |\n| Pandas DataFrame | Data Frame |\n|       str        | character  |\n|    int\\|float    |  numeric   |\n|       list       |   vector   |\n\n### Changing iglu-r Version\nBy default, the R-version [iglu v3.5.0](https://github.com/irinagain/iglu/blob/master/NEWS.md) comes embedded in iglu-py. However, you can change this version if you desire.\n\nFollow these simple steps below.\n\n1. **Uninstall Previous _iglu_ Version**: run the following code in Python to delete the previous version of _iglu_\n\n```\nimport iglu_r\n\niglu_r.uninstall_iglu()\n```\n\n2. **Install a new version of _iglu_**:  \n    * Way 1: Download most recent version released on [CRAN](https://cran.r-project.org/web/packages/iglu/index.html)\n    ```\n    import iglu_r\n\n    iglu_r.install_iglu(name = 'iglu', name_type = 'CRAN')\n    ```\n    * Way 2: Get a TAR GZIP file of the desired _iglu_ version from [CRAN](https://cran.r-project.org/web/packages/iglu/) or make one by tar-gzipping the [iglu-r GitHub repo](https://github.com/irinagain/iglu) (the GitHub is slightly ahead of official-release on CRAN). Then do:\n    ```\n    import iglu_r\n\n    iglu_r.install_iglu(name = 'absolute/path/to/file', name_type = 'absolute')\n    ```\n\n3. **Update Metrics, If Needed:** You only need to edit the _iglu-r_ source code in Case 2 & 3 below.\n    * CASE 1: A metric in the new _iglu_ version has different default parameters from the old _iglu_ version\n        * **No change to _iglu-r_ source code needed.** Simply use the _iglu-r_ function as normal, passing in the required parameters and any optional ones as well.\n    \n    * CASE 2: A metric in the new _iglu_ version has different non-default/required parameters\n        * Add the parameters to the function definition in `package-path/iglu/metrics.py`\n        * Then, in the `package-path` directory, run in the terminal\n        ```\n        cd iglu_r/package-path/dir\n        pip uninstall iglu_r\n        pip install . \n        ```\n\n    * CASE 3: The new `iglu-r` version has a metric not in previous iglu version:\n        1. add the metric to the `package-path/iglu/metrics.py` file following the examples already there (note: don't add \"default parameters\" to the function definition - instead, use `**kwargs` in Python to prevent overriding those defaults specified in the R package)\n        2. import the metric into the `package-path/iglu/__init__.py` file\n\n## Functionality\n_iglu-r_ allows most functionality in _iglu_ including all metrics, data processing functions, and an interactive GUI.\n\nHowever, plotting programmatically is unavailable. Please use the Shiny app to generate and download plots in _iglu-r_ or the original _iglu_ R package. <u>**(There is no plan to support plotting programmatically in iglu-py due to the complexity of the task.)**</u>\n\nSee the table below to understand what is accessible in iglu Python vs. iglu R.\n\n| Feature         |                                        Python                                        |                                            R                                            | Comment |\n|-----------------|:------------------------------------------------------------------------------------:|:---------------------------------------------------------------------------------------:|:-------:|\n| Interactive GUI |                                  iglu.iglu_shiny()                                   |                                   iglu::iglu_shiny()                                    |         |\n| All Plots       |                                          \u274c                                           |                                            \u2705                                            |         |\n| Example Data    | iglu.example_data_X_subject<br />iglu.example_meals_hall<br />iglu.example_data_hall | iglu::example_data_X_subject<br />iglu::example_meals_hall<br />iglu::example_data_hall |  X=1,5  |\n\n\n| Metrics                           |           Python           |              R               | Comment |\n|-----------------------------------|:--------------------------:|:----------------------------:|:-------:|\n| CGMS2DayByDay                     |             \u274c              |    iglu::CGMS2DayByDay()     |         |\n| Above %                           |    iglu.above_percent()    |    iglu::above_percent()     |         |\n| Active %                          |   iglu.active_percent()    |    iglu::active_percent()    |         |\n| ADRR                              |        iglu.adrr()         |         iglu::adrr()         |         |\n| AGP                               |         iglu.agp()         |         iglu::agp()          |         |\n| AGP Metrics                       |     iglu.agp_metrics()     |     iglu::agp_metrics()      |         |\n| All Metrics                       |     iglu.all_metrics()     |      iglu::all_metrics       |         |\n| AUC                               |         iglu.auc()         |         iglu::auc()          |         |\n| Below %                           |    iglu.below_percent()    |    iglu::below_percent()     |         |\n| Calculate Sleep Wake              |             \u274c              | iglu::calculate_sleep_wake() |         |\n| COGI                              |        iglu.cogi()         |         iglu::cogi()         |         |\n| CONGA                             |        iglu.conga()        |        iglu::conga()         |         |\n| Coefficient of Variation (CV)     |       iglu.cv_glu()        |        iglu::cv_glu()        |         |\n| Coefficient of Variation subtypes |     iglu.cv_measures()     |     iglu::cv_measures()      |         |\n| eA1C                              |        iglu.ea1c()         |         iglu::ea1c()         |         |\n| Episode Calculation Profile       |   iglu.epicalc_profile()   |   iglu::epicalc_profile()    |         |\n| Episode Calculation               | iglu.episode_calculation() | iglu::episode_calculation()  |         |\n| GMI                               |         iglu.gmi()         |         iglu::gmi()          |         |\n| GRADE                             |        iglu.grade()        |        iglu::grade()         |         |\n| Grade Eugly                       |     iglu.grade_eugly()     |     iglu::grade_eugly()      |         |\n| Grade Hyper                       |     iglu.grade_hyper()     |     iglu::grade_hyper()      |         |\n| Grade Hypo                        |     iglu.grade_hypo()      |      iglu::grade_hypo()      |         |\n| GRI                               |         iglu.gri()         |         iglu::gri()          |         |\n| GVP                               |         iglu.gvp()         |         iglu::gvp()          |         |\n| HBGI                              |        iglu.hbgi()         |         iglu::hbgi()         |         |\n| Hyperglucemia Index               |     iglu.hyper_index()     |     iglu::hyper_index()      |         |\n| Hypoglycemia Index                |     iglu.hypo_index()      |      iglu::hypo_index()      |         |\n| Index of Glycemic Control         |         iglu.igc()         |         iglu::igc()          |         |\n| % in target range                 |  iglu.in_range_percent()   |   iglu::in_range_percent()   |         |\n| IQR                               |       iglu.iqr_glu()       |       iglu::iqr_glu()        |         |\n| J-Index                           |       iglu.j_index()       |       iglu::j_index()        |         |\n| LBGI                              |        iglu.lbgi()         |         iglu::lbgi()         |         |\n| M-Value                           |       iglu.m_value()       |       iglu::m_value()        |         |\n| MAD                               |       iglu.mad_glu()       |       iglu::mad_glu()        |         |\n| MAG                               |         iglu.mag()         |         iglu::mag()          |         |\n| MAGE                              |        iglu.mage()         |         iglu::mage()         |         |\n| Meal Metrics                      |          iglu.()           |     iglu::meal_metrics()     |         |\n| Mean                              |      iglu.mean_glu()       |       iglu::mean_glu()       |         |\n| Median                            |     iglu.median_glu()      |      iglu::median_glu()      |         |\n| Metrics Heatmap                   |             \u274c              |   iglu::metrics_heatmap()    |         |\n| MODD                              |        iglu.modd()         |         iglu::modd()         |         |\n| PGS                               |             \u274c              |         iglu::pgs()          |         |\n| Process Data                      |    iglu.process_data()     |     iglu::process_data()     |         |\n| Quantile                          |    iglu.quantile_glu()     |     iglu::quantile_glu()     |         |\n| Range                             |      iglu.range_glu()      |      iglu::range_glu()       |         |\n| Read Raw Data                     |    iglu.read_raw_data()    |    iglu::read_raw_data()     |         |\n| ROC                               |         iglu.roc()         |         iglu::roc()          |         |\n| SD                                |       iglu.sd_glu()        |        iglu::sd_glu()        |         |\n| SD  Measures                      |     iglu.sd_measures()     |     iglu::sd_measures()      |         |\n| SD  ROC                           |       iglu.sd_roc()        |        iglu::sd_glu()        |         |\n| Summary                           |     iglu.summary_glu()     |     iglu::summary_glu()      |         |\n\n## License Agreements\n1. By using this package, you agree to the license agreement of the [R version of iglu](https://irinagain.github.io/iglu/), which is the GPL-2.\n\n2. By using the data included in this package, you consent to the following User Agreement.\n\n> Use of the T1D Exchange publicly-available data requires that you include the following attribution and disclaimer in any publication, presentation or communication resulting from use of these data:\n> \n> The source of the data is the T1D Exchange, but the analyses, content and conclusions presented herein are solely the responsibility of the authors and have not been reviewed or approved by the T1D Exchange.\n> \n> In addition, the T1D Exchange should be notified via email (publicdatasetuse@t1dexchange.org) when a manuscript (send title) or abstract (send title and name of meeting) reports T1D Exchange data or analyses of the data. Please provide notification at the time of submission and again at time of acceptance.\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Python wrapper of R package `iglu` for continuous glucose monitoring data analysis. Wraps the R functions, thus making them accessible in Python.",
    "version": "0.0.7",
    "project_urls": null,
    "split_keywords": [
        "iglu",
        "continuous glucose monitoring analysis software",
        "diabetes"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "97d23f00b9e600de49238d066a355489e759cbd99f62dc037d319673a1e687ed",
                "md5": "93d61031a10343a9025fac01c98fef51",
                "sha256": "391654676593256719d73ea834bfc8ba6340abcb0659a047f22e057243c78b15"
            },
            "downloads": -1,
            "filename": "iglu_r-0.0.7-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "93d61031a10343a9025fac01c98fef51",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 3757994,
            "upload_time": "2023-11-28T16:22:08",
            "upload_time_iso_8601": "2023-11-28T16:22:08.190636Z",
            "url": "https://files.pythonhosted.org/packages/97/d2/3f00b9e600de49238d066a355489e759cbd99f62dc037d319673a1e687ed/iglu_r-0.0.7-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f0a29ce32d4814544e93b623100a222ae6f7d098cdad82702117640eed406aa1",
                "md5": "40d653cb6e639b2c0047b7eec7ebe5d3",
                "sha256": "c2465f7ca7ba9e09ecf0f6bcb11e6811e583d7d211cb90df6fed943c30fba5ef"
            },
            "downloads": -1,
            "filename": "iglu-r-0.0.7.tar.gz",
            "has_sig": false,
            "md5_digest": "40d653cb6e639b2c0047b7eec7ebe5d3",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 3751051,
            "upload_time": "2023-11-28T16:22:12",
            "upload_time_iso_8601": "2023-11-28T16:22:12.678877Z",
            "url": "https://files.pythonhosted.org/packages/f0/a2/9ce32d4814544e93b623100a222ae6f7d098cdad82702117640eed406aa1/iglu-r-0.0.7.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-28 16:22:12",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "iglu-r"
}
        
Elapsed time: 0.39580s