ibrowser.py
author Radek Brich <radek.brich@devl.cz>
Mon, 26 May 2014 18:18:21 +0200
changeset 103 24e94a3da209
parent 52 26121a8fe78b
child 104 d8ff52a0390f
permissions -rwxr-xr-x
Update bigtables tool: Sort by size with indexes, not just data.

#!/usr/bin/env python3
"""
interactive schema browser

Connect to specified database and open interactive shell.

PgBrowser instance is "browser".

Example:

>>> browser.schemas['myschema'].tables['mytable'].columns['id'].default
"nextval('mytable_id_seq'::regclass)"

"""

from pgtoolkit import pgbrowser, toolbase

import code


class InteractiveBrowserTool(toolbase.SimpleTool):
    def __init__(self):
        toolbase.SimpleTool.__init__(self, name='ibrowser', desc='Interactive schema browser.')
        self.init()

    def main(self):
        browser = pgbrowser.PgBrowser(self.pgm.get_conn('target'))
        shell = code.InteractiveConsole(locals())
        shell.interact()


tool = InteractiveBrowserTool()
tool.main()