Code Monkey home page Code Monkey logo

Comments (8)

eliasdorneles avatar eliasdorneles commented on July 26, 2024

If you want the element itself, you have to do h1 = sel.xpath(".//div/h1")[0].
You use extract() or extract_first() when you're only interested in the extracted content.

from parsel.

mega7star avatar mega7star commented on July 26, 2024

Ok, but i get parsel.selector.Selector:

>>> h1 = sel.xpath(".//div/h1")[0]
>>> type(h1)
<class 'parsel.selector.Selector'> # but no lxml.html.HtmlElement

from parsel.

eliasdorneles avatar eliasdorneles commented on July 26, 2024

From the selector, use the root attribute to get the lxml element.

from parsel.

mega7star avatar mega7star commented on July 26, 2024

From the selector, use the root attribute to get the lxml element.

Thanks. this make my day 👍 (may be add this to docs?)

from parsel.

eliasdorneles avatar eliasdorneles commented on July 26, 2024

Could be a nice addition to the docs, but I'd rather have a decision on #40 first, but I'd review a PR to the docs if you want to add something. :)

from parsel.

mega7star avatar mega7star commented on July 26, 2024

Yes, first i get <class 'lxml.etree._Element'> instead <class 'lxml.html.HtmlElement'>.
Maybe change this line:

from lxml import etree, html
...
def create_root_node(text, parser_cls, base_url=None):
    ...
    return html.fromstring(body, base_url=base_url)

That is call function fromstring from the package lxml.html but not lxml.etree

from parsel.

eliasdorneles avatar eliasdorneles commented on July 26, 2024

@mega7star see #40

from parsel.

eliasdorneles avatar eliasdorneles commented on July 26, 2024

Using Parsel from master, you're now able to get lxml.html.HtmlElement as we've switched to html.HTMLParser on #63

from parsel.

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.