2022-09-25 14:08:06 +00:00
|
|
|
from fastapi import FastAPI, Query
|
|
|
|
from utils import get_music
|
|
|
|
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
|
|
|
|
|
|
@app.get('/search')
|
|
|
|
async def search(
|
|
|
|
*,
|
2022-09-25 14:45:27 +00:00
|
|
|
service: str = "apple",
|
2022-09-25 14:08:06 +00:00
|
|
|
keyword: str = Query(..., title="The name of a song")
|
|
|
|
):
|
2022-09-25 14:45:27 +00:00
|
|
|
return await get_music(service, keyword)
|