Giter Site home page Giter Site logo

Comments (4)

muety avatar muety commented on June 19, 2024

Good idea! How would you want to proceed with tolerance and XPath parameters? Would you suggest to configure them separate for each URL (see below) or globally for all? What would be appropriate for your use case?

# (url, tolerance, xpath)
https://url1.com, 75, /body
https://url2.com, 0, //div[name="article-container"]
...

from website-watcher.

coveritytest avatar coveritytest commented on June 19, 2024

Separate for each URL would be nice of course :) What do you think of json as input?

{
  "url_list": [
    {
      "url": "https://url1.com",
      "tolerance": 75,
      "xpath": "/body"
    },
    {
      "url": "https://url2.com",
      "tolerance": 0,
      "xpath": "//div[name='article-container']"
    }
  ]
}

from website-watcher.

muety avatar muety commented on June 19, 2024

A JSON-formatted scrape config like the one you suggested seems to be a good option.

I'm thinking about keeping the logic for performing multiple scrapes outside of the actual watcher and provide a Bash script instead. It would read JSON config, iterate the array of URLs and parameters and call watcher.py for each entry. Doing so wouldn't add additional complexity to the actual code and have control logic separated from business logic. The only drawback would be the fact that Windows users wouldn't be able to use that functionality unless we also provide a Batch- or PowerShell script.

from website-watcher.

coveritytest avatar coveritytest commented on June 19, 2024

Yeah that's a good point, might be better to do it this way. Maybe then CSV would be easier to parse in a Bash script. On the other hand, with tools like jq JSON shouldn't be a problem either.

from website-watcher.

Related Issues (17)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.