We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30a3f22 commit 84c5be0Copy full SHA for 84c5be0
notebooks/toggl-to-harvest.ipynb
@@ -86,6 +86,22 @@
86
"source[\"Task\"] = \"Project Consulting\"\n",
87
"source[\"Task\"] = source[\"Task\"].astype(\"category\")"
88
]
89
+ },
90
+ {
91
+ "cell_type": "code",
92
+ "execution_count": null,
93
+ "metadata": {},
94
+ "outputs": [],
95
+ "source": [
96
+ "# cache of previously seen user information, keyed on email\n",
97
+ "USER_INFO = {}\n",
98
+ "NOT_FOUND = \"NOT FOUND\"\n",
99
+ "\n",
100
+ "if USER_INFO_FILE:\n",
101
+ " file_info = read_user_info()\n",
102
+ " USER_INFO.update(file_info)\n",
103
+ " print(f\"User info: {', '.join(USER_INFO.keys())}\")"
104
+ ]
105
}
106
],
107
"metadata": {
0 commit comments