aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md26
1 files changed, 26 insertions, 0 deletions
diff --git a/README.md b/README.md
index 7ba167d..537e056 100644
--- a/README.md
+++ b/README.md
@@ -2,6 +2,32 @@
Want to download all ELS instagram photos, with at least date metadata, then
re-upload to wiki.mako.cc (or some other location).
+## Setup
+
+You will need bot credentials for `wiki.mako.cc`; you can get these from a
+special "bot password" page. The bot needs to be able to create images and
+pages. Copy `./example.env` to `.env` and edit the lines for username and
+password; put the bot info in, not your regular account info.
+
+Using `pipenv` to generate a python virtualenv:
+
+ pipenv shell
+ pip install instaloader requests
+
+First time you run the instaloader download, it is like:
+
+ instaloader profile --no-compress-json extraordinaryleastsquares
+
+then for updates:
+
+ instaloader --fast-update --no-compress-json extraordinaryleastsquares
+
+## Re-Upload All
+
+ pipenv run ./update.sh
+
+ ls extraordinaryleastsquares/2020-0*.json | parallel -j1 ./reupload.py {}
+
## Experimentation
Using `pipenv` to generate a python virtualenv: