diff options
author | Joris | 2019-03-10 19:15:45 +0100 |
---|---|---|
committer | Joris | 2019-03-10 19:15:45 +0100 |
commit | 8e03a571033a5d02d2287a2b1d1edd8b57aa2462 (patch) | |
tree | 03d6965bb65322dbac03edf2d6a30ee856c197f6 /visorando-scraper.cabal | |
parent | c41f16ed474376ad8a61a75d8b7f9ef543f359b4 (diff) |
Scrap result page and make a CSV of it
Diffstat (limited to 'visorando-scraper.cabal')
-rw-r--r-- | visorando-scraper.cabal | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/visorando-scraper.cabal b/visorando-scraper.cabal new file mode 100644 index 0000000..7dd24b6 --- /dev/null +++ b/visorando-scraper.cabal @@ -0,0 +1,25 @@ +name: visorando-scraper +version: 0.1.0.0 +license: BSD3 +license-file: LICENSE +author: Joris +maintainer: joris@guyonvarch.me +category: Data +build-type: Simple +extra-source-files: ChangeLog.md +cabal-version: >=1.10 + +executable visorando-scraper + hs-source-dirs: src + main-is: Main.hs + build-depends: base + , bytestring + , text + , tagsoup + , http-conduit + default-language: Haskell2010 + default-extensions: OverloadedStrings + other-modules: HTTP + , Scrapper + , Hiking + , CSV |