1
Fork 0
ytlean/backend/app/main.py

14 lines
255 B
Python

from fastapi import FastAPI
import utils
app = FastAPI()
@app.get("/video")
def get_video(channel_name: str):
uploads = utils.get_uploads_playlist(channel_name)
videos = utils.get_all_videos(uploads)
return {
"id": videos[0]
}