nasu 0.1.0

Command-line utility which poll on remote addresses in order to perform status checks periodically
Documentation
[
  {
    "id": "httpbin get",
    "type": "http",
    "task": {
      "interval": "*/5 * * * * *"
    },
    "params": {
      "url": "http://httpbin.org/get",
      "method": "GET",
      "headers": {
        "authorization": "Bearer abc",
        "content-type": "application/json"
      }
    }
  },
  {
    "id": "httpbin post",
    "type": "http",
    "task": {
      "interval": "* * */10 * * *"
    },
    "params": {
      "url": "http://httpbin.org/post",
      "method": "POST",
      "headers": {
        "authorization": "Bearer abc",
        "content-type": "application/json"
      }
    }
  }
]