Metadata-Version: 1.1
Name: pgwebsocket
Version: 0.0.1b1
Summary: Async websocket to PostgreSQL proxy
Home-page: https://github.com/wirehive/pgwebsocket
Author: Wirehive Ltd
Author-email: barnaby@wirehive.net
License: GPLv2
Description: pgwebsocket
        ===========
        
        ::
        
            from pgwebsocket import PgWebsocket
            
            app = PgWebsocket(
                "postgresql://"
            )
            
            @app.on_connect
            async def on_connect(ctx):
                """"""
                ctx.subscribed = []
                await ctx.execute("LISTEN all;")
            
            @app.on_disconnect
            async def on_disconnect(ctx):
                """"""
                await ctx.execute("UNLISTEN all;")
            
            if __name__ == '__main__':
                app.run()
        
        
Keywords: aiohttp psycopg2 postgresql websocket
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Programming Language :: Python :: 3.5
