91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 75KB
    文件類型: .zip
    金幣: 1
    下載: 0 次
    發布日期: 2021-01-09
  • 語言: Python
  • 標簽:

資源簡介

使用Flask和sqlite3編寫的項目目錄應用程序

資源截圖

代碼片段和文件信息


from?flask?import?Flask?render_template?request?redirect?url_for?flash
from?sqlalchemy?import?create_engine
from?sqlalchemy.orm?import?sessionmaker
from?sqlalchemy.exc?import?IntegrityError
from?database_setup?import?base?Category?Item?User
from?flask?import?session?as?login_session
import?random
import?string
from?oauth2client.client?import?flow_from_clientsecrets
from?oauth2client.client?import?FlowExchangeError
import?httplib2
import?json
from?flask?import?make_response?jsonify
import?requests

app?=?Flask(__name__)

engine?=?create_engine(‘sqlite:///catalogapp.db‘)
base.metadata.bind?=?engine

DBSession?=?sessionmaker(bind=engine)
session?=?DBSession()

#?Google+?client?id?and?application?name
CLIENT_ID?=?json.loads(
????open(‘client_secrets.json‘?‘r‘).read())[‘web‘][‘client

?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2017-01-10?01:30??Cool-Item-Cataloger-master\
?????文件???????22983??2017-01-10?01:30??Cool-Item-Cataloger-master\application.py
?????文件????????1656??2017-01-10?01:30??Cool-Item-Cataloger-master\database_setup.py
?????文件????????1737??2017-01-10?01:30??Cool-Item-Cataloger-master\db_seed.py
?????文件?????????812??2017-01-10?01:30??Cool-Item-Cataloger-master\readme.md
?????目錄???????????0??2017-01-10?01:30??Cool-Item-Cataloger-master\static\
?????目錄???????????0??2017-01-10?01:30??Cool-Item-Cataloger-master\static\css\
?????文件?????????383??2017-01-10?01:30??Cool-Item-Cataloger-master\static\css\home.css
?????目錄???????????0??2017-01-10?01:30??Cool-Item-Cataloger-master\static\css\vendor\
?????文件??????121260??2017-01-10?01:30??Cool-Item-Cataloger-master\static\css\vendor\bootstrap.min.css
?????目錄???????????0??2017-01-10?01:30??Cool-Item-Cataloger-master\static\js\
?????文件???????????0??2017-01-10?01:30??Cool-Item-Cataloger-master\static\js\home.js
?????目錄???????????0??2017-01-10?01:30??Cool-Item-Cataloger-master\static\js\vendor\
?????文件???????36868??2017-01-10?01:30??Cool-Item-Cataloger-master\static\js\vendor\bootstrap.min.js
?????文件???????85659??2017-01-10?01:30??Cool-Item-Cataloger-master\static\js\vendor\jquery-2.2.3.min.js
?????目錄???????????0??2017-01-10?01:30??Cool-Item-Cataloger-master\templates\
?????文件????????4134??2017-01-10?01:30??Cool-Item-Cataloger-master\templates\application.html
?????目錄???????????0??2017-01-10?01:30??Cool-Item-Cataloger-master\templates\categories\
?????文件????????1013??2017-01-10?01:30??Cool-Item-Cataloger-master\templates\categories\delete.html
?????文件????????1533??2017-01-10?01:30??Cool-Item-Cataloger-master\templates\categories\edit.html
?????文件????????1097??2017-01-10?01:30??Cool-Item-Cataloger-master\templates\categories\new.html
?????文件????????1330??2017-01-10?01:30??Cool-Item-Cataloger-master\templates\categories\show.html
?????文件?????????912??2017-01-10?01:30??Cool-Item-Cataloger-master\templates\home.html
?????目錄???????????0??2017-01-10?01:30??Cool-Item-Cataloger-master\templates\items\
?????文件????????1070??2017-01-10?01:30??Cool-Item-Cataloger-master\templates\items\delete.html
?????文件????????1407??2017-01-10?01:30??Cool-Item-Cataloger-master\templates\items\edit.html
?????文件????????1398??2017-01-10?01:30??Cool-Item-Cataloger-master\templates\items\new.html
?????文件?????????718??2017-01-10?01:30??Cool-Item-Cataloger-master\templates\items\show.html
?????文件????????1790??2017-01-10?01:30??Cool-Item-Cataloger-master\templates\login.html

評論

共有 條評論