apnews

A simple web scraper for Associated Press


License
MIT
Install
pip install apnews==0.1.1

Documentation

APNews Web Scraper

This Python package, apnews, provides a simple way to scrape top news articles from the Associated Press website.

Installation

You can install apnews from PyPI:

pip install apnews

Usage

Here is an example of how to use apnews:

import apnews

articles = apnews.scrape_top_news()
for title, article in articles:
    print(title, article)

License

This project is licensed under the terms of the MIT license.