blt - provides simple CLI superpowers.
Project description
# blt: provides simple CLI superpowers
blt is a python package that aims to make it easier for application developers to wrap command line interfaces for the various tools they use day to day. blt was inspired by Heroku’s toolbelt, fabric, and clint. We hope to stand on the shoulders of giants.
## Overview
At blt’s root is the concept of a tool, blt provides several tools out of the box. Currently we have support for:
AWS (S3)
Django
Heroku
South (django database migrations)
These tools encapsulate commands that you would want to interface with each system. For example, you might want to be able to push files to an S3 bucket with the AWS tool, or you might want to run a migration using the South tool. blt standardizes the interface for running the command and handles things like configuration injection so you can easily differentiate between dev/staging/prod settings when running a command.
## Real-world Example
Let’s take a quick look at a practical example of blt in action. Here is a sample command for running an AWS S3 sync on our staging environment:
`bash blt e:staging aws.sync_s3 /path/to/my/dir `
That’s it! Running that command will pick up the staging environment configuration, connect to S3, determine the changed files between the S3 bucket and the files in /path/to/my/dir, and push them up to AWS. blt is able to automatically grab things like AWS authentication keys for staging and inject the settings into the runtime so blt can connect to the bucket. Pretty sweet!
## blt Grammar
blt has an opinionated command grammar and enforces a strict way of running commands for tools. blt was designed to have a consistent run style so that no matter what tool you are running commands for, it will have the same basic format. Let’s break down the aws run from above:
- blt e:staging aws . sync_s3 /path/to/my/dir
^ ^ ^ ^ ^ ^ | | | | | | | | | | | |
blt executable environment tool separator command args
## Installation
Currently blt is not on PyPI, so you’ll need to build/install from the filesystem. Here are the steps to accomplish this:
#### Clone the blt rep
`bash git clone git@github.com:pubvest/utils.git `
#### Run the sdist directive on setup.py
`bash cd utils/blt python setup.py sdist `
#### Install via pip
`bash cd utils/blt/dist pip install blt-VERSION.tar.gz `
## More to come!
More documentaion/examples to come down the road!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file blt-0.2.1.tar.gz
.
File metadata
- Download URL: blt-0.2.1.tar.gz
- Upload date:
- Size: 21.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f76dc6fa61bcf196cf351ce03d29925d64cae407046b9abdcc3b87e069392d3b |
|
MD5 | fee3e6e75e94f9aad4cbc05d19fb8d37 |
|
BLAKE2b-256 | 1bc4fc9fa7d6675a68485d8ac6bd67ff462420de52f08e77255cc2890e82509a |