Skip to content

Commit

Permalink
feat: add Extractor to package
Browse files Browse the repository at this point in the history
  • Loading branch information
martinkelly23 committed Apr 7, 2024
1 parent a443c74 commit 2d9832b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ pip install apple-health-extractor

### Usage
```python
from apple_health_extractor import Extractor
from extractor import Extractor

# Initialize the extractor with the path to the XML file
extractor = Extractor("path/to/health_data.xml")
Expand Down
1 change: 1 addition & 0 deletions extractor/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from extractor.extractor import Extractor
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "apple-health-extractor"
version = "0.1.2"
version = "0.1.5"
description = "This library provides functionality to parse and extract data from the XML exports of Apple Health app, enabling users to analyze and utilize their health data conveniently."
authors = ["martinkelly23 <[email protected]>"]
license = "MIT"
Expand All @@ -16,7 +16,7 @@ packages = [
]

[tool.poetry.dependencies]
python = "^3.11"
python = "^3.8"
pytest = "^8.1.1"
black = "^24.3.0"
xmltodict = "^0.13.0"
Expand Down

0 comments on commit 2d9832b

Please sign in to comment.