• Stars
    star
    249
  • Rank 162,053 (Top 4 %)
  • Language
    Python
  • License
    MIT License
  • Created about 9 years ago
  • Updated over 8 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Pythonista script installation made easy

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