first commit

This commit is contained in:
mol
2023-02-04 00:14:50 +08:00
commit a2f1b6d4fd
51 changed files with 839 additions and 0 deletions

View File

@ -0,0 +1,6 @@
import os
def saveFile(name, data):
tempPath = os.path.join(os.path.dirname(__file__), 'temp')
with open(os.path.join(tempPath, f'{name}.m3u'), 'wb') as code:
code.write(data)