htable2csv 0.1.1

Convert and parse HTML tables to .csv files.
# htable2csv
Convert HTML table to .csv file.

###
Program accepts an http uri and downloads HTML tables 
contained as .csv files.




```bash
cargo run https://www.w3schools.com/html/html_tables.asp
```

 Install (from crates.io)

```bash
cargo install htable2csv
```

 Run 

```bash
htable2csv https://www.w3schools.com/html/html_tables.asp
```
Help

```bash
htable2csv -h

htable2csv 0.1.1
Kostas L. <konlampro94@gmail.com>
Scrapes HTML tables from the web!

USAGE:
    htable2csv <uri> [ARGS]

FLAGS:
    -h, --help       Prints help information
    -V, --version    Prints version information

ARGS:
    <uri>        Http page url to be scraped. (Required)
    <out_dir>    Relative path for the folder to place the output. (Optional)
    <prefix>     File prefix for the output files for each table. (Optional)

```