mirror of
https://github.com/tcsenpai/swingmusic.git
synced 2025-06-08 12:15:39 +00:00
28 lines
575 B
Python
28 lines
575 B
Python
import os
|
|
import urllib
|
|
from typing import List
|
|
from flask import request, send_file
|
|
|
|
from app import functions, instances, helpers, cache, models, prep
|
|
from app import albumslib, searchlib
|
|
from app import trackslib
|
|
from app import api
|
|
|
|
|
|
home_dir = helpers.home_dir
|
|
|
|
# @api.bp.route("/populate")
|
|
# def find_tracks():
|
|
# """call the populate function"""
|
|
# functions.populate()
|
|
# return "🎸"
|
|
|
|
|
|
# @api.bp.route("/populate/images")
|
|
# def populate_images():
|
|
# """
|
|
# Populates the artist images.
|
|
# """
|
|
# functions.populate_images()
|
|
# return "Done"
|