169 lines
3.3 KiB
Python
169 lines
3.3 KiB
Python
'''
|
|
NOTE: you shouldn't modify this file.
|
|
You probably want to edit your personal config (check via 'hpi config check' or create with 'hpi config create').
|
|
|
|
See https://github.com/karlicoss/HPI/blob/master/doc/SETUP.org#setting-up-modules for info on creating your own config
|
|
|
|
This file is used for:
|
|
- documentation (as an example of the config structure)
|
|
- mypy: this file provides some type annotations
|
|
- for loading the actual user config
|
|
'''
|
|
#### NOTE: you won't need this line VVVV in your personal config
|
|
from my.core import init
|
|
###
|
|
|
|
|
|
from my.core import Paths, PathIsh
|
|
|
|
class hypothesis:
|
|
# expects outputs from https://github.com/karlicoss/hypexport
|
|
# (it's just the standard Hypothes.is export format)
|
|
export_path: Paths = r'/path/to/hypothesis/data'
|
|
|
|
class instapaper:
|
|
export_path: Paths = ''
|
|
|
|
class smscalls:
|
|
export_path: Paths = ''
|
|
|
|
class pocket:
|
|
export_path: Paths = ''
|
|
|
|
class github:
|
|
export_path: Paths = ''
|
|
|
|
gdpr_dir: Paths = ''
|
|
|
|
class reddit:
|
|
class rexport:
|
|
export_path: Paths = ''
|
|
class pushshift:
|
|
export_path: Paths = ''
|
|
class gdpr:
|
|
export_path: Paths = ''
|
|
|
|
class endomondo:
|
|
export_path: Paths = ''
|
|
|
|
class exercise:
|
|
workout_log: PathIsh = '/some/path.org'
|
|
|
|
class bluemaestro:
|
|
export_path: Paths = ''
|
|
|
|
class stackexchange:
|
|
export_path: Paths = ''
|
|
|
|
class goodreads:
|
|
export_path: Paths = ''
|
|
|
|
class pinboard:
|
|
export_dir: Paths = ''
|
|
|
|
class google:
|
|
takeout_path: Paths = ''
|
|
|
|
|
|
from typing import Sequence, Union, Tuple
|
|
from datetime import datetime, date
|
|
DateIsh = Union[datetime, date, str]
|
|
LatLon = Tuple[float, float]
|
|
class location:
|
|
# todo ugh, need to think about it... mypy wants the type here to be general, otherwise it can't deduce
|
|
# and we can't import the types from the module itself, otherwise would be circular. common module?
|
|
home: Union[LatLon, Sequence[Tuple[DateIsh, LatLon]]] = (1.0, -1.0)
|
|
|
|
class via_ip:
|
|
accuracy: float
|
|
|
|
class gpslogger:
|
|
export_path: Paths = ''
|
|
accuracy: float
|
|
|
|
|
|
from my.core.compat import Literal
|
|
class time:
|
|
class tz:
|
|
policy: Literal['keep', 'convert', 'throw']
|
|
|
|
class via_location:
|
|
fast: bool
|
|
sort_locations: bool
|
|
require_accuracy: float
|
|
|
|
|
|
class orgmode:
|
|
paths: Paths
|
|
|
|
|
|
class arbtt:
|
|
logfiles: Paths
|
|
|
|
|
|
from typing import Optional
|
|
class commits:
|
|
emails: Optional[Sequence[str]]
|
|
names: Optional[Sequence[str]]
|
|
roots: Sequence[PathIsh]
|
|
|
|
|
|
class pdfs:
|
|
paths: Paths
|
|
|
|
|
|
class zulip:
|
|
class organization:
|
|
export_path: Paths
|
|
|
|
|
|
class bumble:
|
|
class android:
|
|
export_path: Paths
|
|
|
|
|
|
class tinder:
|
|
class android:
|
|
export_path: Paths
|
|
|
|
|
|
class instagram:
|
|
class android:
|
|
export_path: Paths
|
|
class gdpr:
|
|
export_path: Paths
|
|
|
|
|
|
class hackernews:
|
|
class dogsheep:
|
|
export_path: Paths
|
|
|
|
|
|
class fbmessenger:
|
|
class fbmessengerexport:
|
|
export_db: PathIsh
|
|
facebook_id: Optional[str]
|
|
class android:
|
|
export_path: Paths
|
|
|
|
|
|
class twitter_archive:
|
|
export_path: Paths
|
|
|
|
|
|
class twitter:
|
|
class talon:
|
|
export_path: Paths
|
|
|
|
class browser:
|
|
class export:
|
|
export_path: Paths = ''
|
|
class active_browser:
|
|
export_path: Paths = ''
|
|
|
|
|
|
class telegram:
|
|
class telegram_backup:
|
|
export_path: PathIsh = ''
|
|
|
|
|