首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往
您找到你想要的搜索结果了吗?
是的
没有找到

flask中的所有第三方模块大集合

Flask-AppBuilder - Simple and rapid Application builder, includes detailed security, auto form generation, google charts and much more. FlaskEx - UNKNOWN gourd - easy server framework. add flask's style route to tcp/udp server. kit - Flask, Celery, SQLAlchemy integration framework. Flask-WTF - Simple integration of Flask and WTForms alchemist - A server architecture built on top of a solid foundation provided by flask, sqlalchemy, and various extensions. Flask-Mail - Flask extension for sending email sga - make it easier to use pyga for web develop. and make pyga compatible with flask and django. flask-peewee - Peewee integration for flask flask_util_js - flask's util in javascript. such as url_for etc. Flask-Security - Simple security for Flask apps Flask-RESTful - Simple framework for creating REST APIs Flask-SeaSurf - An updated CSRF extension for Flask. Flask-Cache - Adds cache support to your Flask application Flask-Admin - Simple and extensible admin interface framework for Flask Flask-Slither - A small library between MongoDB and JSON API endpoints Flask-Bootstrap - An extension that includes Bootstrap in your project, without any boilerplate code. Flask-Script - Scripting support for Flask Flask-GoogleLogin - Extends Flask-Login to use Google's OAuth2 authorization Flask-Exceptional - Adds Exceptional support to Flask applications Flask - A microframework based on Werkzeug, Jinja2 and good intentions INSTALLED: 0.10.1 (latest) clay-flask - Clay is a framework for building RESTful backend services using best practices. Flask-Classy - Class based views for Flask ShelfCMS - Enhancing flask microframework with beautiful admin and cms-like features

03

win7 64位官方旗舰版上搭建ruby on rails的步骤

———-第一步:安装ruby———— 1.安装 rubyinstaller-2.2.4-x64.exe ,记得勾选 add path…选项,安装完之后 ruby -v 查看版本号,比如 ruby 2.2.4p230 (2015-12-16 revision 53155) [x64-mingw32] (windows请安装1.9以上2.3以下版本的ruby) ————————————– ———-第二步:安装gem源———– 2. gem sources 查看当前使用的源地址。 3. gem sources -r https://rubygems.org/ 删除当前默认的源地址。 4. gem sources -a http://gems.ruby-china.org/ 添加源地址。 5. gem sources -u 更新源的缓存 ————————————– ———-第三步:安装Devkit———- 安装 DevKit-mingw64-64-4.7.2-20130224-1432-sfx.exe 在cmd里面 进入 Devkit 的安装目录 比如:E:\Devkit 6. ruby dk.rb init 初始化 7. 在E:\Devkit 里面找到 config.yml,在里面 加上 – C:\Ruby22-x64 (C:\Ruby22-x64 为ruby的硬盘绝对路径) 8. ruby dk.rb install 安装 ————————————– ———-第四步:安装rails———– 9. gem install rails –no-rdoc –no-ri 可以不安装文档,通过 rails -v 查看版本号,比如 Rails 4.2.6 ————————————– ———-第五步:测试rails———– 进入想要建立ruby工程的目录,假定要建立demo工程 10. rails new demo 建立一个 demo 名的工程 11.进入 demo文件夹里面 修改 Gemfile 文件,注释掉第一行# source ‘https://rubygems.org’ 并添加 source ‘http://gems.ruby-china.org’ 12.再次执行 rails new demo ,过程中 选 n 不覆盖 13.cd 进入 demo 目录,执行 rails server 启动服务 14.在浏览器输入 http://localhost:3000/ 如果看到 Welcome aboard You’re riding Ruby on Rails! 字样,代表rails安装成功。 ————————————–

05
领券