Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ywangd/pythonista-tools-installer
Pythonista script installation made easy
https://github.com/ywangd/pythonista-tools-installer
Last synced: 3 months ago
JSON representation
Pythonista script installation made easy
- Host: GitHub
- URL: https://github.com/ywangd/pythonista-tools-installer
- Owner: ywangd
- License: mit
- Created: 2015-09-06T17:19:38.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-04-18T11:03:52.000Z (over 8 years ago)
- Last Synced: 2024-06-27T14:39:06.992Z (4 months ago)
- Language: Python
- Homepage:
- Size: 19.5 KB
- Stars: 256
- Watchers: 26
- Forks: 42
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- project-awesome - ywangd/pythonista-tools-installer - Pythonista script installation made easy (Python)
README
# Pythonista Tools Installer
A front-end UI program to browse and/or download scripts listed on
[Pythonista-Tools](https://github.com/Pythonista-Tools/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.```python
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:
```json
{
"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](https://cloud.githubusercontent.com/assets/2344308/9724048/58480568-5614-11e5-9403-d986adf82727.JPG) ![2](https://cloud.githubusercontent.com/assets/2344308/9724050/5e3736e2-5614-11e5-95ba-7333ec7c952d.JPG)