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?
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.
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.