Refactor news API integration to use NewsApiWrapper and GnewsWrapper; add tests for Gnews API functionality

This commit is contained in:
2025-09-30 00:34:07 +02:00
parent fc4753a245
commit c17a948ae0
10 changed files with 175 additions and 15 deletions

View File

@@ -1,3 +1,4 @@
from .news_api import NewsAPI
from .news_api import NewsApiWrapper
from .gnews_api import GnewsWrapper
__all__ = ["NewsAPI"]
__all__ = ["NewsApiWrapper", "GnewsWrapper"]