Use the Sina SAE cloud storage instance and flasksae In the Python Web framework Flask

Source: Internet
Author: User

Use the Sina SAE cloud storage instance and flasksae In the Python Web framework Flask

For projects deployed on Sina application engine SAE, using Sina SAE cloud storage is a good storage solution.

Sina SAE cloud storage can only be used normally in the SAE environment. After simple encapsulation, it can be used directly in Flask. For project code, see Flask-SaeStorage on GitHub.

Sample Code:
Copy codeThe Code is as follows:
From flask import Flask
From flask_saestorage import SaeStorage
 
SAE_ACCESS_KEY = 'sae Access key'
SAE_SECRET_KEY = 'sae Secret key'
SAE_APP_NAME = 'sae App name'
SAE_BUCKET_NAME = 'sae Bucket name'
 
App = Flask (_ name __)
App. config. from_object (_ name __)
Sae_storage = SaeStorage (app)
# Or
# Sae_storage = SaeStorage ()
# Sae_storage.init_app (app)
 
# Save the file to SAE Storage
@ App. route ('/save ')
Def save ():
Data = 'data to save'
Filename = 'filename'
Ret = sae_storage.save (data, filename)
Return str (ret)
 
# Deleting files in SAE Storage
@ App. route ('/delete ')
Def delete ():
Filename = 'filename'
Ret = sae_storage.delete (filename)
Return str (ret)
 
# Obtain the public URL Based on the file name
@ App. route ('/url ')
Def url ():
Filename = 'filename'
Return sae_storage.url (filename)

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.