1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*!
    Library to get the last 20 Hansard Bound Volumes of the UK Parliament

    Usage:

    ```
        extern crate hansard;

        use hansard::retrieve;

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

*/

#![deny(missing_docs)]

extern crate atom_syndication;
extern crate hyper;
extern crate zip;
#[macro_use]
extern crate log;

/// Module for retrieving the Hansard bound volumes
pub mod retrieve;