Pythonista Tools Installer

A front-end UI program to browse and/or download scripts listed on Pythonista-Tools.

Installation

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()

Configuration

To customize the directory modules are installed to, create a file named ptinstaller.conf with below content:

{
    "install_path": "bin"
}

Usage

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/.

Screenshots

1 2