-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GTIN extraction, Python 3.12 support #11
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## main #11 +/- ##
==========================================
+ Coverage 95.45% 96.69% +1.24%
==========================================
Files 6 7 +1
Lines 220 303 +83
==========================================
+ Hits 210 293 +83
Misses 10 10 ☔ View full report in Codecov by Sentry. |
docs/intro.rst
Outdated
@@ -4,7 +4,8 @@ Intro | |||
|
|||
``zyte-parsers`` provides functions that extract specific data from HTML | |||
elements. The input element can be an instance of either | |||
:class:`parsel.selector.Selector` or :class:`lxml.html.HtmlElement`. | |||
:class:`parsel.selector.Selector` or :class:`lxml.html.HtmlElement`. Some | |||
functions also support passing a string as input. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we should clarify what thi string is: should it be a string with HTML to extractd data from, or should it be text extracted from a HTML element?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
extracted from a HTML element
Or elsewhere (e.g. JSON, regexp).
No description provided.