实例介绍
采用python开发的单用户博客系统,基于轻量级框架flask,已经实现几乎所有功能,分类、文章、用户等,界面采用bootstrap,美观大方,非常适合初学者学习使用。
【实例截图】
【核心代码】
3cbd97cb-18f9-4bb3-ad11-f87bb4a04b2f
├── Pipfile
├── Pipfile.lock
└── wewriter
├── blueprints
│ ├── admin.py
│ ├── auth.py
│ ├── blog.py
│ └── __pycache__
│ ├── admin.cpython-36.pyc
│ ├── auth.cpython-36.pyc
│ └── blog.cpython-36.pyc
├── extensions.py
├── freeflask.pdf
├── index.py
├── __init__.py
├── models.py
├── __pycache__
│ ├── app.cpython-36.pyc
│ ├── extensions.cpython-36.pyc
│ ├── __init__.cpython-36.pyc
│ ├── models.cpython-36.pyc
│ ├── settings.cpython-36.pyc
│ ├── utils.cpython-36.pyc
│ └── views.cpython-36.pyc
├── settings.py
├── static
│ ├── bootstrap-4.1.3
│ │ ├── css
│ │ │ ├── bootstrap.css
│ │ │ ├── bootstrap.css.map
│ │ │ ├── bootstrap-grid.css
│ │ │ ├── bootstrap-grid.css.map
│ │ │ ├── bootstrap-grid.min.css
│ │ │ ├── bootstrap-grid.min.css.map
│ │ │ ├── bootstrap.min.css
│ │ │ ├── bootstrap.min.css.map
│ │ │ ├── bootstrap-reboot.css
│ │ │ ├── bootstrap-reboot.css.map
│ │ │ ├── bootstrap-reboot.min.css
│ │ │ └── bootstrap-reboot.min.css.map
│ │ └── js
│ │ ├── bootstrap.bundle.js
│ │ ├── bootstrap.bundle.js.map
│ │ ├── bootstrap.bundle.min.js
│ │ ├── bootstrap.bundle.min.js.map
│ │ ├── bootstrap.js
│ │ ├── bootstrap.js.map
│ │ ├── bootstrap.min.js
│ │ └── bootstrap.min.js.map
│ ├── css
│ │ └── style.css
│ ├── editor
│ │ └── simditor
│ │ ├── images
│ │ │ ├── fork.png
│ │ │ ├── image.png
│ │ │ ├── logo@2x.png
│ │ │ ├── logo.png
│ │ │ ├── title@2x.png
│ │ │ └── title.png
│ │ ├── scripts
│ │ │ ├── dompurify.js
│ │ │ ├── hotkeys.js
│ │ │ ├── jquery.min.js
│ │ │ ├── mobilecheck.js
│ │ │ ├── module.js
│ │ │ ├── page-demo.js
│ │ │ ├── page-doc.js
│ │ │ ├── page-download.js
│ │ │ ├── page-form.js
│ │ │ ├── simditor.js
│ │ │ └── uploader.js
│ │ └── styles
│ │ ├── app.css
│ │ ├── mobile.css
│ │ └── simditor.css
│ ├── fonts
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.svg
│ │ ├── glyphicons-halflings-regular.ttf
│ │ ├── glyphicons-halflings-regular.woff
│ │ ├── icomoon.eot
│ │ ├── icomoon.svg
│ │ ├── icomoon.ttf
│ │ ├── icomoon.woff
│ │ ├── icon.css
│ │ └── selection.json
│ ├── icheck
│ │ ├── bower.json
│ │ ├── CHANGELOG.md
│ │ ├── demo
│ │ │ ├── css
│ │ │ │ ├── banner.jpg
│ │ │ │ ├── custom.css
│ │ │ │ ├── custom.styl
│ │ │ │ ├── icheck.png
│ │ │ │ ├── ie
│ │ │ │ │ ├── arrow-bottom.png
│ │ │ │ │ ├── arrow-top.png
│ │ │ │ │ ├── header-line.png
│ │ │ │ │ ├── icon-fork.png
│ │ │ │ │ ├── icon-github.png
│ │ │ │ │ ├── icon-lab.png
│ │ │ │ │ ├── icon-options.png
│ │ │ │ │ └── icon-star.png
│ │ │ │ ├── montserrat-bold.eot
│ │ │ │ ├── montserrat-bold.svg
│ │ │ │ ├── montserrat-bold.ttf
│ │ │ │ ├── montserrat-bold.woff
│ │ │ │ ├── montserrat-regular.eot
│ │ │ │ ├── montserrat-regular.svg
│ │ │ │ ├── montserrat-regular.ttf
│ │ │ │ ├── montserrat-regular.woff
│ │ │ │ └── normalize.css
│ │ │ ├── index.html
│ │ │ └── js
│ │ │ ├── custom.js
│ │ │ ├── custom.min.js
│ │ │ ├── jquery.js
│ │ │ └── zepto.js
│ │ ├── icheck.jquery.json
│ │ ├── icheck.js
│ │ ├── icheck.min.js
│ │ ├── README.md
│ │ └── skins
│ │ ├── all.css
│ │ ├── flat
│ │ │ ├── aero@2x.png
│ │ │ ├── aero.css
│ │ │ ├── aero.png
│ │ │ ├── _all.css
│ │ │ ├── blue@2x.png
│ │ │ ├── blue.css
│ │ │ ├── blue.png
│ │ │ ├── flat@2x.png
│ │ │ ├── flat.css
│ │ │ ├── flat.png
│ │ │ ├── green@2x.png
│ │ │ ├── green.css
│ │ │ ├── green.png
│ │ │ ├── grey@2x.png
│ │ │ ├── grey.css
│ │ │ ├── grey.png
│ │ │ ├── orange@2x.png
│ │ │ ├── orange.css
│ │ │ ├── orange.png
│ │ │ ├── pink@2x.png
│ │ │ ├── pink.css
│ │ │ ├── pink.png
│ │ │ ├── purple@2x.png
│ │ │ ├── purple.css
│ │ │ ├── purple.png
│ │ │ ├── red@2x.png
│ │ │ ├── red.css
│ │ │ ├── red.png
│ │ │ ├── yellow@2x.png
│ │ │ ├── yellow.css
│ │ │ └── yellow.png
│ │ ├── futurico
│ │ │ ├── futurico@2x.png
│ │ │ ├── futurico.css
│ │ │ └── futurico.png
│ │ ├── line
│ │ │ ├── aero.css
│ │ │ ├── _all.css
│ │ │ ├── blue.css
│ │ │ ├── green.css
│ │ │ ├── grey.css
│ │ │ ├── line@2x.png
│ │ │ ├── line.css
│ │ │ ├── line.png
│ │ │ ├── orange.css
│ │ │ ├── pink.css
│ │ │ ├── purple.css
│ │ │ ├── red.css
│ │ │ └── yellow.css
│ │ ├── minimal
│ │ │ ├── aero@2x.png
│ │ │ ├── aero.css
│ │ │ ├── aero.png
│ │ │ ├── _all.css
│ │ │ ├── blue@2x.png
│ │ │ ├── blue.css
│ │ │ ├── blue.png
│ │ │ ├── green@2x.png
│ │ │ ├── green.css
│ │ │ ├── green.png
│ │ │ ├── grey@2x.png
│ │ │ ├── grey.css
│ │ │ ├── grey.png
│ │ │ ├── minimal@2x.png
│ │ │ ├── minimal.css
│ │ │ ├── minimal.png
│ │ │ ├── orange@2x.png
│ │ │ ├── orange.css
│ │ │ ├── orange.png
│ │ │ ├── pink@2x.png
│ │ │ ├── pink.css
│ │ │ ├── pink.png
│ │ │ ├── purple@2x.png
│ │ │ ├── purple.css
│ │ │ ├── purple.png
│ │ │ ├── red@2x.png
│ │ │ ├── red.css
│ │ │ ├── red.png
│ │ │ ├── yellow@2x.png
│ │ │ ├── yellow.css
│ │ │ └── yellow.png
│ │ ├── polaris
│ │ │ ├── polaris@2x.png
│ │ │ ├── polaris.css
│ │ │ └── polaris.png
│ │ └── square
│ │ ├── aero@2x.png
│ │ ├── aero.css
│ │ ├── aero.png
│ │ ├── _all.css
│ │ ├── blue@2x.png
│ │ ├── blue.css
│ │ ├── blue.png
│ │ ├── green@2x.png
│ │ ├── green.css
│ │ ├── green.png
│ │ ├── grey@2x.png
│ │ ├── grey.css
│ │ ├── grey.png
│ │ ├── orange@2x.png
│ │ ├── orange.css
│ │ ├── orange.png
│ │ ├── pink@2x.png
│ │ ├── pink.css
│ │ ├── pink.png
│ │ ├── purple@2x.png
│ │ ├── purple.css
│ │ ├── purple.png
│ │ ├── red@2x.png
│ │ ├── red.css
│ │ ├── red.png
│ │ ├── square@2x.png
│ │ ├── square.css
│ │ ├── square.png
│ │ ├── yellow@2x.png
│ │ ├── yellow.css
│ │ └── yellow.png
│ ├── Jcrop-0.9.12
│ │ ├── css
│ │ │ ├── Jcrop.gif
│ │ │ ├── jquery.Jcrop.css
│ │ │ └── jquery.Jcrop.min.css
│ │ ├── demos
│ │ │ ├── crop.php
│ │ │ ├── demo_files
│ │ │ │ ├── demos.css
│ │ │ │ ├── main.css
│ │ │ │ ├── pool.jpg
│ │ │ │ ├── sago.jpg
│ │ │ │ ├── sagomod.jpg
│ │ │ │ └── sagomod.png
│ │ │ ├── non-image.html
│ │ │ ├── styling.html
│ │ │ ├── tutorial1.html
│ │ │ ├── tutorial2.html
│ │ │ ├── tutorial3.html
│ │ │ ├── tutorial4.html
│ │ │ └── tutorial5.html
│ │ ├── index.html
│ │ ├── js
│ │ │ ├── jquery.color.js
│ │ │ ├── jquery.Jcrop.js
│ │ │ ├── jquery.Jcrop.min.js
│ │ │ └── jquery.min.js
│ │ ├── MIT-LICENSE.txt
│ │ └── README.md
│ ├── js
│ │ └── jquery-1.12.4.min.js
│ └── uploads
│ ├── 2019050411465927.jpg
│ └── 2019050411475633.jpg
├── templates
│ ├── about.html
│ ├── admin
│ │ ├── article.html
│ │ ├── attach.html
│ │ ├── base.html
│ │ ├── category.html
│ │ ├── publish.html
│ │ ├── setting.html
│ │ └── user.html
│ ├── base.html
│ ├── detail.html
│ ├── errors
│ │ ├── 400.html
│ │ ├── 404.html
│ │ └── 500.html
│ ├── index.html
│ ├── login.html
│ ├── test_1.html
│ └── test_2.html
└── utils.py
37 directories, 262 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论