mia icon indicating copy to clipboard operation
mia copied to clipboard

Experimental Algorithmia CLI (no longer the official CLI)

THE OFFICIAL ALGORITHMIA CLI HAS MOVED TO https://github.com/algorithmiaio/algorithmia-python

This repo is now for experimenting with CLI-based interactions with Algorithmia and the Algorithmia rust client. To clearly disambiguate from algo, the official Algorithmia CLI, this project is changing its name to mia.

mia

Build Status

mia is a cross-platform tool for interfacing with algorithms and the Algorithmia Data API.

Installing mia

The latest releases & changelog can be found here.

Linux and OSX

Install is by running:

curl -sSLf https://raw.githubusercontent.com/anowell/mia/master/install.sh | sh

Windows

Download and extract the latest Windows x86_64 zip file. We recommend putting it within your PATH.

If needed, you can also find both MSVC and GNU builds for x86 and x86_64 on the release page.

Alternate Installation Methods

Debian/Ubuntu

For our Debian/Ubuntu users, a .deb package is also available for installation with dpkg. Simply run the following:

curl -OL https://github.com/anowell/mia/releases/download/v1.0.1/algorithmia-v1.0.1-x86_64-unknown-linux-gnu.deb
sudo dpkg -i algorithmia-v1.0.1-x86_64-unknown-linux-gnu.deb

Arch

Arch packages available on the AUR as algorithmia-bin and algorithmia-git. Use your favorite AUR helper (e.g. aura):

aura -A algorithmia-bin

Configure Authentication

In order to make calls with the CLI, you'll need to configure the authentication with an API key. If you don't already have an API key, get started by signing up for an account at Algorithmia.com. Once you've completed the sign up process, copy the API key from your account dashboard.

Begin the configuration process by running the command mia auth. You will see an interactive prompt to guide you through setting up a default profile:

$ mia auth
Configuring authentication for 'default' profile
Enter API Endpoint [https://api.algorithmia.com]:
Enter API Key (prefixed with 'sim'):
Profile is ready to use. Test with 'mia ls'

See Using multiple profiles for instructions on how to set authenticate and use more than one profile with the Algorithmia CLI tool.

Usage

To call an algorithm from the CLI, use the command syntax: mia run, followed by the algorithm’s username and algorithm name, the data options, and finally the input. Here is a basic example calling the Factor algorithm:

$ mia run kenny/factor -d 19635
[3,5,7,11,17]

Add the option --response-body to see the full JSON response:

$ mia run kenny/factor -d 19635 --response-body
{"result":[3,5,7,11,17],"metadata":{"content_type":"json","duration":0.001427314}}

Run mia run --help to see more command options or view the following Options section.

Options

Input Data Options

There are several options for specifying the type and source of input data. The Algorithmia CLI supports JSON, text, and binary data, as well as an option to auto-detect the data type.

Option Flag Description
-d, --data If the data parses as JSON, assume JSON, else if the data is valid UTF-8, assume text, else assume binary
-D, --data-file Same as --data, but the input data is read from a file

You may also explictly specify the input type as text (-t/-T), json (-j/-J), or binary (-b/-B) instead of using the auto-detection (-d/-D).

Output Options

The algorithm result is printed to STDOUT by defauft. Additional notices may be printed to STDERR. If you'd like to output the result to a file, use the output option flag followed by a filename:

$ mia run kenny/factor -d 17 --output results.txt
Option Flag Description
--debug Print algorithm's STDOUT (author-only)
--response-body Print HTTP response body (replaces result)
--response Print full HTTP response including headers (replaces result)
-s, --silence Suppress any output not explicitly requested (except result)
-o, --output Print result to a file

Other Options

Option Flag Description
--timeout Sets algorithm timeout

Examples:

$ mia run kenny/factor/0.1.0 -d '79'                   Run algorithm with specified version & data input
$ mia run anowell/Dijkstra -D routes.json              Run algorithm with file input
$ mia run anowell/Dijkstra -D - < routes.json          Same as above but using STDIN
$ mia run opencv/SmartThumbnail -D in.png -o out.png   Runs algorithm with binary files as input
$ mia run kenny/factor -d 17 --timeout 2               Runs algorithm with a timeout of 2 seconds

The Algorithmia Data API

Use the Algorithmia CLI to interact with the Algorithmia Data API. You can use the CLI to create and manage your data directories.

Data commands include:

Command Description
ls List contents of a data directory
mkdir Create a data directory
rmdir Delete a data directory
rm Remove a file from a data directory
cp Copy file(s) to or from a data directory
cat Concatenate & print file(s) in a directory

Examples of the Algorithmia Data API usage:

Create a data directory:

$ mia mkdir .my/cuteAnimals

Created directory data://.my/cuteAnimals

Copy a file from your local directory to the new data directory:

$ mia cp chubby_kittens.jpg data://.my/cuteAnimals

Uploaded data://.my/cuteAnimals/chubby_kittens.jpg

Using multiple profiles

Add additional profiles

With the Algorithmia CLI, you can configure multiple custom profiles to use. To add a new profile, simply specify a profile to mia auth follow the same interactive prompt.

$ mia auth --profile second_user
Configuring authentication for 'second_user' profile
Enter API Key (prefixed with 'sim'):
Profile is ready to use. Test with 'mia ls --profile second_user'

Now you may use mia ls --profile second_user to list files in your second_user account. For more information, see the auth command help with mia auth --help.

Using profiles in commands

When running commands, the Algorithmia CLI will use the default profile unless otherwise specified with the --profile <profile> option. See the following example:

$ mia run kenny/factor -d 17 --profile second_user
[17]

Build & Test

This project is built and tested with cargo:

cargo build
cargo test