hansard 0.1.3

Gets the last 20 Hansard Bound Volumes for the UK Parliament
Documentation

Hansard
========

[![crates.io version](https://img.shields.io/crates/v/hansard.svg)](https://crates.io/crates/hansard)

At the moment just grabs the last 20 [Hansard Bound Volumes](http://api.data.parliament.uk/resources/files/feed?dataset=14) zipfiles.

Usage: `hansard all` Gets the last 20 bound volumes and saves to ./data/ directory

Usage as library:
```rust
    extern crate hansard;

    use hansard::retrieve;

    fn main(){
        // call retrieve to start the download of the bound volumes
        retrieve::retrieve();
    }
```