The Python Web framework Flask uses Baidu cloud to store BCS instances and flaskbcs

Source: Internet
Author: User

The Python Web framework Flask uses Baidu cloud to store BCS instances and flaskbcs

For projects deployed on Baidu application engine BAE, using Baidu Cloud Storage BCS (Baidu Cloud Storage) is a good Storage solution.

Baidu cloud storage has Python SDK. After simple encapsulation, it can be used directly in Flask. For the project code, see Flask-BCS on GitHub.

Sample Code:
Copy codeThe Code is as follows:
From flask import Flask
From flask_bcs import BCS
 
BCS_HOST = 'bcs host'
BCS_ACCESS_KEY = 'bcs Access key'
BCS_SECRET_KEY = 'bcs Secret key'
BCS_BUCKET_NAME = 'bcs Bucket name'
 
App = Flask (_ name __)
App. config. from_object (_ name __)
Bcs = BCS (app)
# Or
# Bcs = BCS ()
# Bcs. init_app (app)
 
# Save the file to BCS
@ App. route ('/save ')
Def save ():
Data = 'data to save'
Filename = 'filename'
Allow_referers = ['HTTP: // * .duapp.com/#', 'HTTP: // zhangxc.com/#']
# Do not set allow_referers to completely public
Ret = bcs. save (data, filename, allow_referers)
Return str (ret)
 
# Deleting files in BCS
@ App. route ('/delete ')
Def delete ():
Filename = 'filename'
Ret = bcs. delete (filename)
Return str (ret)
 
# Obtain the public URL Based on the file name
@ App. route ('/url ')
Def url ():
Filename = 'filename'
Return bcs. 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.