glucose360 0.0.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- glucose360/__init__.py +1 -0
- glucose360/events.py +680 -0
- glucose360/features.py +1042 -0
- glucose360/plots.py +494 -0
- glucose360/preprocessing.py +558 -0
- glucose360-0.0.1.dist-info/LICENSE +674 -0
- glucose360-0.0.1.dist-info/METADATA +34 -0
- glucose360-0.0.1.dist-info/RECORD +10 -0
- glucose360-0.0.1.dist-info/WHEEL +5 -0
- glucose360-0.0.1.dist-info/top_level.txt +1 -0
@@ -0,0 +1,34 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: glucose360
|
3
|
+
Version: 0.0.1
|
4
|
+
Summary: Python package by Stanford University's Snyder Lab for holistic continuous glucose monitoring (CGM) analysis for both patients and researchers.
|
5
|
+
Author-email: Dhruv Aron <dhruv.aron@gmail.com>, "Ben W. Ehlert" <behlert@stanford.edu>
|
6
|
+
Project-URL: Homepage, https://github.com/vurhd2/Python-CGM-Package
|
7
|
+
Project-URL: Issues, https://github.com/vurhd2/Python-CGM-Package/issues
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
9
|
+
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
10
|
+
Classifier: Operating System :: OS Independent
|
11
|
+
Requires-Python: >=3.12
|
12
|
+
Description-Content-Type: text/markdown
|
13
|
+
License-File: LICENSE
|
14
|
+
|
15
|
+
# Python-CGM-Package
|
16
|
+
|
17
|
+
**Installation**:
|
18
|
+
1. Download the contents of the repository into a directory (either by using `git clone` or downloading all the files through a .zip file)
|
19
|
+
2. Navigate to this directory in a terminal
|
20
|
+
3. Install necessary languages and libraries:
|
21
|
+
1. Ensure some version of Python 3 is located on your machine (does not need to be the latest version)
|
22
|
+
2. run `pip install -r requirements.txt` in the terminal
|
23
|
+
3. run `pip install -r app_requirements.txt` in the terminal **solely if** you wish to use the web application functionality too
|
24
|
+
4. That's it for installation!
|
25
|
+
|
26
|
+
**Getting Started**:
|
27
|
+
- Using the package directly:
|
28
|
+
- in the file(s) you want to use the package in, import the four package modules: preprocessing.py, features.py, events.py, and plots.py
|
29
|
+
- see [guide.ipynb](./guide.ipynb) for a brief notebook guide on all the functions that the package currently provides, as well as how to use them properly
|
30
|
+
- Using the web application:
|
31
|
+
- Run `shiny run` in the terminal of the directory that houses `app.py`
|
32
|
+
- See [](./web_app_walkthrough.mp4) for a more detailed walkthrough of the application's features
|
33
|
+
|
34
|
+
Thanks for using the package!
|
@@ -0,0 +1,10 @@
|
|
1
|
+
glucose360/__init__.py,sha256=25P_U6-DSd2l7XJO3WG6oB6IzhMslP8f3UilZJcOcrM,58
|
2
|
+
glucose360/events.py,sha256=4AkI832pxzacNuPh-wVquA1coHwqWqgMI5_iVu9VTn4,29658
|
3
|
+
glucose360/features.py,sha256=FXWIlUfHxMZiJSg8YSC0SJsYjJJxJpjHk1wpURG8u0Y,42862
|
4
|
+
glucose360/plots.py,sha256=AeliSo19jE8iQtF9094nW0Cf4mJHuxY7ewSSgZ78L7o,25126
|
5
|
+
glucose360/preprocessing.py,sha256=rOtw5ha9INmFAua15bQDsPyn5jYY0iab2W-vdOfF8Hc,27744
|
6
|
+
glucose360-0.0.1.dist-info/LICENSE,sha256=gcuuhKKc5-dwvyvHsXjlC9oM6N5gZ6umYbC8ewW1Yvg,35821
|
7
|
+
glucose360-0.0.1.dist-info/METADATA,sha256=ezE_qpweK3iHrq7H3E7boTamoerynkCaUkG7uLoaXZM,1975
|
8
|
+
glucose360-0.0.1.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
9
|
+
glucose360-0.0.1.dist-info/top_level.txt,sha256=P4CyAULGUSEeUfKW6j03ifp4uAHPJiA7-lgKjqUY-kw,11
|
10
|
+
glucose360-0.0.1.dist-info/RECORD,,
|
@@ -0,0 +1 @@
|
|
1
|
+
glucose360
|