Skip to content

extractnet

194 9 11 MIT
2.0.7 (6 Nov 2022) Dec 11 2020 397 (month)

ExtractNet is an automated web data extraction tool using machine learning to parse HTML and text data.

This tool can be used in web scraping to automatically extract details from scraped HTML documents. While it's not as accurate as structured extraction using HTML parsing tools like CSS selectors or XPath it can still parse a lot of details.

Example Use


import requests
from extractnet import Extractor

raw_html = requests.get('https://currentsapi.services/en/blog/2019/03/27/python-microframework-benchmark/.html').text
results = Extractor().extract(raw_html)
{'phone_number': '555-555-5555', 'email': 'example@example.com'}

Alternatives / Similar


1,739 2024.2.26 (4 months ago) Dec 14 2008 compare
3,457 0.11.0 (1 year, 8 months ago) Oct 20 2013 compare
830 0.17.0 (a month ago) Oct 27 2015 compare
13,882 0.2.8 (5 years ago) Dec 28 2012 compare
3,188 1.11.0 (18 days ago) Jul 17 2019 compare
2,589 0.8.1 (4 years ago) Jun 30 2011 compare
10,672 1.1.9 (5 years ago) Aug 24 2018 compare

Other Languages

2,511 v1.3.0 (4 months ago) Apr 20 2016 compare
Was this page helpful?