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.
2
blobdon
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.
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.