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

  • 大小: 531KB
    文件類型: .zip
    金幣: 2
    下載: 1 次
    發(fā)布日期: 2021-06-17
  • 語言: Python
  • 標(biāo)簽:

資源簡介

PermaNote是基于Sandstorm開源的個(gè)人云筆記應(yīng)用,擁有強(qiáng)大的搜索功能,快速定位所要尋找的筆記。 特性: 支持Markdown 編輯 支持復(fù)制、粘貼、拖拽上傳圖片 支持全文搜索 代碼高亮 標(biāo)簽 支持嵌入視頻等多媒體文件 快捷鍵創(chuàng)建、提交筆記

資源截圖

代碼片段和文件信息

import?os

from?flask?import?Flask
from?playhouse.flask_utils?import?FlaskDB

#?Configuration?values.
APP_DIR?=?os.path.dirname(os.path.realpath(__file__))

#?The?playhouse.flask_utils.FlaskDB?object?accepts?database?URL?configuration
#?set?db?location?and?debug?depending?on?if?the?app?is?running?locally?or
#?in?production?on?Sandstorm
if?os.getenv(‘SANDSTORM‘):
????DATAbase?=?‘sqliteext:////var/permanote.db‘
else:
????DATAbase?=?‘sqliteext:///%s‘?%?os.path.join(APP_DIR?‘permanote.db‘)

application?=?Flask(__name__)
application.config.from_object(__name__)

#?FlaskDB?is?a?wrapper?for?a?peewee?database?that?sets?up?pre/post-request
#?hooks?for?managing?database?connections.
flask_db?=?FlaskDB(application)

#?The?‘database‘?is?the?actual?peewee?database?as?opposed?to?flask_db?which?is
#?the?wrapper.
database?=?flask_db.database

#?Upload?folder?and?file?allowed?extensions
if?os.getenv(‘SANDSTORM‘):
????application.config[‘UPLOAD_FOLDER‘]?=?‘/var/uploads‘
????application.config[‘DEBUG‘]?=?False
else:
????application.config[‘UPLOAD_FOLDER‘]?=?‘%s/uploads‘?%?os.path.join(APP_DIR)
????application.config[‘DEBUG‘]?=?True

#?file?types?allowed?for?upload
application.config[‘ALLOWED_EXTENSIONS‘]?=?set([‘jpg‘?‘jpeg‘?‘png‘?‘gif‘?‘webp‘])

#?This?is?used?by?micawber?which?will?attempt?to?generate?rich?media
#?embedded?objects?with?maxwidth=800.
application.config[‘SITE_WIDTH‘]?=?800

#?The?secret?key?is?used?internally?by?Flask?to?encrypt?session?data?stored
#?in?cookies.?Make?this?unique?for?your?app.
application.config[‘SECRET_KEY‘]?=?‘a(chǎn)sdfkj23kjdflkj23lkjs‘

?屬性????????????大小?????日期????時(shí)間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2016-02-26?19:17??keybits-permanote-37187e4\
?????文件?????????870??2016-02-26?19:17??keybits-permanote-37187e4\.gitignore
?????目錄???????????0??2016-02-26?19:17??keybits-permanote-37187e4\.sandstorm\
?????文件?????????102??2016-02-26?19:17??keybits-permanote-37187e4\.sandstorm\.gitattributes
?????文件??????????97??2016-02-26?19:17??keybits-permanote-37187e4\.sandstorm\.gitignore
?????文件?????????799??2016-02-26?19:17??keybits-permanote-37187e4\.sandstorm\CHANGELOG.md
?????文件????????4298??2016-02-26?19:17??keybits-permanote-37187e4\.sandstorm\Vagrantfile
?????目錄???????????0??2016-02-26?19:17??keybits-permanote-37187e4\.sandstorm\app-graphics\
?????文件????????1501??2016-02-26?19:17??keybits-permanote-37187e4\.sandstorm\app-graphics\permanote-dolphin.svg
?????文件????????4131??2016-02-26?19:17??keybits-permanote-37187e4\.sandstorm\app-graphics\permanote-dolphin128.png
?????文件????????4800??2016-02-26?19:17??keybits-permanote-37187e4\.sandstorm\app-graphics\permanote-dolphin150.png
?????文件?????????833??2016-02-26?19:17??keybits-permanote-37187e4\.sandstorm\app-graphics\permanote-dolphin24.png
?????文件????????9968??2016-02-26?19:17??keybits-permanote-37187e4\.sandstorm\app-graphics\permanote-dolphin300.png
?????文件????????1463??2016-02-26?19:17??keybits-permanote-37187e4\.sandstorm\app-graphics\permanote-dolphin48.png
?????文件?????????239??2016-02-26?19:17??keybits-permanote-37187e4\.sandstorm\build.sh
?????文件?????????712??2016-02-26?19:17??keybits-permanote-37187e4\.sandstorm\description.md
?????文件????????1824??2016-02-26?19:17??keybits-permanote-37187e4\.sandstorm\global-setup.sh
?????文件?????????332??2016-02-26?19:17??keybits-permanote-37187e4\.sandstorm\launcher.sh
?????文件????????3641??2016-02-26?19:17??keybits-permanote-37187e4\.sandstorm\pgp-keyring
?????文件?????????429??2016-02-26?19:17??keybits-permanote-37187e4\.sandstorm\pgp-signature
?????文件???????39540??2016-02-26?19:17??keybits-permanote-37187e4\.sandstorm\sandstorm-files.list
?????文件????????9040??2016-02-26?19:17??keybits-permanote-37187e4\.sandstorm\sandstorm-pkgdef.capnp
?????目錄???????????0??2016-02-26?19:17??keybits-permanote-37187e4\.sandstorm\screenshots\
?????文件???????60652??2016-02-26?19:17??keybits-permanote-37187e4\.sandstorm\screenshots\permanote-screen-0.png
?????文件??????102652??2016-02-26?19:17??keybits-permanote-37187e4\.sandstorm\screenshots\permanote-screen-1.png
?????文件???????29782??2016-02-26?19:17??keybits-permanote-37187e4\.sandstorm\screenshots\permanote-screen-2.png
?????文件???????56182??2016-02-26?19:17??keybits-permanote-37187e4\.sandstorm\screenshots\permanote-screen-3.png
?????文件???????32119??2016-02-26?19:17??keybits-permanote-37187e4\.sandstorm\screenshots\permanote-screen-4.png
?????文件???????57386??2016-02-26?19:17??keybits-permanote-37187e4\.sandstorm\screenshots\permanote-screen-5.png
?????文件???????21773??2016-02-26?19:17??keybits-permanote-37187e4\.sandstorm\screenshots\permanote-screen-6.png
?????目錄???????????0??2016-02-26?19:17??keybits-permanote-37187e4\.sandstorm\service-config\
............此處省略35個(gè)文件信息

評論

共有 條評論