feat(news): add scraper adapters, article deduplication, blocklist service, and remove tracked publish artifacts
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.Playwright;
|
||||
|
||||
namespace FinlyticNews.Adapters.Scraping;
|
||||
|
||||
/// <summary>
|
||||
/// Specialized article scraper adapter for Moneycab.com.
|
||||
/// </summary>
|
||||
public class MoneycabScraperAdapter : ArticleScraperAdapter
|
||||
{
|
||||
public override string Hostname => "moneycab.com";
|
||||
|
||||
public override string ArticleBodySelector => "div.entry-content, article, div.post-content";
|
||||
}
|
||||
Reference in New Issue
Block a user