steve icon indicating copy to clipboard operation
steve copied to clipboard

command line interface for adding videos to a richard instance

Results 15 steve issues
Sort by recently updated
recently updated
newest added

This is to fix these errors I'm having while using `steve-cmd webedit` and clicking on a file to edit. (I'm not running the command from steve repo clone) ``` ----------------------------------------...

I got frustrated about the lack of progress information when running steve-cmd fetch, so I wanted to [use youtube-dl as a library](https://github.com/rg3/youtube-dl/blob/master/README.md#embedding-youtube-dl) to get metadata from playlists Sample output for...

There are a bunch of calls to `err()` in `steve/utils.py`. That module shouldn't be printing anything. It should throw exceptions and then `steve/cmdline.py` things should print to stdout/stderr.

We have a bunch of command line functions that have code that figures out the api key to use. It's the same. We should extract it and put it in...

Fetch does a bunch of things not covered by the current tests. This issue covers adding these tests: 1. verify fetch fails if there's no url 2. verify fetch fetches...

We need to be able to keep track of the state of video metadata in arbitrary ways. I was thinking we could do one of two things: 1. use a...

steve should support Python 2.7 and 3.3+.

JSON is a pain in the ass to edit by hand especially summary and description fields. Plus it's picky about quotes and commas and things. Maybe YAML is a better...

Now that click is used for the commandline, bash commandline completion is relatively easy set up ( http://click.pocoo.org/5/bashcomplete/ ). This should be described/referenced in the docs.

Probably want to use blessings to get colors and tables and such. Might even want to specify which fields you want to see. So, it defaults to: - title -...