muhuk / cuisine-postgresql

This project is no longer being maintained!

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Important

This project is no longer being maintained!

cuisine-postgresql provides cuisine-style PostgreSQL management commands.

Installation

pip install cuisine-postgresql

Usage

from cuisine_postgresql import (postgresql_role_ensure,
                                postgresql_database_ensure)


@task
def configure_database():
        postgresql_role_ensure('user', 'pass', createdb=True)
        postgresql_database_ensure('database',
                                   owner='user',
                                   template='template0',
                                   encoding='UTF8')

About

This project is no longer being maintained!

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Python 100.0%