Skip to content

Instantly share code, notes, and snippets.

@greinacker
greinacker / pythonista-install-boto.py
Created February 9, 2016 22:06 — forked from najibninaba/pythonista-install-boto.py
Pythonista script for installing boto
# Source: https://gist.github.com/najibninaba/5062153
#
# This script installs Boto in Pythonista. Run this script in your root folder and it will download and install Boto along with its
# dependencies. To use Boto, be sure to add boto-module in your sys.path before importing boto like so:
# import sys; sys.path.append('boto-module')
# import boto.ec2
#
# Credits:
# This script is inspired by omz's Evernote Installer script: https://gist.github.com/omz/5048588
#