From f7a93735cd09d8156ae39956806124d3ba38c723 Mon Sep 17 00:00:00 2001 From: Siddhartha Date: Sun, 18 Sep 2022 12:49:16 +0530 Subject: [PATCH] add hpi config --- promnesia/hpi-config.py | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 promnesia/hpi-config.py diff --git a/promnesia/hpi-config.py b/promnesia/hpi-config.py new file mode 100644 index 0000000..a089815 --- /dev/null +++ b/promnesia/hpi-config.py @@ -0,0 +1,39 @@ +### HPI personal config +## see +# https://github.com/karlicoss/HPI/blob/master/doc/SETUP.org#setting-up-modules +# https://github.com/karlicoss/HPI/blob/master/doc/MODULES.org +## for some help on writing your own config + +# to quickly check your config, run: +# hpi config check + +# to quickly check a specific module setup, run hpi doctor , e.g.: +# hpi doctor my.reddit + +### useful default imports +from my.core import Paths, PathIsh, get_files +### + +class hypothesis: + ''' + Uses [[https://github.com/karlicoss/hypexport][hypexport]] outputs + ''' + + # path to the exported JSON data + export_path = '/Users/siddhartha/Projects/hpi-second-brain/exports/hypothesis' + +class reddit: + ''' + Uses [[https://github.com/karlicoss/rexport][rexport]] output. + ''' + class rexport: + export_path = '/Users/siddhartha/Projects/hpi-second-brain/exports/reddit' + + class pushshift: + export_path = '/Users/siddhartha/Projects/hpi-second-brain/exports/reddit' + +class lastfm: + ''' + Uses [[https://github.com/iiiypuk/lastfm-backup][lastfm-backup]] outputs + ''' + export_path = '/Users/siddhartha/Projects/hpi-second-brain/exports/lastfm'