Skip to content

Commit

Permalink
update urls
Browse files Browse the repository at this point in the history
  • Loading branch information
purarue committed Oct 24, 2024
1 parent 351e28e commit 9624c4e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ library to parse:

- JSON export from activitywatch app for your phone
- JSON export from activitywatch app for your computer
- CSV files from my aw-window fork [(window_watcher)](https://github.com/seanbreckenridge/aw-watcher-window)
- CSV files from my aw-window fork [(window_watcher)](https://github.com/purarue/aw-watcher-window)

To get those, go to the [raw data page](https://docs.activitywatch.net/en/latest/features/exporting-data.html) and download the JSON dump. That is what this takes as input

Expand All @@ -15,7 +15,7 @@ Requires `python3.7+`
To install with pip, run:

```
python3 -m pip install git+https://github.com/seanbreckenridge/active_window
python3 -m pip install git+https://github.com/purarue/active_window
```

## Usage
Expand All @@ -42,7 +42,7 @@ data = list(parse_window_events(Path("./file.json")))
### Tests

```bash
git clone 'https://github.com/seanbreckenridge/active_window'
git clone 'https://github.com/purarue/active_window'
cd ./active_window
pip install '.[testing]'
flake8 ./active_window
Expand Down
2 changes: 1 addition & 1 deletion active_window/parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class AWComputerEvent(NamedTuple):
class AWWindowWatcherEvent(NamedTuple):
"""
parsed from CSV files
https://github.com/seanbreckenridge/aw-watcher-window
https://github.com/purarue/aw-watcher-window
"""

timestamp: datetime
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = 0.1.0
description = parse output of activity watch window-watchers
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/seanbreckenridge/active_window
url = https://github.com/purarue/active_window
author = Sean Breckenridge
author_email = "[email protected]"
license = MIT
Expand Down

0 comments on commit 9624c4e

Please sign in to comment.