├── README.md ├── mymusic.unknown ├── app.py └── index.html /README.md: -------------------------------------------------------------------------------- 1 | # kyc -------------------------------------------------------------------------------- /mymusic.unknown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayanfrontdev/kyc/HEAD/mymusic.unknown -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- 1 | from flask import Flask, request 2 | 3 | app = Flask(__name__) 4 | 5 | @app.route('/upload', methods=['POST']) 6 | def upload_file(): 7 | file = request.files['file.mymusic'] 8 | file.save('D:\music') # Save the file on the server 9 | 10 | return 'File uploaded successfully' 11 | 12 | if __name__ == '__main__': 13 | app.run() 14 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |