Sitemap scraper for news article selection within a certain time range
Project description
About
This module provides the SitemapRange class and a tool to allow command-line usage sitemap_fetch.py.
The class SitemapRange is meant primarily as a generic building block for creating news aggregating applications where the datasources are spec-compliant news websites.
There are some fault-tolerance features included to deal with some inconsistencies in sitemaps.
Install
To install from pypi:
pip3 install --user sitemap-range-fetch
Usage
Fetching all news articles on cnn.com in the past 6 days, and format the result as JSON:
sitemap_fetch.py --site "https://cnn.com" --format json --daysago 6
Here is an example of using the SitemapRange class in your code:
from sitemap_range.sitemap_range import SitemapRange
from datetime import datetime, timedelta
sr = SitemapRange("https://cnn.com")
in_range = sr.get_articles_in_range(start=datetime.now()-timedelta(days=3), end=datetime.now(), opts={})
print(in_range)
The get_articles_in_range
method returns a list of dictionaries, where each dictionary has two
keys: "url"
and "dt"
which is an ISO 8601 formatted datetime string (as returned by the
isoformat method).
More details about the CLI switches:
usage: sitemap_fetch.py [-h] --site SITE [--format FORMAT] [--daysago DAYSAGO]
[--notz] [--advanced]
Tool for extracting articles from news websites
optional arguments:
-h, --help show this help message and exit
--site SITE the url for the website
--format FORMAT the url for the website
--daysago DAYSAGO defines the oldest date of an article that will be
selected (default: 2 days ago)
--notz strip the timezone from the dates before selection
(processing is more fault-tolerant)
--advanced use a more fault-tolerant parser
Details
This module is provided as is under MIT License.
For extensions, customizations or business inquiries you can get in touch here.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for sitemap-range-fetch-0.9.6.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2d9d0783cb9e8fe95dbb13c90dfbc407ced4aa8af3c329b87372b10cb7e8bd6c |
|
MD5 | 7eeecff747f74360d708bc048b0c0b21 |
|
BLAKE2b-256 | 3966d7fca765702d933dd3d27a38e3dc3b59d09da315e5d73bb5911e1f8c3aee |
Hashes for sitemap_range_fetch-0.9.6-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 15612c34cf867a0294a00a1b758900dd1a9bd9e3dce798b11fbef4fa19dfeae2 |
|
MD5 | 04bd120ff25ca53aaa726d024cf58eea |
|
BLAKE2b-256 | 9ab057e639360f2d4593382abb589d856784dc8d36067e679bb7ba203616dc4e |