Clock in and out of mite.yo.lk quickly.
Project description
miteclock
Clock in and out of mite within seconds!
Do you like tracking time in mite, but find it more convenient to grab any terminal (or
pop a new one) and type in a few characters rather than rummage through your browser
tabs and click on the same 2 drop-down boxes every time you switch activities throughout
the day? miteclock
is here to help!
Installation and Setup
This package should work with Python version 3.6 and higher. It doesn't have many
dependencies so it should not be a huge deal to install directly in your global
environment. Still, it's probably a better idea to create a dedicated virtualenv for it
and then symlink the executable somewhere in your PATH
. You could also use the
pipx wrapper which automatically takes care of
virtualenv creation.
Whether inside a virtualenv or not, install with a standard pip command:
pip install miteclock
After installing (and symlinking) you should be able to run the following command in your terminal:
m
The first time you run it, it will prompt you for your account information and create a
TOML configuration file in your home directory
named ~/.config/miteclock/config.toml
. Invoking m
after that will show you the help
message for the program.
Shell Auto-completion
If you'd like to enable auto-completion for your shell, run this command:
m completion
By default this sets up bash
completion, but zsh
is can also be specified. Pass the
--help
flag to learn more about the command.
Usage
There are only two core commands: m start
starts a clock, m stop
stops it. That's
it, that simple. The help message for m stop
contains all you need to know about
that command, so here we focus on m start
.
Tracking a New Entry
Let's say your mite account has the following projects:
- ACME – Self-healing container deployments
- OCP: ED-209
- CHAZ 2020
In these projects you perform the following services (Dienstleistungen):
-
Development
-
Regular Maintenance
-
Irregular Maintenance
-
QA
From your experience with the mite webapp, you know that in order to add an entry and start the clock for it you need to specify the following three fields:
- project
- service
- note
However, what if instead of selecting the project and the service from a drop-down you did so by pressing just one key? This is much faster, especially if you have more realistic (i.e. larger) sets of projects and services that you'd have to sift through with the drop-down.
These keys are known as shortcuts and you can define them in your configuration file.
For our example here, let's create a few mappings from keys to project/service names. We
open our ~/.config/miteclock/config.toml
in a text editor and add the following in the
[shortcuts]
table:
[shortcuts]
# Shortcuts for projects.
a = "ACME -- Self-healing container deployments"
o = "OCP: ED-209"
h = "CHAZ 2020"
t = "Team-Internal"
# Shortcuts for services.
d = "Development"
r = "Regular Maintenance"
i = "Irregular Maintenance"
q = "QA"
c = "Communication/Coordination"
Now we can add an activity and start the clock for it with this one command:
m start a d 'writing some code'
The first two arguments to start
are expanded into "ACME – Self-healing
container deployments" and "Development" respectively. The last argument is the note and
should be quoted to ensure it is interpreted together. Note that the order of the
arguments is currently fixed to keep things simple.
While most activities will likely require you to enter a unique note to describe them, there are also some recurring appointments and tasks for which the notes don't need to vary either. Wouldn't it be nice to have shortcuts for those too? Let's add some shortcuts that describe recurring activities of many programmers:
daily = ["t", "c", "daily stand-up"]
retro = ["t", "c", "retrospective"]
server = ['a', 'r', "regular server maintenance"]
Notice how we used the shortcuts we had already defined to create new shortcuts? Like they say, it's shortcuts all the way down!
These nested shortcuts can span any consecutive part of an activity definition. This is valid…
kickoff = ["c", "kickoff meeting for project"]
… and can be used with all your projects, for example:
m start h kickoff # Tracks kickoff meeting for CHAZ 2020
m start o kickoff # Tracks kickoff meeting for OCP: ED-209
This is also valid (though not so useful):
acmedev = ["a", "d"]
This, however, is invalid:
invalid = ["a", "something ACME-related ¯\_(ツ)_/¯"]
Resume Tracking an Existing Entry
Often you might have to stop the clock for some activity and then start it back up it later.
If you have clocked in some entries for the day and run m start
without any arguments,
you will be presented with a list of the activities you recorded for the day paired with
keys you can press to select one of the entries. Note that unlike in the mite webapp,
time entries are sorted by the time they were updated last not by the time when they
were created.
You can skip this menu by passing the -l
flag (or --last
if you like typing) which
automatically starts the last entry for which you had a clock running.
Helper Commands
resume
m resume
is just an alias for m start -l
.
show/list
m show
and m list
show you a list of shortcuts. You can also request a list of
projects
or services
by providing these as arguments to the command. Note that
especially the list of projects has known to be long enough that you may want to pipe it
to a file or filter it with grep
.
Contributing
Very simple in terms of git: fork this repo, create a branch in your fork that contains
your work, open a pull request against the master
branch in this repo.
For local development, install the dependencies using poetry.
poetry install
poetry shell
pre-commit install
Please make sure to add tests for any code changes.
Why yet another mite CLI?
There are almost half a dozen command-line interfaces already in several languages (Ruby, JavaScript, Go, Python). There's even a PHP wrapper library. What is the need for yet another cli?
In my opinion all the existing interfaces provide both too much functionality and too little. They try to cover the complete range of tasks that can be performed with mite and expose all the gory details of the data, like the IDs of the objects involved. Indeed if you regularly have to import and export time records, or if your workflow includes managing projects and services for an account, these tools can arguably help you with your work.
However the way I see mite used most often involves starting and stopping the clock for activities "on the go" throughout the day. Quite a few of these activities are recurring, like check-in meetings with clients or team members. Moreover, most activities that a particular person specifies on a given day tend to revolve around just a handful of projects and services. Lastly, the active mite users I know seem to clock in and out throughout their day rather than enter all their time entries already with times attached, thus taking advantage of mite's built-in tracking capabilities.
This program aims to reduce the book-keeping cost of specifying activities and let the user focus on their work while instructing mite to do what it does best: track time. It deliberately exposes a very simple interface and deals in abstractions relevant primarily to someone only using mite to track their time.
Acknowledgements
This project would not have been possible at all without the folks who run mite making their API accessible. Many thanks to them for that. I am also grateful to the many people who wrote client libraries and cli tools based on the API. This provided context to my efforts and thus helped me define what I wanted to focus them on.
Licence
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file miteclock-2.0.tar.gz
.
File metadata
- Download URL: miteclock-2.0.tar.gz
- Upload date:
- Size: 17.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.8 CPython/3.9.7 Linux/5.14.9-200.fc34.x86_64
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a4be001df9a17c325e2ee4ffbbd4944e5e77841a83e0adb57119bba1e88ba484 |
|
MD5 | be98b7ecb03bebca676fdba9592ae329 |
|
BLAKE2b-256 | be05ad96fa572a8cb2caa9fd9d779b8baaab31c4bf8d686d7e962dbfe715ebdc |
File details
Details for the file miteclock-2.0-py3-none-any.whl
.
File metadata
- Download URL: miteclock-2.0-py3-none-any.whl
- Upload date:
- Size: 15.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.8 CPython/3.9.7 Linux/5.14.9-200.fc34.x86_64
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | da3ba6808ff901964373b14604e361855715489eaa7679847120112030c59118 |
|
MD5 | 4faed1bc2a44c58be0a0df9e2efb30c3 |
|
BLAKE2b-256 | 395c8de0014524111da9e4ea473bee0c7d73f8a30437a05e9527533527f1d437 |