Skip to main content

Better Categorizer and Timewarrior Companion

Problem: ActivityWatch collects great data, but it's hard to get useful insights from it.

Solution: Rule-based categorization that transforms raw ActivityWatch events into meaningful tags with multiple output options.

Currently this script exports data from ActivityWatch into TimeWarrior, but I'm planning to let this be a general categorization/tagging tool with possibility to store things in different backends, possibly including to work as a watcher and reexport data back into ActivityWatch.

What it does

  • Categorizes ActivityWatch events using configurable rules (browser URLs, editor files, app names, tmux sessions)
  • Exports categorized activity to TimeWarrior for time tracking
  • Report and analyze commands to aid the user into tweaking the rules and configuration and reexporting the data.

Installation

Let me know if you try it or start using it. Following the SemVer standard, I'm free to break backward compatibility in the 0.x-series - and if I believe I'm the only user, I will most likely do that without any notice.

Installation from PyPI

pip install aw-export-timewarrior

Installation from Source

git clone https://github.com/tobixen/aw-export-timewarrior
cd aw-export-timewarrior
make install

Running as a Systemd Service

For continuous sync mode, you can run as a systemd user service:

make enable-service    # Install and start the service

Check status and logs:

systemctl --user status aw-export-timewarrior
journalctl --user -u aw-export-timewarrior -f

Requirements

  • Python - It's currently only tested with 3.13. If you want to use it with other versions, let me know.
  • ActivityWatch with aw-watcher-window running
  • TimeWarrior installed

Optional Watchers

For richer tag extraction, install additional watchers:

Support for other watchers may be considered, reach out by email or add an issue or pull request for it.

Quick Start

# Continuous sync mode
aw-export-timewarrior sync

# Compare ActivityWatch data with TimeWarrior (dry-run)
aw-export-timewarrior diff --day yesterday

# Apply suggested changes
aw-export-timewarrior diff --day yesterday --apply

# Gain insight into events and rules
aw-export-timewarrior report --from '2 hours ago' --show-rule
aw-export-timewarrior analyze --day yesterday --limit 30

Configuration

Configuration is stored in ~/.config/activitywatch/aw-export-timewarrior/aw-export-timewarrior.toml.

Rule Types

  • Browser rules (rules.browser.*): Match URLs with url_regexp
  • Editor rules (rules.editor.*): Match by project name or path_regexp
  • App rules (rules.app.*): Match by app_names and title_regexp
  • Tmux rules (rules.tmux.*): Match by session, window, command, path
  • Tag rules (tags.*): Transform tags with add, remove, replace operations
  • Exclusive rules (exclusive.*): Prevent conflicting tags from combining

Example Configuration

[rules.browser.github]
url_regexp = "github\\.com"
tags = ["coding", "github"]

[rules.editor.myproject]
path_regexp = "/home/user/projects/myproject"
tags = ["myproject", "coding"]

[rules.app.slack]
app_names = ["slack", "Slack"]
tags = ["communication", "slack"]

[tags.coding-is-work]
source_tags = ["coding"]
add = ["4WORK"]

[exclusive.afk]
tags = ["afk", "not-afk"]

Reusable Lists

A [lists] section defines named lists that can be referenced as @name elsewhere in the config. In list fields (tags, app_names, source_tags, etc.) the reference is replaced by the list items inline. In regexp fields (url_regexp, title_regexp, path_regexp, ...) it expands to a non-capturing alternation (?:item1|item2|...); items are not regex-escaped, so they may themselves be regexp fragments. Lists may reference other lists.

[lists]
customers = ["acme", "emca"]

[rules.editor.customer-work]
path_regexp = "^/home/user/(@customers)/"
tags = ["4WORK", "$1"]

[app_groups] is an older alias for the same mechanism.

Commands

Command Description
sync Continuous sync from ActivityWatch to TimeWarrior
diff Compare and generate correction commands
report Show activity report with tags
analyze Analyze events without exporting
timeline Show side-by-side ActivityWatch vs TimeWarrior
validate Validate configuration file

Use --help with any command for detailed options.

Development

make install-dev      # Install with dev dependencies
make test             # Run tests
make lint             # Run ruff check
make format           # Run ruff format
make clean            # Remove build artifacts
make help             # Show all available targets

Documentation

Background

This tool bridges ActivityWatch (automatic activity tracking) and TimeWarrior (manual time tracking). See the blog posts for rationale:

License

MIT

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aw_export_timewarrior-1.0.0.tar.gz (102.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

aw_export_timewarrior-1.0.0-py3-none-any.whl (109.8 kB view details)

Uploaded Python 3

File details

Details for the file aw_export_timewarrior-1.0.0.tar.gz.

File metadata

  • Download URL: aw_export_timewarrior-1.0.0.tar.gz
  • Upload date:
  • Size: 102.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aw_export_timewarrior-1.0.0.tar.gz
Algorithm Hash digest
SHA256 c519f68f27353c2e68a8c01bbf45957141cb99c25d3d11351d26534d5484b1a7
MD5 2ea257ebffc373722eb8dfb688c67cd4
BLAKE2b-256 67baa7ae90f2ff897ba8bfbc2f0731dd05196c1d64f8e4bc6f2eece22d8f0d5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aw_export_timewarrior-1.0.0.tar.gz:

Publisher: publish.yml on tobixen/aw-export-timewarrior

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aw_export_timewarrior-1.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for aw_export_timewarrior-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e2f443d10822a95a2276026feec48739e33c535b83090ad1d3b82512af409ac8
MD5 79e1e678f2c2cb787d9bab1508cdd0fd
BLAKE2b-256 51a700c3c2bd74dacd671f7efd5e69dd5e675f90b2a321549e753c74ef938eeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for aw_export_timewarrior-1.0.0-py3-none-any.whl:

Publisher: publish.yml on tobixen/aw-export-timewarrior

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

1.0.1

2 files

This release

1.0.0 This release

2 files

0.6.5

2 files

0.0.0

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page