Skip to content

charud/get

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

47 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

get

Retrieve and pipe data from the web with this CLI.
This project is not ready for use unless you intend to hack on it.

Goals:

  • Simple to use
  • Small and maintanable code base
  • Small, maintanable and easy-to-write plugins to add support for new services
  • Avoid unnecessary states and perform all operations asynchronously with lazy evaluation

Example:

$ get tickets from agilezen and order by priority
  • get is the name of the executable
  • agilezen is the plugin
  • tickets is an action on agilezen
  • order by is a general action provided by get
  • priority is an attribute of the result
  • from and and are unknowns and therefore ignored

Another example: (the two below are equal)

 $ get ticket number 4 from agilezen + trello | find tickets with title on jira 
 $ get agilezen + trello ticket 4 | jira find title 

Which will find find tickets on jira with titles that match any of the titles from the two tickets with ticketnumber 4 on agilezen and trello

License

(The MIT License)

Copyright (c) 2012 Charlie Rudenstål <charlie4@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Releases

No releases published

Packages

No packages published