Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ryancheley/toggl-to-sqlite
Create a SQLite database containing data from your Toggl account.
https://github.com/ryancheley/toggl-to-sqlite
datasette oss python sqlite toggl
Last synced: 2 months ago
JSON representation
Create a SQLite database containing data from your Toggl account.
- Host: GitHub
- URL: https://github.com/ryancheley/toggl-to-sqlite
- Owner: ryancheley
- License: apache-2.0
- Created: 2021-03-06T23:15:37.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-08-06T00:03:34.000Z (5 months ago)
- Last Synced: 2024-10-25T09:47:23.721Z (3 months ago)
- Topics: datasette, oss, python, sqlite, toggl
- Language: Python
- Homepage:
- Size: 105 KB
- Stars: 8
- Watchers: 1
- Forks: 2
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Contributing: contributing.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# toggl-to-sqlite
[![PyPI](https://img.shields.io/pypi/v/toggl-to-sqlite.svg)](https://pypi.org/project/toggl-to-sqlite/)
[![GitHub changelog](https://img.shields.io/github/v/release/ryancheley/toggl-to-sqlite?include_prereleases&label=changelog)](https://github.com/ryancheley/toggl-to-sqlite/releases)
[![Tests](https://github.com/ryancheley/toggl-to-sqlite/workflows/Test/badge.svg)](https://github.com/ryancheley/toggl-to-sqlite/actions?query=workflow%3ATest)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/ryancheley/toggl-to-sqlite/blob/main/LICENSE)
[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/ryancheley/toggl-to-sqlite/main.svg)](https://results.pre-commit.ci/latest/github/ryancheley/toggl-to-sqlite/main)Create a SQLite database containing data from your [Toggl](https://toggl.com/) account.
## How to install
$ pip install toggl-to-sqlite
## Usage
You will need to first obtain a valid API token for your toggl account. You can do this by running the `auth` command and following the prompts:
$ toggl-to-sqlite auth
You will need to get your API Token from this pagehttps://track.toggl.com/profile
Once you have your API Token enter it at the command line.
Authentication tokens written to auth.json
Now you can fetch all of your items from toggl like this:
$ toggl-to-sqlite fetch toggl.db
**NB!** By default `toggl-to-sqlite` only fetches data from the 25 previous days. As an alternative you can specify to get time_entries since a specific date. You do this by specifying the `since` option:
$ toggl-to-sqlite fetch -s 2021-03-13
You can choose to get only `time_entries`, `projects`, or `workspaces` by speciying a type in the argument like this.
To get ONLY your workspaces:
$ toggl-to-sqlite fetch -t workspaces toggl.db
To get your workspaces and projects:
$ toggl-to-sqlite fetch -t workspaces -t projects toggl.db
The default is to get all three of `time_entries`, `projects`, and `workspaces`
## toggl-to-sqlite --help
```
Usage: toggl-to-sqlite [OPTIONS] COMMAND [ARGS]...Save Toggl data to a SQLite database
Options:
--version Show the version and exit.
--help Show this message and exit.Commands:
auth Save authentication credentials to a JSON file
fetch Save Toggl data to a SQLite database```
## Using with Datasette
The SQLite database produced by this tool is designed to be browsed using [Datasette](https://datasette.readthedocs.io/). Use the [datasette-render-timestamps](https://github.com/simonw/datasette-render-timestamps) plugin to improve the display of the timestamp values.