Home > Net >  Can I auto upload images from the directory using Flask or anything else? [duplicate]
Can I auto upload images from the directory using Flask or anything else? [duplicate]

Time:10-09

Hello I'm new to python I'm finding a method to auto upload images to a webserver. Someone can help me? Thanks for the answer.

CodePudding user response:

You can use the Flask command-line Interface and create a method to upload files by reading a directory and if you need recurrent can use CRON task from the OS to auto-execute come times in the day also you can use this method may be called from a web interface as well:

Flask Command Line Interface

  • Related