Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 Go 网络应用程序,它将一些数据存储在内置的BoltDB.
BoltDB
有没有办法使用 Python 读取它的内容?
在您的 Go 应用程序中创建一个小型处理程序,以数据库转储进行响应。查看 BoltDB 文档的数据库备份部分以获取示例。
因为您已经构建了 Web 应用程序,所以您可以为您需要的每个数据库操作创建 http 端点(或任何其他协议)。然后从您的 python 应用程序调用这些端点。