gmr / pgdumplib

Python3 library for reading and writing pg_dump files using the custom format
https://pgdumplib.readthedocs.io
BSD 3-Clause "New" or "Revised" License
31 stars 4 forks source link

Plain Text format dump support #10

Closed Worschi closed 3 years ago

Worschi commented 3 years ago

I need to parse plain text dump files and would like to use pgdumplib as a more generic solution compared to my parser.

gmr commented 3 years ago

Those are made of just raw SQL statements. There are a few libraries for that:

(And a few more)

Worschi commented 3 years ago

thanks for pointing out the libraries. Somehow obvious that there are raw SQL parsers. didn't cross my mind though. thanks!