Skip to content

Commit a585537

Browse files
committed
feat(toggl): setup notebook for harvest conversion
1 parent f7dcdb6 commit a585537

File tree

2 files changed

+74
-0
lines changed

2 files changed

+74
-0
lines changed

.env.sample

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
HARVEST_DATA=data/harvest-sample.csv
2+
TOGGL_DATA=data/toggl-sample.csv

notebooks/toggl-to-harvest.ipynb

+73
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "code",
5+
"execution_count": 1,
6+
"metadata": {},
7+
"outputs": [],
8+
"source": [
9+
"import os\n",
10+
"from pathlib import Path\n",
11+
"import pandas as pd\n",
12+
"\n",
13+
"\n",
14+
"def str_timedelta(td):\n",
15+
" \"\"\"\n",
16+
" Convert a string formatted duration (e.g. 01:30) to a timedelta.\n",
17+
" \"\"\"\n",
18+
" return pd.to_timedelta(pd.to_datetime(td, format=\"%H:%M\").strftime(\"%H:%M:%S\"))\n",
19+
"\n",
20+
"\n",
21+
"DATA_DIR = Path(\"./data\")\n",
22+
"DATA_SOURCE = Path(os.environ.get(\"TOGGL_DATA\", \"./data/toggl-sample.csv\"))"
23+
]
24+
},
25+
{
26+
"cell_type": "code",
27+
"execution_count": null,
28+
"metadata": {},
29+
"outputs": [],
30+
"source": [
31+
"# assign category dtype for efficiency on repeating text columns\n",
32+
"dtypes = {\n",
33+
" \"Email\": \"category\",\n",
34+
" \"Project\": \"category\",\n",
35+
" \"Task\": \"category\",\n",
36+
" \"Client\": \"category\"\n",
37+
"}\n",
38+
"# skip reading the columns we don't care about for Harvest\n",
39+
"cols = list(dtypes) + [\n",
40+
" \"Start Date\",\n",
41+
" \"Start Time\",\n",
42+
" \"Duration\",\n",
43+
"]\n",
44+
"# read CSV file, parsing dates and times\n",
45+
"source = pd.read_csv(DATA_SOURCE, dtype=dtypes, usecols=cols, parse_dates=[\"Start Date\"], cache_dates=True)\n",
46+
"source[\"Start Time\"] = source[\"Start Time\"].apply(str_timedelta)\n",
47+
"source[\"Duration\"] = source[\"Duration\"].apply(str_timedelta)\n",
48+
"source.dtypes"
49+
]
50+
}
51+
],
52+
"metadata": {
53+
"kernelspec": {
54+
"display_name": "Python 3",
55+
"language": "python",
56+
"name": "python3"
57+
},
58+
"language_info": {
59+
"codemirror_mode": {
60+
"name": "ipython",
61+
"version": 3
62+
},
63+
"file_extension": ".py",
64+
"mimetype": "text/x-python",
65+
"name": "python",
66+
"nbconvert_exporter": "python",
67+
"pygments_lexer": "ipython3",
68+
"version": "3.11.6"
69+
}
70+
},
71+
"nbformat": 4,
72+
"nbformat_minor": 2
73+
}

0 commit comments

Comments
 (0)