
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Command line interface for interacting with Tempo.
Ease repetitive Tempo tasks by using templates to fill in recurring items without having to use web interface. Templates are yaml formatted files that are semi-flexible in allowing what can be created.
The author_account_id
can be obtained by going to your profile in
JIRA and copying the ID from the URL.
----
author_account_id: foo
issues:
# Will use current date if one can't be determined.
- issue: INT-8
time_spent: 30m
start_time: "9:30AM"
# Can specify day of week easily.
- issue: INT-10
time_spent: 1h
start_time: Monday at 9AM
# Full on datetime with override.
- issue: INT-11
time_spent: 90s
start_time: "2018-08-05 11:00:00"
author_account_id: bar
# Pass in extras that aren't exposed in DSL.
# https://tempo-io.github.io/tempo-api-docs/#worklogs
- issue: INT-11
time_spent: 1h
start_time: 8am
extras:
remainingEstimateSeconds: 300
$ pip install tempocli
$ tempocli --config <config> create --template <template>
By default, ~/.tempocli.yml
is the path used for the configuration
file but that can be changed with the --config
option during
invocation. The configuration file should look like this:
---
token: <token>
It is also possible to specify the token using the TEMPOCLI_TOKEN
environment variable.
$ docker run \
--rm \
--tty \
--interactive \
--volume ~/.tempocli.yml:/home/tempocli/.tempocli.yml:ro \
--volume /some/dir/with/templates:/templates:ro \
awiddersheim/tempocli \
create --template /templates/template.yml
$ docker build --tag tempocli --target prod .
$ pip install --editable .
$ tempocli --help
# Install development packages (preferably in a virtualenv)
$ pip install --editable .[dev]
# Run tests
$ pytest
# Run tests for available Python interpreters
$ tox
# Linting
$ flake8
# Can also lint in tox as well
$ tox -e flake8
FAQs
Command line interface for interacting with Tempo.
We found that tempocli demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.