python-dependency-injector/examples/miniapps/fastapi/giphynavigator/services.py

19 lines
444 B
Python
Raw Normal View History

2020-11-13 01:48:07 +03:00
"""Services module."""
from .giphy import GiphyClient
class SearchService:
def __init__(self, giphy_client: GiphyClient):
self._giphy_client = giphy_client
async def search(self, query, limit):
"""Search for gifs and return formatted data."""
if not query:
return []
result = await self._giphy_client.search(query, limit)
2021-09-30 23:55:50 +03:00
return [{"url": gif["url"]} for gif in result["data"]]