معرفی شرکت ها


Flask-DebugToolbar-Mongo-0.1


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

MongoDB panel for the Flask Debug Toolbar
ویژگی مقدار
سیستم عامل -
نام فایل Flask-DebugToolbar-Mongo-0.1
نام Flask-DebugToolbar-Mongo
نسخه کتابخانه 0.1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Bruno Carlin
ایمیل نویسنده bruno@bcarlin.net
آدرس صفحه اصلی https://github.com/bcarlin/flask-debugtoolbar-mongo
آدرس اینترنتی https://pypi.org/project/Flask-DebugToolbar-Mongo/
مجوز MIT
================================== Flask Debug Toolbar MongoDB Panel ================================== :Info: An extension panel for Matt Good's `Flask-DebugToolbar`_ that adds MongoDB debugging information :Author: Bruno Carlin (http://github.com/bcarlin, http://twitter.com/brunocarlin) .. _Flask-DebugToolbar: http://flask-debugtoolbar.rtfd.org/ History ======= This is a port of the MongoDB addon to the Django Debug Toolbar written by Harry Marr (http://github.com/hmarr, http://twitter.com/harrymarr). There existed another port (https://github.com/cenkalti/flask-debug-toolbar-mongo) that was neither up-to-date nor operational (there are still imports from django). Here is a clean port that I intend to maintain current with Harry Marr's original work, and occasionnally augment with new features if needed. All the thanks go to Harry! .. warning:: This package is still at an early stage. While it works, it is not yet complete and its reports are not exhaustives. If you want to help improve it, you are the most welcome to do so. Just fork the repository on `Github <https://github.com/bcarlin/flask-debugtoolbar-mongo>`__ and send your pull requests ! Setup ===== First, you need to get the package. Install it with pip: :: pip install flask-debugtoolbar-mongo Somewhere after you've set ``app.debug = True`` and before ``app.run``, you need to specify the ``flask_debugtoolbar`` panels that you want to use and include ``'flask_debugtoolbar_mongo.panels.MongoDebugPanel'`` in that list. For example, here's a small flask app with the panel installed and with line profiling enabled for the `hello_world`:: from flask import Flask app = Flask(__name__) import flask_debugtoolbar @app.route('/') def hello_world(): return 'Hello World') if __name__ == '__main__': app.debug = True # Specify the debug panels you want app.config['DEBUG_TB_PANELS'] = [ 'flask_debugtoolbar.panels.versions.VersionDebugPanel', 'flask_debugtoolbar.panels.timer.TimerDebugPanel', 'flask_debugtoolbar.panels.headers.HeaderDebugPanel', 'flask_debugtoolbar.panels.request_vars.RequestVarsDebugPanel', 'flask_debugtoolbar.panels.template.TemplateDebugPanel', 'flask_debugtoolbar.panels.sqlalchemy.SQLAlchemyDebugPanel', 'flask_debugtoolbar.panels.logger.LoggingPanel', 'flask_debugtoolbar.panels.profiler.ProfilerDebugPanel', # Add the MongoDB panel 'flask_debugtoolbar_mongo.panel.MongoDebugPanel', ] toolbar = flask_debugtoolbar.DebugToolbarExtension(app) app.run() ``Flask-debugtoolbar-mongo`` accepts the following configration options:: app.config['DEBUG_TB_MONGO'] = { 'SHOW_STACKTRACES' = True 'HIDE_FLASK_FROM_STACKTRACES' = True } ``SHOW_STACKTRACES`` Obtaining stack traces can slow down queries significantly. You can turn them off by setting this option to ``False``. ``HIDE_FLASK_FROM_STACKTRACES`` Hides Flask calls from the stacktrace.


نحوه نصب


نصب پکیج whl Flask-DebugToolbar-Mongo-0.1:

    pip install Flask-DebugToolbar-Mongo-0.1.whl


نصب پکیج tar.gz Flask-DebugToolbar-Mongo-0.1:

    pip install Flask-DebugToolbar-Mongo-0.1.tar.gz