对于需要通过服务器中转下载的服务,获取文件下载地址 :param code: :return:
(code: str)
| 55 | |
| 56 | |
| 57 | async def get_file_url(code: str): |
| 58 | """ |
| 59 | 对于需要通过服务器中转下载的服务,获取文件下载地址 |
| 60 | :param code: |
| 61 | :return: |
| 62 | """ |
| 63 | return f"/share/download?key={await get_select_token(code)}&code={code}" |
| 64 | |
| 65 | |
| 66 | async def max_save_times_desc(max_save_seconds: int): |
no test coverage detected