Update docstrings and add links
This commit is contained in:
parent
cd3f2996a3
commit
51ae8601b4
11 changed files with 13 additions and 13 deletions
|
@ -1,5 +1,5 @@
|
|||
"""
|
||||
Kobo e-ink reader: annotations and reading stats
|
||||
[[https://uk.kobobooks.com/products/kobo-aura-one][Kobo]] e-ink reader: annotations and reading stats
|
||||
"""
|
||||
from .. import init
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
"""
|
||||
Provides data on days off work (based on public holidays + manual inputs)
|
||||
Public holidays (automatic) and days off work (manual inputs)
|
||||
"""
|
||||
|
||||
from functools import lru_cache
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
"""
|
||||
Git commits data: crawls filesystem
|
||||
Git commits data for repositories on your filesystem
|
||||
"""
|
||||
|
||||
from pathlib import Path
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
'''
|
||||
# TODO this probably belongs to cachew? or cachew.experimental
|
||||
'''
|
||||
from contextlib import contextmanager
|
||||
|
||||
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
'''
|
||||
Google Takeout exports: browsing history, search/youtube/google play activity
|
||||
'''
|
||||
|
||||
from enum import Enum
|
||||
import re
|
||||
from pathlib import Path
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
"""
|
||||
Hypothes.is highlights and annotations
|
||||
[[https://hypothes.is][Hypothes.is]] highlights and annotations
|
||||
"""
|
||||
from . import init
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
"""
|
||||
Google Takeout data
|
||||
Location data from Google Takeout
|
||||
"""
|
||||
|
||||
import json
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
'''
|
||||
PDF annotations on your filesystem
|
||||
PDF documents and annotations on your filesystem
|
||||
'''
|
||||
|
||||
from . import init
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
"""
|
||||
pinboard.in bookmarks
|
||||
[[https://pinboard.in][Pinboard]] bookmarks
|
||||
"""
|
||||
from . import init
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
"""
|
||||
Reddit data: saved items/comments/upvotes etc
|
||||
Reddit data: saved items/comments/upvotes/etc.
|
||||
"""
|
||||
from . import init
|
||||
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
"""
|
||||
Twitter data (uses official twitter archive export)
|
||||
|
||||
See https://help.twitter.com/en/managing-your-account/how-to-download-your-twitter-archive
|
||||
Twitter data (uses [[https://help.twitter.com/en/managing-your-account/how-to-download-your-twitter-archive][official twitter archive export]])
|
||||
"""
|
||||
from datetime import datetime
|
||||
from typing import Union, List, Dict, Set, Optional, Iterator, Any, NamedTuple
|
||||
|
|
Loading…
Add table
Reference in a new issue