如何启动 python 数据库的可视化服务器



我有一个数据库测试.db由python模块pyABC生成,查看基于Web的数据库可视化的命令是在终端窗口中使用以下命令:

abc-server Downloads/Code/test.db

它似乎没有给出任何错误,但没有出现网页。关于我可能错过什么的任何想法?

(base) YYYY@MMMMM ~ % abc-server Downloads/Beth/Code/test.db 
* Serving Flask app "pyabc.visserver.server" (lazy loading)
* Environment: production
WARNING: This is a development server. Do not use it in a production deployment.
Use a production WSGI server instead.
* Debug mode: off
INFO:werkzeug: * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)

pyABC Web 服务器的简短文档可以在 https://pyabc.readthedocs.io/en/latest/visualization.html#web-based-visualizations 找到。如果未显示任何数据,则可能是因为文件为空。要检查这一点,可以使用诸如sqlitebrowsersqlite3或pyABC数据访问API https://pyabc.readthedocs.io/en/latest/api_datastore.html 之类的工具。

最新更新