activitywatch
Science Score: 49.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
✓DOI references
Found 3 DOI reference(s) in README -
✓Academic publication links
Links to: zenodo.org -
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (9.9%) to scientific vocabulary
Scientific Fields
Repository
Basic Info
- Host: GitHub
- Owner: futureforger0302
- License: mpl-2.0
- Language: Vue
- Default Branch: main
- Size: 193 MB
Statistics
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
- Releases: 0
Metadata Files
README.md

Records what you do so that you can know how you've spent your time.
All in a secure way where you control the data.
Website
Forum
Documentation
Releases
Contributor stats
CI overview
Do you want to receive email updates on major announcements?
Signup for the newsletter!
Table of Contents
* [About](#about) * [Screenshots](#screenshots) * [Is this yet another time tracker?](#is-this-yet-another-time-tracker) * [Feature comparison](#feature-comparison) * [Installation & Usage](#installation--usage) * [About this repository](#about-this-repository) * [Server](#server) * [Watchers](#watchers) * [Libraries](#libraries) * [Contributing](#contributing)About
The goal of ActivityWatch is simple: Enable the collection of as much valuable lifedata as possible without compromising user privacy.
We've worked towards this goal by creating an application for safe storage of the data on the user's local machine and as well as a set of watchers which record data such as:
- Currently active application and the title of its window
- Currently active browser tab and its title and URL
- Keyboard and mouse activity, to detect if you are AFK ("away from keyboard") or not
It is up to you as user to collect as much as you want, or as little as you want (and we hope some of you will help write watchers so we can collect more).
Screenshots

You can find more (and newer) screenshots on the website.
Installation & Usage
Downloads are available on the releases page.
For instructions on how to get started, please see the guide in the documentation.
Interested in building from source? There's a guide for that too.
Is this yet another time tracker?
Yes, but we found that most time trackers lack one or more important features.
Common dealbreakers:
- Not open source
- The user does not own the data (common with non-open source options)
- Lack of synchronization (and when available: it's centralized and the sync server knows everything)
- Difficult to setup/use (most open source options tend to target programmers)
- Low data resolution (low level of detail, does not store raw data, long intervals between entries)
- Hard or impossible to extend (collecting more data is not as simple as it could be)
To sum it up:
- Closed source solutions suffer from privacy issues and limited features.
- Open source solutions aren't developed with end-users in mind and are usually not written to be easily extended (they lack a proper API). They also lack synchronization.
We have a plan to address all of these and we're well on our way. See the table below for our progress.
Feature comparison
Basics
| | User owns data | GUI | Sync | Open Source | | ------------- |:------------------:|:------------------:|:--------------------------:|:------------------:| | ActivityWatch | :whitecheckmark: | :whitecheckmark: | WIP, decentralized | :whitecheckmark: | | Selfspy | :whitecheckmark: | :x: | :x: | :whitecheckmark: | | ulogme | :whitecheckmark: | :whitecheckmark: | :x: | :whitecheckmark: | | RescueTime | :x: | :whitecheckmark: | Centralized | :x: | | WakaTime | :x: | :whitecheckmark: | Centralized | Clients |
Platforms
| | Windows | macOS | Linux | Android | iOS | | ------------- |:------------------:|:------------------:|:------------------:|:------------------:|:-------------------:| | ActivityWatch | :whitecheckmark: | :whitecheckmark: | :whitecheckmark: | :whitecheckmark: |:x: | | Selfspy | :whitecheckmark: | :whitecheckmark: | :whitecheckmark: | :x: |:x: | | ulogme | :x: | :whitecheckmark: | :whitecheckmark: | :x: |:x: | | RescueTime | :whitecheckmark: | :whitecheckmark: | :whitecheckmark: | :whitecheckmark: |Limited functionality|
Tracking
| | App & Window Title | AFK | Browser Extensions | Editor Plugins | Extensible | | ------------- |:------------------:|:------------------:|:------------------:|:------------------:|:---------------------:| | ActivityWatch | :whitecheckmark: | :whitecheckmark: | :whitecheckmark: | :whitecheckmark: | :whitecheckmark: | | Selfspy | :whitecheckmark: | :whitecheckmark: | :x: | :x: | :x: | | ulogme | :whitecheckmark: | :whitecheckmark: | :x: | :x: | :x: | | RescueTime | :whitecheckmark: | :whitecheckmark: | :whitecheckmark: | :x: | :x: | | WakaTime | :x: | :whitecheckmark: | :whitecheckmark: | :whitecheckmark: | Only for text editors |
For a complete list of the things ActivityWatch can track, see the page on watchers in the documentation.
Architecture
```mermaid graph TD; aw-qt[aw-qt]; aw-notify[aw-notify]; aw-server[aw-server]; aw-webui[aw-webui]; aw-watcher-window[aw-watcher-window]; aw-watcher-afk[aw-watcher-afk]; aw-watcher-web[aw-watcher-web]; aw-sync[aw-sync];
aw-qt -- Manages --> aw-server; aw-qt -- Manages --> aw-notify -- Queries --> aw-server; aw-qt -- Manages --> aw-watcher-window -- Watches --> S1[Active window] -- Heartbeats --> aw-server; aw-qt -- Manages --> aw-watcher-afk -- Watches --> S2[AFK status] -- Heartbeats --> aw-server; Browser -- Manages --> aw-watcher-web -- Watches --> S3[Active tab] -- Heartbeats --> aw-server; SF -- Dropbox/Syncthing/etc --> SF; aw-server <-- Push/Pull --> aw-sync <-- Read/Write --> SF[Sync folder]; aw-server -- Serves --> aw-webui -- Queries --> aw-server;
%% User -- Interacts --> aw-webui; %% User -- Observes --> aw-notify; %% User -- Interacts --> aw-qt;
classDef lightMode fill:#FFFFFF, stroke:#333333, color:#333333; classDef darkMode fill:#333333, stroke:#FFFFFF, color:#FFFFFF;
classDef lightModeLinks stroke:#333333; classDef darkModeLinks stroke:#FFFFFF;
class A,B,C,D,E,G lightMode; class A,B,C,D,E,G darkMode;
%% linkStyle 0 stroke:#FF4136, stroke-width:2px; %% linkStyle 1 stroke:#1ABC9C, stroke-width:2px; ```
About this repository
This repo is a bundle of the core components and official modules of ActivityWatch (managed with git submodule). Its primary use is as a meta-package providing all the components in one repo; enabling easier packaging and installation. It is also where releases of the full suite are published (see releases).
Server
aw-server is the official implementation of the core service which the other ActivityWatch services interact with. It provides a REST API to a datastore and query engine. It also serves the web interface developed in the aw-webui project (which provides the frontend part of the webapp).
The REST API includes:
- Access to a datastore suitable for timeseries/timeperiod-data
- A query engine and language for such data
The webapp includes:
- Data visualization & browser
- Query explorer
- Export functionality
Watchers
ActivityWatch comes pre-installed with two watchers:
aw-watcher-afktracks the user active/inactive state from keyboard and mouse inputaw-watcher-windowtracks the currently active application and its window title.
There are lots of other watchers for ActivityWatch which can track more types of activity. Like aw-watcher-web which tracks time spent on websites, multiple editor watchers which track spent time coding, and many more! A full list of watchers can be found in the documentation.
Libraries
aw-core- core library, provides no runnable modulesaw-client- client library, useful when writing watchers
Folder structure
Contributing
Want to help? Great! Check out the CONTRIBUTING.md file!
Questions and support
Have a question, suggestion, problem, or just want to say hi? Post on the forum!
Owner
- Name: Future Forger
- Login: futureforger0302
- Kind: user
- Repositories: 1
- Profile: https://github.com/futureforger0302
AI Engineer
GitHub Events
Total
- Push event: 1
- Create event: 1
Last Year
- Push event: 1
- Create event: 1
Dependencies
- 321 dependencies
- rocket 0.5.0-rc.1 development
- tokio-test * development
- chrono 0.4
- gethostname 0.4
- reqwest 0.11
- serde 1.0
- serde_json 1.0
- tokio 1.28.2
- criterion 0.5.1 development
- chrono 0.4
- fancy-regex 0.12.0
- log 0.4
- plex 0.3.0
- serde 1.0
- serde_json 1.0
- criterion 0.5.1 development
- chrono 0.4
- fancy-regex 0.12.0
- log 0.4
- serde 1.0
- serde_json 1.0
- url >=2.2
- 1776 dependencies
- @babel/cli ^7.16.0 development
- @babel/core ^7.21.4 development
- @babel/plugin-proposal-nullish-coalescing-operator ^7.16.7 development
- @babel/plugin-transform-runtime ^7.16.4 development
- @babel/preset-env ^7.21.4 development
- @babel/runtime ^7.16.3 development
- @typescript-eslint/eslint-plugin ^5.21 development
- @typescript-eslint/parser ^5.21 development
- @vue/cli-plugin-babel ^5.0 development
- @vue/cli-plugin-eslint ^5.0 development
- @vue/cli-plugin-pwa ^5.0 development
- @vue/cli-plugin-typescript ^5.0 development
- @vue/cli-plugin-unit-jest ^5.0 development
- @vue/cli-service ^5.0 development
- @vue/eslint-config-typescript ^10.0 development
- @vue/test-utils ^1.3.0 development
- @vue/vue2-jest ^29.2.4 development
- babel-loader ^9.1.3 development
- babel-plugin-lodash ^3.3.4 development
- connect-history-api-fallback ^2.0.0 development
- copy-webpack-plugin ^5.1.1 development
- crypto-js ^4.1.1 development
- css-loader ^6.7.3 development
- eslint ^7.0 development
- eslint-config-prettier ^6.11.0 development
- eslint-plugin-jest ^23.18 development
- eslint-plugin-prettier ^3.1 development
- eslint-plugin-vue ^8.0 development
- eventsource-polyfill ^0.9.6 development
- express ^4.16.3 development
- file-loader ^6.2 development
- function-bind ^1.0.2 development
- html-loader ^0.5.5 development
- html-webpack-plugin ^5.5.0 development
- http-proxy-middleware ^0.18.0 development
- jest ^29 development
- jest-environment-jsdom ^29 development
- jest-environment-node ^29 development
- json-loader ^0.5.7 development
- lodash ^4.17.19 development
- moment ^2.29.4 development
- moment-range ^4.0.2 development
- ora ^7.0.1 development
- prettier ^2.5.1 development
- pug ^3.0 development
- pug-plain-loader ^1.0.0 development
- sass-loader ^8.0.2 development
- shelljs ^0.8.5 development
- ts-jest ^29 development
- ts-loader ^9.0 development
- tslint ^5.20.1 development
- typescript ^5.2 development
- url-loader ^4.1 development
- vite-plugin-pwa ^0.20.0 development
- vue ^2.7 development
- vue-cli-plugin-pug ^2.0.0 development
- vue-eslint-parser ^9.3 development
- vue-hot-reload-api ^2.3.4 development
- vue-loader ^17.0 development
- vue-router ^3.5.3 development
- vue-style-loader ^4.1.0 development
- webpack ^5.0 development
- webpack-dev-middleware ^7.1.1 development
- webpack-hot-middleware ^2.22.2 development
- webpack-merge ^5.8.0 development
- @egjs/hammerjs ^2.0.17
- @fullcalendar/timegrid ^5.10.1
- @fullcalendar/vue ^5.10.1
- @pinia/testing ^0.0.16
- @types/chart.js ^2.9.23
- @types/chrome 0.0.89
- @types/color ^3.0.1
- @types/d3 ^7.4
- @types/d3-hierarchy ^3.1.0
- @types/jest ^29
- @types/lodash ^4.14.178
- @types/node ^20.0
- @vitejs/plugin-vue2 ^2.3.1
- ajv ^8.12.0
- ajv-keywords ^5.1.0
- aw-client ^0.3.7
- bootstrap ^4.6.1
- bootstrap-vue ^2.15.0
- chart.js ^3.8.0
- color ^4.0.0
- component-emitter ^1.3.0
- core-js ^3.19.3
- d3 ^7.8
- d3-scale ^4.0.2
- d3-scale-chromatic ^3.0.0
- domain-browser ^4.22.0
- dompurify ^2.3.4
- exports-loader ^4.0.0
- imports-loader ^0.8.0
- jquery ^3.5.1
- jsdom ^21.1.1
- keycharm ^0.3.1
- less ^4.1.3
- less-loader ^10.2
- luxon ^1.24.1
- papaparse ^5.3.2
- pinia ^2.0.13
- propagating-hammerjs ^1.4.7
- sass ^1.44.0
- semver ^7.6.0
- style-loader ^3.3.3
- typeface-varela-round 0.0.54
- uuid ^7.0.3
- vis-data ^7.1.2
- vis-timeline ^7.5.0
- vis-util ^5.0.2
- vite ^5.2.10
- vue-awesome ^3.5.1
- vue-chartjs ^4.1.0
- vue-color ^2.8.1
- vue-d3-sunburst git+https://github.com/ErikBjare/Vue.D3.sunburst.git#patch-1
- vue-datetime ^1.0.0-beta.13
- vuedraggable ^2.24.3
- weekstart ^1.0.1
- xss ^1.0.14
- 1776 dependencies
- @babel/cli ^7.16.0 development
- @babel/core ^7.21.4 development
- @babel/plugin-proposal-nullish-coalescing-operator ^7.16.7 development
- @babel/plugin-transform-runtime ^7.16.4 development
- @babel/preset-env ^7.21.4 development
- @babel/runtime ^7.16.3 development
- @typescript-eslint/eslint-plugin ^5.21 development
- @typescript-eslint/parser ^5.21 development
- @vue/cli-plugin-babel ^5.0 development
- @vue/cli-plugin-eslint ^5.0 development
- @vue/cli-plugin-pwa ^5.0 development
- @vue/cli-plugin-typescript ^5.0 development
- @vue/cli-plugin-unit-jest ^5.0 development
- @vue/cli-service ^5.0 development
- @vue/eslint-config-typescript ^10.0 development
- @vue/test-utils ^1.3.0 development
- @vue/vue2-jest ^29.2.4 development
- babel-loader ^9.1.3 development
- babel-plugin-lodash ^3.3.4 development
- connect-history-api-fallback ^2.0.0 development
- copy-webpack-plugin ^5.1.1 development
- crypto-js ^4.1.1 development
- css-loader ^6.7.3 development
- eslint ^7.0 development
- eslint-config-prettier ^6.11.0 development
- eslint-plugin-jest ^23.18 development
- eslint-plugin-prettier ^3.1 development
- eslint-plugin-vue ^8.0 development
- eventsource-polyfill ^0.9.6 development
- express ^4.16.3 development
- file-loader ^6.2 development
- function-bind ^1.0.2 development
- html-loader ^0.5.5 development
- html-webpack-plugin ^5.5.0 development
- http-proxy-middleware ^0.18.0 development
- jest ^29 development
- jest-environment-jsdom ^29 development
- jest-environment-node ^29 development
- json-loader ^0.5.7 development
- lodash ^4.17.19 development
- moment ^2.29.4 development
- moment-range ^4.0.2 development
- ora ^7.0.1 development
- prettier ^2.5.1 development
- pug ^3.0 development
- pug-plain-loader ^1.0.0 development
- sass-loader ^8.0.2 development
- shelljs ^0.8.5 development
- ts-jest ^29 development
- ts-loader ^9.0 development
- tslint ^5.20.1 development
- typescript ^5.2 development
- url-loader ^4.1 development
- vite-plugin-pwa ^0.20.0 development
- vue ^2.7 development
- vue-cli-plugin-pug ^2.0.0 development
- vue-eslint-parser ^9.3 development
- vue-hot-reload-api ^2.3.4 development
- vue-loader ^17.0 development
- vue-router ^3.5.3 development
- vue-style-loader ^4.1.0 development
- webpack ^5.0 development
- webpack-dev-middleware ^7.1.1 development
- webpack-hot-middleware ^2.22.2 development
- webpack-merge ^5.8.0 development
- @egjs/hammerjs ^2.0.17
- @fullcalendar/timegrid ^5.10.1
- @fullcalendar/vue ^5.10.1
- @pinia/testing ^0.0.16
- @types/chart.js ^2.9.23
- @types/chrome 0.0.89
- @types/color ^3.0.1
- @types/d3 ^7.4
- @types/d3-hierarchy ^3.1.0
- @types/jest ^29
- @types/lodash ^4.14.178
- @types/node ^20.0
- @vitejs/plugin-vue2 ^2.3.1
- ajv ^8.12.0
- ajv-keywords ^5.1.0
- aw-client ^0.3.7
- bootstrap ^4.6.1
- bootstrap-vue ^2.15.0
- chart.js ^3.8.0
- color ^4.0.0
- component-emitter ^1.3.0
- core-js ^3.19.3
- d3 ^7.8
- d3-scale ^4.0.2
- d3-scale-chromatic ^3.0.0
- domain-browser ^4.22.0
- dompurify ^2.3.4
- exports-loader ^4.0.0
- imports-loader ^0.8.0
- jquery ^3.5.1
- jsdom ^21.1.1
- keycharm ^0.3.1
- less ^4.1.3
- less-loader ^10.2
- luxon ^1.24.1
- papaparse ^5.3.2
- pinia ^2.0.13
- propagating-hammerjs ^1.4.7
- sass ^1.44.0
- semver ^7.6.0
- style-loader ^3.3.3
- typeface-varela-round 0.0.54
- uuid ^7.0.3
- vis-data ^7.1.2
- vis-timeline ^7.5.0
- vis-util ^5.0.2
- vite ^5.2.10
- vue-awesome ^3.5.1
- vue-chartjs ^4.1.0
- vue-color ^2.8.1
- vue-d3-sunburst git+https://github.com/ErikBjare/Vue.D3.sunburst.git#patch-1
- vue-datetime ^1.0.0-beta.13
- vuedraggable ^2.24.3
- weekstart ^1.0.1
- xss ^1.0.14
- aw-client 0.3.0
- axios 0.19.2
- debug 3.1.0
- follow-redirects 1.5.10
- ms 2.0.0
- aw-client ^0.3.0
- 361 dependencies
- @types/deep-equal ^1.0.4 development
- @types/webextension-polyfill ^0.12.1 development
- prettier ^3.4.2 development
- typescript ^5.7.3 development
- vite ^6.0.11 development
- vite-plugin-web-extension ^4.4.3 development
- aw-client ^0.4.1
- deep-equal ^2.2.3
- p-retry ^6.2.1
- webextension-polyfill ^0.12.0
- 1815 dependencies
- @babel/cli ^7.16.0 development
- @babel/core ^7.25.2 development
- @babel/plugin-proposal-nullish-coalescing-operator ^7.16.7 development
- @babel/plugin-transform-runtime ^7.16.4 development
- @babel/preset-env ^7.21.4 development
- @babel/runtime ^7.16.3 development
- @typescript-eslint/eslint-plugin ^5.21 development
- @typescript-eslint/parser ^5.21 development
- @vue/cli-plugin-babel ^5.0 development
- @vue/cli-plugin-eslint ^5.0 development
- @vue/cli-plugin-pwa ^5.0 development
- @vue/cli-plugin-typescript ^5.0 development
- @vue/cli-plugin-unit-jest ^5.0 development
- @vue/cli-service ^5.0 development
- @vue/eslint-config-typescript ^10.0 development
- @vue/test-utils ^1.3.0 development
- @vue/vue2-jest ^29.2.4 development
- babel-loader ^9.1.3 development
- babel-plugin-lodash ^3.3.4 development
- connect-history-api-fallback ^2.0.0 development
- copy-webpack-plugin ^5.1.1 development
- crypto-js ^4.1.1 development
- css-loader ^6.7.3 development
- eslint ^7.0 development
- eslint-config-prettier ^6.11.0 development
- eslint-plugin-jest ^23.18 development
- eslint-plugin-prettier ^3.1 development
- eslint-plugin-vue ^8.0 development
- eventsource-polyfill ^0.9.6 development
- express ^5.1.0 development
- file-loader ^6.2 development
- function-bind ^1.0.2 development
- html-loader ^0.5.5 development
- html-webpack-plugin ^5.5.0 development
- http-proxy-middleware ^0.18.0 development
- jest ^29 development
- jest-environment-jsdom ^29 development
- jest-environment-node ^29 development
- json-loader ^0.5.7 development
- lodash ^4.17.19 development
- moment ^2.29.4 development
- moment-range ^4.0.2 development
- ora ^7.0.1 development
- prettier ^2.5.1 development
- pug ^3.0 development
- pug-plain-loader ^1.0.0 development
- sass-loader ^8.0.2 development
- shelljs ^0.8.5 development
- ts-jest ^29 development
- ts-loader ^9.0 development
- tslint ^5.20.1 development
- typescript ^5.2 development
- url-loader ^4.1 development
- vite-plugin-pwa ^1.0.0 development
- vue ^2.7 development
- vue-cli-plugin-pug ^2.0.0 development
- vue-eslint-parser ^9.3 development
- vue-hot-reload-api ^2.3.4 development
- vue-loader ^17.0 development
- vue-router ^3.5.3 development
- vue-style-loader ^4.1.0 development
- webpack ^5.99 development
- webpack-dev-middleware ^7.1.1 development
- webpack-hot-middleware ^2.22.2 development
- webpack-merge ^5.8.0 development
- @egjs/hammerjs ^2.0.17
- @fullcalendar/timegrid ^5.10.1
- @fullcalendar/vue ^5.10.1
- @pinia/testing ^0.0.16
- @types/chart.js ^2.9.23
- @types/chrome 0.0.89
- @types/color ^3.0.1
- @types/d3 ^7.4
- @types/d3-hierarchy ^3.1.0
- @types/jest ^29
- @types/lodash ^4.14.178
- @types/node ^20.0
- @vitejs/plugin-vue2 ^2.3.3
- ajv ^8.12.0
- ajv-keywords ^5.1.0
- aw-client ^0.3.7
- bootstrap ^4.6.1
- bootstrap-vue ^2.15.0
- chart.js ^3.8.0
- color ^4.0.0
- component-emitter ^1.3.0
- core-js ^3.19.3
- d3 ^7.8
- d3-scale ^4.0.2
- d3-scale-chromatic ^3.0.0
- domain-browser ^4.22.0
- dompurify ^3.2.5
- exports-loader ^4.0.0
- imports-loader ^0.8.0
- jquery ^3.5.1
- jsdom ^21.1.1
- keycharm ^0.3.1
- less ^4.1.3
- less-loader ^10.2
- luxon ^1.24.1
- papaparse ^5.3.2
- pinia ^2.0.13
- propagating-hammerjs ^1.4.7
- regenerator-runtime ^0.14.1
- sass ^1.44.0
- semver ^7.6.0
- style-loader ^3.3.3
- typeface-varela-round 0.0.54
- uuid ^7.0.3
- vis-data ^7.1.2
- vis-timeline ^7.5.0
- vis-util ^5.0.2
- vite ^6.3.1
- vue-awesome ^3.5.1
- vue-chartjs ^4.1.0
- vue-color ^2.8.1
- vue-d3-sunburst git+https://github.com/ErikBjare/Vue.D3.sunburst.git#patch-1
- vue-datetime ^1.0.0-beta.13
- vuedraggable ^2.24.3
- weekstart ^1.0.1
- xss ^1.0.14
- attrs 24.2.0
- aw-core 0.5.17
- cachetools 5.5.0
- certifi 2024.8.30
- charset-normalizer 3.4.0
- click 8.1.7
- colorama 0.4.6
- coverage 7.6.1
- deprecation 2.1.0
- exceptiongroup 1.2.2
- google-auth 2.35.0
- google-auth-oauthlib 1.2.1
- gspread 6.1.3
- idna 3.10
- importlib-resources 6.4.5
- iniconfig 2.0.0
- iso8601 2.1.0
- jsonschema 4.23.0
- jsonschema-specifications 2023.12.1
- mypy 1.12.0
- mypy-extensions 1.0.0
- oauthlib 3.2.2
- packaging 24.1
- peewee 3.17.7
- persist-queue 1.0.0
- pkgutil-resolve-name 1.3.10
- platformdirs 3.10.0
- pluggy 1.5.0
- pyasn1 0.6.1
- pyasn1-modules 0.4.1
- pytest 8.3.3
- pytest-cov 5.0.0
- referencing 0.35.1
- requests 2.32.3
- requests-oauthlib 2.0.0
- rfc3339-validator 0.1.4
- rpds-py 0.20.0
- rsa 4.9
- ruff 0.6.9
- six 1.16.0
- strict-rfc3339 0.7
- tabulate 0.9.0
- timeslot 0.1.2
- tomli 2.0.2
- tomlkit 0.13.2
- types-requests 2.32.0.20241016
- types-tabulate 0.9.0.20240106
- typing-extensions 4.12.2
- urllib3 2.2.3
- zipp 3.20.2
- gspread * develop
- mypy * develop
- pytest * develop
- pytest-cov * develop
- ruff * develop
- types-requests * develop
- types-tabulate * develop
- aw-core ^0.5.16
- click ^8.0
- persist-queue *
- python ^3.8
- requests *
- tabulate *
- typing-extensions *
- attrs 24.2.0
- colorama 0.4.6
- coverage 7.6.1
- deprecation 2.1.0
- exceptiongroup 1.2.2
- importlib-resources 6.4.5
- iniconfig 2.0.0
- iso8601 2.1.0
- jsonschema 4.23.0
- jsonschema-specifications 2023.12.1
- mypy 1.11.2
- mypy-extensions 1.0.0
- packaging 24.1
- peewee 3.17.6
- pkgutil-resolve-name 1.3.10
- platformdirs 3.10.0
- pluggy 1.5.0
- pytest 8.3.3
- pytest-cov 5.0.0
- referencing 0.35.1
- rfc3339-validator 0.1.4
- rpds-py 0.20.0
- ruff 0.6.8
- six 1.16.0
- strict-rfc3339 0.7
- timeslot 0.1.2
- tomli 2.0.1
- tomlkit 0.13.2
- typing-extensions 4.12.2
- zipp 3.20.2
- mypy * develop
- pytest * develop
- pytest-cov * develop
- ruff * develop
- deprecation *
- iso8601 *
- jsonschema ^4.3
- peewee 3.*
- platformdirs 3.10
- python ^3.8
- rfc3339-validator ^0.1.4
- strict-rfc3339 ^0.7
- timeslot *
- tomlkit *
- altgraph 0.17.4
- attrs 24.2.0
- aw-client 0.5.14
- aw-core 0.5.17
- black 24.10.0
- certifi 2024.8.30
- charset-normalizer 3.4.0
- click 8.1.7
- colorama 0.4.6
- dbus-next 0.2.3
- deprecation 2.1.0
- desktop-notifier 3.5.6
- exceptiongroup 1.2.2
- idna 3.10
- importlib-metadata 8.5.0
- iniconfig 2.0.0
- iso8601 2.1.0
- jsonschema 4.23.0
- jsonschema-specifications 2024.10.1
- macholib 1.16.3
- mypy 1.12.0
- mypy-extensions 1.0.0
- packaging 24.1
- pathspec 0.12.1
- peewee 3.17.7
- pefile 2023.2.7
- persist-queue 1.0.0
- platformdirs 3.10.0
- pluggy 1.5.0
- pyinstaller 6.11.0
- pyinstaller-hooks-contrib 2024.9
- pytest 8.3.3
- pywin32-ctypes 0.2.3
- referencing 0.35.1
- requests 2.32.3
- rfc3339-validator 0.1.4
- rpds-py 0.20.0
- rubicon-objc 0.4.9
- setuptools 75.2.0
- six 1.16.0
- strict-rfc3339 0.7
- tabulate 0.9.0
- timeslot 0.1.2
- tomli 2.0.2
- tomlkit 0.13.2
- typing-extensions 4.12.2
- urllib3 2.2.3
- winsdk 1.0.0b9
- zipp 3.20.2
- black * develop
- mypy * develop
- pyinstaller ^6.6 develop
- pytest * develop
- aw-client ^0.5.14
- desktop-notifier ^3.4.2
- python ^3.9
- rubicon-objc ^0.4.0
- PyQt6-stubs 6.2.3.1
- altgraph 0.17.4
- attrs 23.2.0
- aw-core 0.5.16
- click 8.1.7
- colorama 0.4.6
- deprecation 2.1.0
- flake8 5.0.4
- importlib-metadata 7.1.0
- importlib-resources 6.4.0
- iso8601 1.1.0
- jsonschema 4.22.0
- jsonschema-specifications 2023.12.1
- macholib 1.16.3
- mccabe 0.7.0
- mypy 1.10.0
- mypy-extensions 1.0.0
- packaging 24.0
- peewee 3.17.3
- pefile 2023.2.7
- pkgutil-resolve-name 1.3.10
- platformdirs 3.10.0
- pycodestyle 2.9.1
- pyflakes 2.5.0
- pyinstaller 6.11.1
- pyinstaller-hooks-contrib 2025.1
- pyobjc-core 10.2
- pyobjc-framework-cocoa 10.2
- pyqt6 6.5.3
- pyqt6-qt6 6.5.3
- pyqt6-sip 13.6.0
- pywin32-ctypes 0.2.2
- referencing 0.35.1
- rfc3339-validator 0.1.4
- rpds-py 0.20.1
- setuptools 69.5.1
- six 1.16.0
- strict-rfc3339 0.7
- timeslot 0.1.2
- tomli 2.0.1
- tomlkit 0.12.4
- types-click 7.1.8
- typing-extensions 4.11.0
- zipp 3.18.1
- aniso8601 9.0.1
- attrs 23.1.0
- aw-client 0.5.12
- aw-core 0.5.16
- black 23.10.1
- blinker 1.6.3
- certifi 2023.7.22
- charset-normalizer 3.3.1
- click 8.1.7
- colorama 0.4.6
- coverage 7.3.2
- deprecation 2.1.0
- exceptiongroup 1.1.3
- flask 2.3.3
- flask-cors 4.0.0
- flask-restx 1.2.0
- idna 3.4
- importlib-metadata 6.8.0
- importlib-resources 6.1.0
- iniconfig 2.0.0
- iso8601 1.1.0
- itsdangerous 2.1.2
- jinja2 3.1.2
- jsonschema 4.17.3
- markupsafe 2.1.3
- mypy 1.6.1
- mypy-extensions 1.0.0
- packaging 23.2
- pathspec 0.11.2
- peewee 3.17.0
- persist-queue 0.8.1
- pkgutil-resolve-name 1.3.10
- platformdirs 3.10.0
- pluggy 1.3.0
- py-cpuinfo 9.0.0
- pyrsistent 0.19.3
- pytest 7.4.3
- pytest-benchmark 4.0.0
- pytest-cov 4.1.0
- pytest-flask 1.3.0
- pytz 2023.3.post1
- requests 2.31.0
- rfc3339-validator 0.1.4
- six 1.16.0
- strict-rfc3339 0.7
- tabulate 0.9.0
- timeslot 0.1.2
- tomli 2.0.1
- tomlkit 0.12.1
- types-click 7.1.8
- types-flask 1.1.6
- types-jinja2 2.11.9
- types-markupsafe 1.1.10
- types-pkg-resources 0.1.3
- types-werkzeug 1.0.9
- typing-extensions 4.8.0
- urllib3 2.0.7
- werkzeug 2.3.7
- zipp 3.17.0
- black ^23.3.0 develop
- mypy * develop
- pytest ^7.3 develop
- pytest-benchmark * develop
- pytest-cov * develop
- pytest-flask * develop
- types-Flask * develop
- types-Werkzeug * develop
- types-pkg-resources * develop
- aw-client ^0.5.8
- aw-core ^0.5.8
- flask ^2.2
- flask-cors *
- flask-restx ^1.0.3
- importlib-metadata *
- python ^3.8
- werkzeug ^2.3.3
- altgraph 0.17.4
- attrs 24.2.0
- aw-client 0.5.14
- aw-core 0.5.17
- certifi 2024.8.30
- charset-normalizer 3.4.0
- click 8.1.7
- colorama 0.4.6
- deprecation 2.1.0
- evdev 1.7.1
- idna 3.10
- importlib-metadata 8.5.0
- importlib-resources 6.4.5
- iso8601 2.1.0
- jsonschema 4.23.0
- jsonschema-specifications 2023.12.1
- macholib 1.16.3
- mypy 1.12.0
- mypy-extensions 1.0.0
- packaging 24.1
- peewee 3.17.7
- pefile 2023.2.7
- persist-queue 1.0.0
- pkgutil-resolve-name 1.3.10
- platformdirs 3.10.0
- pyinstaller 6.11.0
- pyinstaller-hooks-contrib 2024.9
- pynput 1.7.7
- pyobjc-core 10.3.1
- pyobjc-framework-applicationservices 10.3.1
- pyobjc-framework-cocoa 10.3.1
- pyobjc-framework-coretext 10.3.1
- pyobjc-framework-quartz 10.3.1
- python-xlib 0.31
- pywin32-ctypes 0.2.3
- referencing 0.35.1
- requests 2.32.3
- rfc3339-validator 0.1.4
- rpds-py 0.20.0
- setuptools 75.2.0
- six 1.16.0
- strict-rfc3339 0.7
- tabulate 0.9.0
- timeslot 0.1.2
- tomli 2.0.2
- tomlkit 0.13.2
- typing-extensions 4.12.2
- urllib3 2.2.3
- zipp 3.20.2
- macholib * develop
- mypy * develop
- pyinstaller ^6.6 develop
- aw-client ^0.5.14
- pynput *
- pyobjc-framework-Quartz *
- python ^3.8
- python-xlib 0.31
- altgraph 0.17.4
- attrs 24.2.0
- aw-client 0.5.14
- aw-core 0.5.17
- aw-watcher-afk 0.2.0
- black 24.8.0
- certifi 2024.8.30
- charset-normalizer 3.4.0
- click 8.1.7
- colorama 0.4.6
- deprecation 2.1.0
- evdev 1.7.1
- idna 3.10
- importlib-metadata 8.5.0
- importlib-resources 6.4.5
- iso8601 2.1.0
- jsonschema 4.23.0
- jsonschema-specifications 2023.12.1
- macholib 1.16.3
- mypy 1.12.0
- mypy-extensions 1.0.0
- packaging 24.1
- pathspec 0.12.1
- peewee 3.17.7
- pefile 2023.2.7
- persist-queue 1.0.0
- pkgutil-resolve-name 1.3.10
- platformdirs 3.10.0
- pyinstaller 6.11.0
- pyinstaller-hooks-contrib 2024.9
- pynput 1.7.7
- pyobjc-core 10.3.1
- pyobjc-framework-applicationservices 10.3.1
- pyobjc-framework-cocoa 10.3.1
- pyobjc-framework-coretext 10.3.1
- pyobjc-framework-quartz 10.3.1
- python-xlib 0.31
- pywin32-ctypes 0.2.3
- referencing 0.35.1
- requests 2.32.3
- rfc3339-validator 0.1.4
- rpds-py 0.20.0
- setuptools 75.2.0
- six 1.16.0
- strict-rfc3339 0.7
- tabulate 0.9.0
- timeslot 0.1.2
- tomli 2.0.2
- tomlkit 0.13.2
- typing-extensions 4.12.2
- urllib3 2.2.3
- zipp 3.20.2
- altgraph 0.17.4
- attrs 24.2.0
- aw-client 0.5.14
- aw-core 0.5.17
- certifi 2024.8.30
- charset-normalizer 3.4.0
- click 8.1.7
- colorama 0.4.6
- deprecation 2.1.0
- exceptiongroup 1.2.2
- idna 3.10
- importlib-metadata 8.5.0
- importlib-resources 6.4.5
- iniconfig 2.0.0
- iso8601 2.1.0
- jsonschema 4.23.0
- jsonschema-specifications 2023.12.1
- macholib 1.16.3
- mypy 1.12.0
- mypy-extensions 1.0.0
- packaging 24.1
- peewee 3.17.7
- pefile 2023.2.7
- persist-queue 1.0.0
- pkgutil-resolve-name 1.3.10
- platformdirs 3.10.0
- pluggy 1.5.0
- pyinstaller 6.11.0
- pyinstaller-hooks-contrib 2024.9
- pyobjc-core 10.3.1
- pyobjc-framework-applicationservices 10.3.1
- pyobjc-framework-cocoa 10.3.1
- pyobjc-framework-coretext 10.3.1
- pyobjc-framework-osakit 10.3.1
- pyobjc-framework-quartz 10.3.1
- pytest 8.3.3
- python-xlib 0.31
- pywin32 306
- pywin32-ctypes 0.2.3
- referencing 0.35.1
- requests 2.32.3
- rfc3339-validator 0.1.4
- rpds-py 0.20.0
- setuptools 75.2.0
- six 1.16.0
- strict-rfc3339 0.7
- tabulate 0.9.0
- timeslot 0.1.2
- tomli 2.0.2
- tomlkit 0.13.2
- typing-extensions 4.12.2
- urllib3 2.2.3
- wmi 1.5.1
- zipp 3.20.2
- macholib * develop
- mypy * develop
- pyinstaller * develop
- pytest * develop
- aw-client ^0.5.14
- pillow *
- pyautogui *
- pyobjc-framework-ApplicationServices *
- pyobjc-framework-CoreText *
- pyobjc-framework-OSAKit *
- python ^3.8
- python-xlib 0.31
- pywin32 306
- wmi *
- altgraph 0.17.4
- colorama 0.4.6
- coverage 7.6.1
- exceptiongroup 1.2.2
- importlib-metadata 8.5.0
- iniconfig 2.0.0
- macholib 1.16.3
- mypy 1.12.0
- mypy-extensions 1.0.0
- packaging 24.1
- pefile 2023.2.7
- pluggy 1.5.0
- psutil 6.0.0
- py-cpuinfo 9.0.0
- pyinstaller 6.11.0
- pyinstaller-hooks-contrib 2024.9
- pytest 8.3.3
- pytest-benchmark 4.0.0
- pytest-cov 5.0.0
- pywin32-ctypes 0.2.3
- setuptools 75.2.0
- tomli 2.0.2
- typing-extensions 4.12.2
- urllib3 1.26.20
- zipp 3.20.2