Update docstrings and add links

This commit is contained in:
Dima Gerasimov 2020-04-26 14:00:59 +01:00 committed by karlicoss
parent cd3f2996a3
commit 51ae8601b4
11 changed files with 13 additions and 13 deletions

View file

@ -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 from .. import init

View file

@ -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 from functools import lru_cache

View file

@ -1,5 +1,5 @@
""" """
Git commits data: crawls filesystem Git commits data for repositories on your filesystem
""" """
from pathlib import Path from pathlib import Path

View file

@ -1,6 +1,4 @@
'''
# TODO this probably belongs to cachew? or cachew.experimental # TODO this probably belongs to cachew? or cachew.experimental
'''
from contextlib import contextmanager from contextlib import contextmanager

View file

@ -1,3 +1,7 @@
'''
Google Takeout exports: browsing history, search/youtube/google play activity
'''
from enum import Enum from enum import Enum
import re import re
from pathlib import Path from pathlib import Path

View file

@ -1,5 +1,5 @@
""" """
Hypothes.is highlights and annotations [[https://hypothes.is][Hypothes.is]] highlights and annotations
""" """
from . import init from . import init

View file

@ -1,5 +1,5 @@
""" """
Google Takeout data Location data from Google Takeout
""" """
import json import json

View file

@ -1,6 +1,6 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
''' '''
PDF annotations on your filesystem PDF documents and annotations on your filesystem
''' '''
from . import init from . import init

View file

@ -1,5 +1,5 @@
""" """
pinboard.in bookmarks [[https://pinboard.in][Pinboard]] bookmarks
""" """
from . import init from . import init

View file

@ -1,5 +1,5 @@
""" """
Reddit data: saved items/comments/upvotes etc Reddit data: saved items/comments/upvotes/etc.
""" """
from . import init from . import init

View file

@ -1,7 +1,5 @@
""" """
Twitter data (uses official twitter archive export) Twitter data (uses [[https://help.twitter.com/en/managing-your-account/how-to-download-your-twitter-archive][official twitter archive export]])
See https://help.twitter.com/en/managing-your-account/how-to-download-your-twitter-archive
""" """
from datetime import datetime from datetime import datetime
from typing import Union, List, Dict, Set, Optional, Iterator, Any, NamedTuple from typing import Union, List, Dict, Set, Optional, Iterator, Any, NamedTuple