Trafilatura: Python tool to gather text on the Web
1–10 of 25 posts
Re: Trafilatura: Python tool to gather text on the Web
#2Re: Trafilatura: Python tool to gather text on the Web
#3Re: Trafilatura: Python tool to gather text on the Web
#4I wish there was a web service that used this tool to scrape nicely-formatted plain text from any website, then archive it and serve it as a super basic web reader.
Re: Trafilatura: Python tool to gather text on the Web
#5I wish there was a web service that used this tool to scrape nicely-formatted plain text from any website, then archive it and serve it as a super basic web reader.
Re: Trafilatura: Python tool to gather text on the Web
#6Re: Trafilatura: Python tool to gather text on the Web
#7I wish there was a web service that used this tool to scrape nicely-formatted plain text from any website, then archive it and serve it as a super basic web reader.
Re: Trafilatura: Python tool to gather text on the Web
#8What is the gap between this and beautiful soup?
Re: Trafilatura: Python tool to gather text on the Web
#9I wish there was a web service that used this tool to scrape nicely-formatted plain text from any website, then archive it and serve it as a super basic web reader.
check out nghota.com api. It is able to pull out the main text from most non-ecommerce web pages and return that to you in json.
The "demo" doesn't look like typing, it's a fade right, and it's painfully slow. And then, there's no library, it's just 'import requests', so even the demo is extra long. (Why not show curl then?)
Also, are there any benchmarks? Why should I take the time to evaluate this myself against existing open-source tools? It seems like that should be your responsibility, not mine, to spend the time doing a detailed comparison and evaluation. In a way that feels open and trustworthy.
I respect what you are doing and share this feedback from the heart.
Re: Trafilatura: Python tool to gather text on the Web
#10What is the gap between this and beautiful soup?
Basically: you could implement all of this on top of BeautifulSoup - polite crawling policies, sitemap and feed parsing, URL de-duplication, parallel processing, download queues, heuristics for extracting just the main article content, metadata extraction, language detection... but it would require writing an enormous amount of extra code.