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 T3n.de.
|
||||
/// </summary>
|
||||
public class T3nScraperAdapter : ArticleScraperAdapter
|
||||
{
|
||||
public override string Hostname => "t3n.de";
|
||||
|
||||
public override string ArticleBodySelector => "article.c-article, div.c-article__body, div.c-content";
|
||||
}
|
||||
Reference in New Issue
Block a user