Skip to content

Commit 9effcaa

Browse files
committed
Updating to show new features
1 parent 8d0fdd2 commit 9effcaa

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Create a SQLite database containing data from your [Toggl](https://toggl.com/) a
1414

1515
## Usage
1616

17-
You will need to first obtain a valid OAuth token for your toggl account. You can do this by running the `auth` command and following the prompts:
17+
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:
1818

1919
$ toggl-to-sqlite auth
2020
You will need to get your API Token from this page
@@ -41,7 +41,11 @@ To get your workspaces and projects:
4141

4242
The default is to get all three of `time_entries`, `projects`, and `workspaces`
4343

44+
Additionally, you can specify to get time_entries since a specific date. You do this by specifying the `since` option:
45+
46+
$ toggl-to-sqlite fetch -s 2021-03-13
4447

4548
## Using with Datasette
4649

47-
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.
50+
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.
51+

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup
22
import os
33

4-
VERSION = "0.1.6"
4+
VERSION = "0.2.0"
55

66

77
def get_long_description():

0 commit comments

Comments
 (0)