You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
HOWTO use iOS-apps-"share with"-menu to call (custom) python(ista)-scripts by example
AddToReminiscence
Reminiscense is an
open-source self-hosted bookmark and archive manager.
This example shows you how to send/archive a page/URL from your mobile
browser via the "share with"-menu.
This is done by using Pythonista3
to call a short Python-script (add2reminiscence.py). The script uses
Reminiscence's REST-API and runs on any platform Python runs on.
requirements:
Pythonista3 - A full PythonIDE for iOS (non-free :-/)
(optional) StaSh - a serious attempt to implement a Bash-like shell for Pythonista.
How to add a pythonista Shortcut
select "share with"/"Run Pythonista Script" in your browser
select "Edit" and use the "+" symbol to add a new Shortcut (here our Python-script)
select the add2reminiscence.py-Script
fill in the 3 needed arguments for the script: <url-of-your-reminiscence-instance> <user> <password>
(optional) choose a fancy icon and color ;)
click "Add" and then "Done"
How to use the pythonista Shortcut
select "share with"/"Run Pythonista Script" while browsing the url you want to archive
select "add2reminiscence"
About
HOWTO use iOS-apps-"share with"-menu to call (custom) python(ista)-scripts by example