Skip to content

Commit

Permalink
Merge pull request #101 from zytedata/mark-articles-as-experimental
Browse files Browse the repository at this point in the history
Mark Articles spider as experimental
  • Loading branch information
kmike authored Dec 13, 2024
2 parents 80aa641 + 9f2ef4b commit 96376a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/test_article.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ def test_metadata():
expected_metadata = {
"template": True,
"title": "Article",
"description": "Template for spiders that extract article data from news or blog websites.",
"description": "[Experimental] Template for spiders that extract article data from news or blog websites.",
"param_schema": {
"groups": [
{
Expand Down
2 changes: 1 addition & 1 deletion zyte_spider_templates/spiders/article.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ class ArticleSpider(Args[ArticleSpiderParams], BaseSpider):
metadata: Dict[str, Any] = {
**BaseSpider.metadata,
"title": "Article",
"description": "Template for spiders that extract article data from news or blog websites.",
"description": "[Experimental] Template for spiders that extract article data from news or blog websites.",
}

@classmethod
Expand Down

0 comments on commit 96376a5

Please sign in to comment.