我刚刚遇到了滚动条,想把它包含在我的Python项目中。
这是我被告知从网站实现滚动条的标准方式。
import rollbar
rollbar.init('KEY')
try:
a = s
except:
rollbar.report_exc_info()
有没有更好的方法来实现这一点,而无需遍历我所有的try except
块并用rollbar.report_exc_info()
替换它们
可以为此提供装饰器实现吗?我当前的项目是一个向最终用户提供API的Flask应用程序。
下面是 Flask 应用中滚动条集成的示例。
https://github.com/rollbar/rollbar-flask-example/blob/master/hello.py
@app.before_first_request
def init_rollbar():
"""init rollbar module"""
rollbar.init(
# access token for the demo app: https://rollbar.com/demo
'fc316ac1f7404dc28af26d5baed1416c',
# environment name
'flasktest',
# server root directory, makes tracebacks prettier
root=os.path.dirname(os.path.realpath(__file__)),
# flask already sets up logging
allow_logging_basic_config=False)
# send exceptions from `app` to rollbar, using flask's signal system.
got_request_exception.connect(rollbar.contrib.flask.report_exception, app)