crawlchain-0.2.0.0: Simulation user crawl paths

Safe HaskellNone
LanguageHaskell2010

Network.CrawlChain.CrawlingContext

Description

Enabling tests: provide different crawling implementations:

  • regular
  • storing the crawled URLs and its content to prepare new tests
  • reading the stored content in tests - has no real world application

Documentation

class CrawlingContext a where Source #

Minimal complete definition

crawler

Methods

crawler :: a -> Crawler Source #

crawler :: CrawlingContext a => a -> Crawler Source #

defaultContext :: DefaultCrawlingContext Source #

storingContext :: String -> DefaultCrawlingContext Source #

readingContext :: String -> DefaultCrawlingContext Source #