Skip to main content

Filter elements from feeds according to custom rules

Project description

Feed Filter

Build Status PyPI Version

Feed Filter is a Pelican plugin that filters elements from feeds.

Installation

This plugin can be installed via:

python -m pip install pelican-feed-filter

Usage

This plugin is configured through your Pelican configuration file, by setting the following variable:

FEED_FILTER = {}

Define feed paths and include/exclude filters to apply to matching feeds. Both feed paths and filters are matched using Unix shell-stye wildcards.

Filters are defined as:

  • include.item attribute
  • exclude.item_attribute

where item_attribute can be any feed item attribute, ie. title, link, author_name, categories, ...

You can also match pubdate and updateddate item attributes as strings formatted with the following format: %a, %d %b %Y %H:%M:%S (e.g. 'Thu, 28 Jun 2001 14:17:15')

Filter priorities

If an inclusion filter is defined, only feed elements that match the filter will be included in the feed.

If an exclusion filter is defined, all feed elements except those which match the filter will be included in the feed.

If both include and exclude filters are defined, all feed elements except those which match some exclusion filter but no inclusion filter, will be included in the feed.

If multiple inclusion/exclusion filters are defined for the same feed path, a single match is enough to include the item in the feed.

Usage examples

  • Include only posts in some categories into the global feed:
FEED_ATOM = 'feed/atom'
FEED_RSS = 'feed/rss'
FEED_FILTER = {
    'feed/*': {
        'include.categories': ['software-*', 'programming']
    }
}
  • Exclude an author from a category feed:
CATEGORY_FEED_ATOM = 'feed/{slug}.atom'
CATEGORY_FEED_RSS = 'feed/{slug}.rss'
FEED_FILTER = {
    'feed/a-category-slug.*': {
        'exclude.author_name': 'An Author name'
    }
}
  • Exclude an author from all category feeds:
CATEGORY_FEED_ATOM = 'feed/{slug}.atom'
CATEGORY_FEED_RSS = 'feed/{slug}.rss'
FEED_FILTER = {
    'feed/*.*': {
        'exclude.author_name': 'An Author name'
    }
}
  • In the global feed, exclude all posts in a category, except if written by a given author:
FEED_ATOM = 'feed/atom'
FEED_RSS = 'feed/rss'
FEED_FILTER = {
    'feed/*': {
        'include.author_name': 'An Author name',
        'exclude.category': 'software-development'
    }
}
  • In the global feed, exclude all posts whose title starts with "Review":
FEED_ATOM = 'feed/atom'
FEED_RSS = 'feed/rss'
FEED_FILTER = {
    'feed/*': {
        'exclude.title': 'Review*'
    }
}
  • In the global feed, include all posts written by a given author OR in a certain category, except if the title starts with "Review":
FEED_ATOM = 'feed/atom'
FEED_RSS = 'feed/rss'
FEED_FILTER = {
    'feed/*': {
        'include.author_name': 'An Author name',
        'include.category': 'software-development'
        'exclude.title': 'Review*'
    }
}

Contributing

Contributions are welcome and much appreciated. Every little bit helps. You can contribute by improving the documentation, adding missing features, and fixing bugs. You can also help out by reviewing and commenting on existing issues.

To start contributing to this plugin, review the Contributing to Pelican documentation, beginning with the Contributing Code section.

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

pelican_feed_filter-1.1.0.tar.gz (17.7 kB view details)

Uploaded Source

Built Distribution

pelican_feed_filter-1.1.0-py3-none-any.whl (17.7 kB view details)

Uploaded Python 3

File details

Details for the file pelican_feed_filter-1.1.0.tar.gz.

File metadata

  • Download URL: pelican_feed_filter-1.1.0.tar.gz
  • Upload date:
  • Size: 17.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.3.2 CPython/3.7.15 Linux/5.15.0-1031-azure

File hashes

Hashes for pelican_feed_filter-1.1.0.tar.gz
Algorithm Hash digest
SHA256 fe689ab4cc0db506e919154ab0b28e604e4e09f50c200b16a487001bf8ff045d
MD5 2e7391c6d240ede477592bc5a1739c88
BLAKE2b-256 1273ded4c54bb785b8246dd45135de4ad817122cbf798730f32e30ef7d1e684a

See more details on using hashes here.

File details

Details for the file pelican_feed_filter-1.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for pelican_feed_filter-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 23c6f49538a06503a37ca25b981be8d1604d1b282a341371cd9fa88582e00945
MD5 a5650544163ff9f90b220fb855ea3224
BLAKE2b-256 015566582a4246eb5d27407b55da045c97263b5d8d313b8da7a28a8d4afdea83

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page