How to read from a BoltDB using Python?

1.7k Views Asked by At

I have a Go web app which stores some data in a built-in BoltDB.

Is there any way to read the content of it using Python?

2

There are 2 best solutions below

2
On

Because you've already built the web app, you could just create http endpoints (or any other protocol) for each DB operation you need. Then call those endpoints from your python app.

1
On

Create a small handler in your Go application that responds with a database dump. Check out the database backups section of the BoltDB documentation for an example.