A front-end UI program to browse and/or download scripts listed on Pythonista-Tools.
To install the program, copy and run following one-line python statements
in Pythonista interactive prompt. It saves the ptinstaller.py
file
to the current working directory.
import requests as r; o=open('ptinstaller.py','w'); o.write(r.get('http://j.mp/pt-i').text); o.close()
To customize the directory modules are installed to, create a file named ptinstaller.conf
with below content:
{
"install_path": "bin"
}
Execute the saved ptinstaller.py
program to launch the UI. Follow the
on-screen instruction to browse and install/uninstall scripts. The scripts are by default installed under ~/Documents/bin/
.