gpt4 book ai didi

python - 使用 Bottle 的自定义插件将日期时间作为 JSON 返回?

转载 作者:太空宇宙 更新时间:2023-11-04 01:26:06 33 4
gpt4 key购买 nike

我不熟悉正确的 Bottle 语法,因此我留下了这个错误:

TypeError: call() takes exactly 3 arguments (1 given)

这是我的尝试:

from bottle import Bottle, JSONPlugin, app, route, run, static_file
from json import JSONEncoder, dumps as jsonify
from datetime import datetime


# http://bottlepy.org/docs/dev/recipes.html#ignore-trailing-slashes
class StripPathMiddleware(object):
def __init__(self, app):
self.app = app

def __call__(self, e, h):
e['PATH_INFO'] = e['PATH_INFO'].rstrip('/')
return self.app(e, h)


# https://github.com/defnull/bottle/issues/287
class MyJsonEncoder(JSONEncoder):
def default(self, obj):
if isinstance(obj, datetime):
return str(obj.strftime("%Y-%m-%d %H:%M:%S"))
return JSONEncoder.default(self, obj)


@route('/api')
def latest_api_version():
return {'api_version': 0.1, 'latest_as_of': datetime.utcnow()}


if __name__ == '__main__':
myApp = Bottle(autojson=False)
myApp.install(JSONPlugin(json_dumps=lambda s: jsonify(s, cls=MyJsonEncoder)))

run(app=StripPathMiddleware(myApp()), debug=True)

如何让 Bottle 的 JSON 解析器无误地返回日期时间戳数据?

最佳答案

找出这个非常简单的解决方案,即 also mentioned在错误追踪器中:

from bottle import install, JSONPlugin

...

if __name__ == '__main__':
app = Bottle(autojson=False)
app.install(JSONPlugin(json_dumps=lambda s: jsonify(s, cls=MyJsonEncoder)))

关于python - 使用 Bottle 的自定义插件将日期时间作为 JSON 返回?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17798183/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com