Skip to content

Commit

Permalink
Add README
Browse files Browse the repository at this point in the history
  • Loading branch information
j-vizcaino committed Oct 7, 2016
1 parent 093670d commit 76be6c5
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# `auvieux-scraper`: extract price and name from a *Au Vieux Campeur* product reference

This is a simple scraper used to extract product name and price given a reference.
Every product gets printed on stdout as a CSV line

## Usage

```shell
$ auvieux-scraper 12345 654321
Référence;Désignation;Prix TTC
12345;My super item;134
654321;Other important item;42
```

## Build

To compile this, you need:

* a working Go (>= 1.6) installation
* `make`
* `glide`

```shell
$ git clone https://github.com/j-vizcaino/auvieux-scraper.git $GOPATH/src/auvieux-scraper
$ cd $GOPATH/src/auvieux-scraper
$ make deps
$ make
```

0 comments on commit 76be6c5

Please sign in to comment.