Skip to content

pmatigakis/article-extraction

Repository files navigation

Article extraction library.

article-extraction is a package that can be used to extract the article content from an HTML page.

Installation

Use poetry to install the library from GitHub.

poetry add "git+https://github.com/pmatigakis/article-extraction.git"

Usage

Extract the content of an article using article-extraction.

from urllib.request import urlopen

from articles.mss.extractors import MSSArticleExtractor

document = urlopen("https://www.bbc.com/sport/formula1/64983451").read()
article_extractor = MSSArticleExtractor()
article = article_extractor.extract_article(document)
print(article)

About

Extract the article content from a page

Resources

License

Stars

Watchers

Forks

Packages

No packages published