
Product
Announcing Precomputed Reachability Analysis in Socket
Socket’s precomputed reachability slashes false positives by flagging up to 80% of vulnerabilities as irrelevant, with no setup and instant results.
devovercome.webscrap
Advanced tools
A HTML
parser, for extracting the text from a web pages, with CSS
selectors.
The purpose of this library is to get the essential data from a web-page for a user, in JSON
format.
It could be further used for:
WebScrap.API
namespace as entry point.Extract.Html
with html
and css
.using WebScrap.API;
var css = ".target";
var html = """
<main>
<span class="target"> Two </span>
<span class="target buzz"> Three </span>
<span id="four" class="target buzz"> Four </span>
<table class="target">
<tr> <th> Key </th> <th> Value </th> </tr>
<tr> <td> Width </td> <td> 2 </td> </tr>
<tr> <td> Height </td> <td> 3 </td> </tr>
</table>
</main>
""";
var result = new Scrapper()
.Scrap(html, css)
.AsJson()
.ToJsonString();
OUTPUT:
[
{
"key": ".target",
"values":
[
{ "value": "Two" },
{ "value": "Three" },
{ "value": "Four" },
{ "value":
{
"headers": ["Key", "Value"],
"values": [
["Width", "2"],
["Height", "3"]
]
}
}
]
}
]
The project currently under active development, and there are some issues, some of the obvious, which are not the priority right now.
No SDK found
: VSCode reports "No SDK found" if second workspace is opened. @2023.11.19Please look for a Known issues tests sets, for actual list of current well-known issues.
This project is for extracting text from html in a performant way.
Plain text
: This tool must extract a plain text from html.User-defined result structure
: The amount of text, and it's structure is defined by user, via multiple css selectors.Parallel processing
: All of css selectors should process the html in parallel.Stream-based processing
: The processed parts of html should be disposed from memory.FAQs
Unknown package
We found that devovercome.webscrap demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket’s precomputed reachability slashes false positives by flagging up to 80% of vulnerabilities as irrelevant, with no setup and instant results.
Product
Socket is launching experimental protection for Chrome extensions, scanning for malware and risky permissions to prevent silent supply chain attacks.
Product
Add secure dependency scanning to Claude Desktop with Socket MCP, a one-click extension that keeps your coding conversations safe from malicious packages.