Giter VIP home page Giter VIP logo

Comments (6)

voith avatar voith commented on August 24, 2024

I had done something similar in parsel. scrapy/parsel#27

from itemloaders.

IAlwaysBeCoding avatar IAlwaysBeCoding commented on August 24, 2024

@voith that is really nice! You went the step further and got json out of html using xpath then using jmespath to get the stuff you want. However, my request is more for pure Json data that contains no html what so ever. I am scraping a lot of sites using the React framework and all of the data I need from these sites is in the Json. Plus, apis that consume Json is also another need to use jmespath. Just like xpath/css selectors are favor over regular expressions, jmespath are also favored over turning the json data into a python dict and access directly in loops and using key indexes. Jmespath provides a query string that can be used the same way as xpath/css selectors.

from itemloaders.

voith avatar voith commented on August 24, 2024

@IAlwaysBeCoding I understand your requirement. The above PR can also work only with Jmespath too.
My requirement was such that I needed chain selectors. I've scraped sites which give json with some embedded html in the response. So it would be nice to have nested selectors that would solve everyones need.
But the problem is that building such nested selectors is not that easy. My PR too is not a full proof solution. Its just a POC to take the idea ahead(I suspect that there will be several bugs in my implementation). There was quite a discussion held in scrapy/parsel#25 because of the complexity.

from itemloaders.

MaxValue avatar MaxValue commented on August 24, 2024

I think this feature should go to the ItemLoader repository: https://github.com/scrapy/itemloaders/

But I want it very much! The current workaround is probably defining a separate Item type for that (json) data item and then setting SelectJmes as input_processor.
That way, the item unfortunately is specific to the page.

from itemloaders.

Gallaecio avatar Gallaecio commented on August 24, 2024

I have this working in a project, and the path forward requires 4 changes in 3 repositories, 2 of them in Scrapy:

  • scrapy/scrapy#4961
  • scrapy/parsel#181
  • Add JMESPath support to itemloaders
  • Add JMESPath support to Scrapy (response.add_jmespath, otherwise you would need to use response.selector.add_jmespath)

from itemloaders.

Gallaecio avatar Gallaecio commented on August 24, 2024

I’m moving this to itemloaders since we have scrapy/scrapy#5894 for the remaining Scrapy work.

from itemloaders.

Related Issues (20)

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.