polar-python 0.0.1__tar.gz → 0.0.2__tar.gz
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.
- {polar_python-0.0.1 → polar_python-0.0.2}/PKG-INFO +5 -19
- {polar_python-0.0.1 → polar_python-0.0.2}/README.md +4 -18
- {polar_python-0.0.1 → polar_python-0.0.2}/polar_python.egg-info/PKG-INFO +5 -19
- {polar_python-0.0.1 → polar_python-0.0.2}/setup.py +1 -1
- {polar_python-0.0.1 → polar_python-0.0.2}/LICENSE +0 -0
- {polar_python-0.0.1 → polar_python-0.0.2}/polar_python/__init__.py +0 -0
- {polar_python-0.0.1 → polar_python-0.0.2}/polar_python/constants.py +0 -0
- {polar_python-0.0.1 → polar_python-0.0.2}/polar_python/device.py +0 -0
- {polar_python-0.0.1 → polar_python-0.0.2}/polar_python/exceptions.py +0 -0
- {polar_python-0.0.1 → polar_python-0.0.2}/polar_python/utils.py +0 -0
- {polar_python-0.0.1 → polar_python-0.0.2}/polar_python.egg-info/SOURCES.txt +0 -0
- {polar_python-0.0.1 → polar_python-0.0.2}/polar_python.egg-info/dependency_links.txt +0 -0
- {polar_python-0.0.1 → polar_python-0.0.2}/polar_python.egg-info/requires.txt +0 -0
- {polar_python-0.0.1 → polar_python-0.0.2}/polar_python.egg-info/top_level.txt +0 -0
- {polar_python-0.0.1 → polar_python-0.0.2}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: polar-python
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.2
|
|
4
4
|
Summary: polar-python is a Python library for connecting to Polar devices via Bluetooth Low Energy (BLE) using Bleak. It allows querying device capabilities (e.g., ECG, ACC, PPG), exploring configurable options, and streaming parsed data through callback functions.
|
|
5
5
|
Home-page: https://github.com/zHElEARN/polar-python
|
|
6
6
|
Author: Zhe_Learn
|
|
@@ -30,25 +30,11 @@ Requires-Dist: bleak
|
|
|
30
30
|
|
|
31
31
|
## Installation
|
|
32
32
|
|
|
33
|
-
|
|
33
|
+
You can install `polar-python` from PyPI using pip:
|
|
34
34
|
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
git clone https://github.com/yourusername/polar-python.git
|
|
39
|
-
```
|
|
40
|
-
|
|
41
|
-
2. Navigate to the project directory:
|
|
42
|
-
|
|
43
|
-
```sh
|
|
44
|
-
cd polar-python
|
|
45
|
-
```
|
|
46
|
-
|
|
47
|
-
3. Install the package using pip:
|
|
48
|
-
|
|
49
|
-
```sh
|
|
50
|
-
pip install .
|
|
51
|
-
```
|
|
35
|
+
```sh
|
|
36
|
+
pip install polar-python
|
|
37
|
+
```
|
|
52
38
|
|
|
53
39
|
## Usage
|
|
54
40
|
|
|
@@ -11,25 +11,11 @@
|
|
|
11
11
|
|
|
12
12
|
## Installation
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
You can install `polar-python` from PyPI using pip:
|
|
15
15
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
git clone https://github.com/yourusername/polar-python.git
|
|
20
|
-
```
|
|
21
|
-
|
|
22
|
-
2. Navigate to the project directory:
|
|
23
|
-
|
|
24
|
-
```sh
|
|
25
|
-
cd polar-python
|
|
26
|
-
```
|
|
27
|
-
|
|
28
|
-
3. Install the package using pip:
|
|
29
|
-
|
|
30
|
-
```sh
|
|
31
|
-
pip install .
|
|
32
|
-
```
|
|
16
|
+
```sh
|
|
17
|
+
pip install polar-python
|
|
18
|
+
```
|
|
33
19
|
|
|
34
20
|
## Usage
|
|
35
21
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: polar-python
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.2
|
|
4
4
|
Summary: polar-python is a Python library for connecting to Polar devices via Bluetooth Low Energy (BLE) using Bleak. It allows querying device capabilities (e.g., ECG, ACC, PPG), exploring configurable options, and streaming parsed data through callback functions.
|
|
5
5
|
Home-page: https://github.com/zHElEARN/polar-python
|
|
6
6
|
Author: Zhe_Learn
|
|
@@ -30,25 +30,11 @@ Requires-Dist: bleak
|
|
|
30
30
|
|
|
31
31
|
## Installation
|
|
32
32
|
|
|
33
|
-
|
|
33
|
+
You can install `polar-python` from PyPI using pip:
|
|
34
34
|
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
git clone https://github.com/yourusername/polar-python.git
|
|
39
|
-
```
|
|
40
|
-
|
|
41
|
-
2. Navigate to the project directory:
|
|
42
|
-
|
|
43
|
-
```sh
|
|
44
|
-
cd polar-python
|
|
45
|
-
```
|
|
46
|
-
|
|
47
|
-
3. Install the package using pip:
|
|
48
|
-
|
|
49
|
-
```sh
|
|
50
|
-
pip install .
|
|
51
|
-
```
|
|
35
|
+
```sh
|
|
36
|
+
pip install polar-python
|
|
37
|
+
```
|
|
52
38
|
|
|
53
39
|
## Usage
|
|
54
40
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|