1
0
Fork 0
Postgres CLI with autocompletion and syntax highlighting
Go to file
Dhaivat Pandit b8d5295382 Packaging: first cut of working deb and rpm build
* to build deb & rpm simply run
        ```
        version=<se.mv.er> vagrant provision
        ```
      vagrant shell provisioner will run the inline script and generate
      a deb and an rpm file in the local directory. This is achieved by
      multivm Vagrantfile one for centos and one for debian
    * To install the generated deb - run sudo dpkg -i
    * /pgcli/pgcli_<se.mv.er>.deb (then sudo apt-get install -f if deps
      are missing on a clean debian install)
    * To install generated rpm - sudo yum install path-to-rpm
    * package will be installed under /usr/share/pgcli
    * script pgcli will be a symlink in /usr/local/bin/pgcli ->
      /usr/share/pgcli/bin/pgcli (with right shebang line
      #!/usr/share/pgcli/bin/python)
2015-04-11 14:42:18 -07:00
pgcli Handle a ',' entered before any completions gracefully 2015-04-11 09:55:34 -04:00
screenshots Add an extra screenshot. 2014-11-30 22:22:06 -08:00
tests Handle a ',' entered before any completions gracefully 2015-04-11 09:55:34 -04:00
.gitignore Packaging: first cut of working deb and rpm build 2015-04-11 14:42:18 -07:00
.travis.yml Add travis webhook for gitter. 2015-01-31 16:54:46 -08:00
AUTHORS Update AUTHORS. 2015-01-30 17:53:27 -08:00
DEVELOP.rst Added a section about meta-commands to developer documentation. 2015-01-19 15:26:38 -08:00
LICENSE.txt Update copyright year in LICENSE. 2015-01-01 00:14:55 -08:00
README.rst Update README to include mysql-cli. 2015-04-11 12:26:25 -04:00
TODO Move refresh routines outside the loop. 2015-01-31 13:46:32 -08:00
Vagrantfile Packaging: first cut of working deb and rpm build 2015-04-11 14:42:18 -07:00
changelog.rst Update changelog. 2015-04-05 17:28:47 -07:00
post-install Packaging: first cut of working deb and rpm build 2015-04-11 14:42:18 -07:00
post-remove Packaging: first cut of working deb and rpm build 2015-04-11 14:42:18 -07:00
release.py Update release script. 2015-04-02 18:23:29 -07:00
release_procedure.txt Add some docs for release procedures and manual tests. 2014-12-14 11:40:38 -08:00
sanity_checks.txt Corrected some typos 2015-01-08 20:45:12 +05:30
setup.py Switch back to using psycopg2. 2015-02-08 14:45:22 -08:00
tox.ini Fix problem with travis not using correct python versions when testing. 2015-01-09 12:33:27 +02:00

README.rst

A REPL for Postgres 
-------------------

|Build Status|  |PyPI| |Gitter|

This is a postgres client that does auto-completion and syntax highlighting.

MySQL Equivalent: http://mysql-cli.com

.. image:: screenshots/image02.png
.. image:: screenshots/image01.png

Quick Start
-----------

If you already know how to install python packages, then you can simply do:

::

    $ pip install pgcli

    or

    $ brew install pgcli  # Only on OS X

If you don't know how to install python packages, please check the 
`detailed instructions`__.

__ https://github.com/amjith/pgcli#detailed-installation-instructions 

Usage
-----

:: 

    $ pgcli [database_name]

    or

    $ pgcli postgresql://[user[:password]@][netloc][:port][/dbname] 

Examples: 

:: 

    $ pgcli local_database

    $ pgcli postgres://amjith:pa$$w0rd@example.com:5432/app_db

Features
--------

The `pgcli` is written using prompt_toolkit_.

* Auto-completion as you type for SQL keywords as well as tables and
  columns in the database.
* Syntax highlighting using Pygments.
* Smart-completion (enabled by default) will suggest context-sensitive
  completion.

    - ``SELECT * FROM <tab>`` will only show table names. 
    - ``SELECT * FROM users WHERE <tab>`` will only show column names. 

* Config file is automatically created at ``~/.pgclirc`` at first launch.
* Primitive support for ``psql`` back-slash commands. 
* Pretty prints tabular data.

.. _prompt_toolkit: https://github.com/jonathanslenders/python-prompt-toolkit

Contributions:
--------------

If you're interested in contributing to this project, first of all I would like
to extend my heartfelt gratitude. I've written a small doc to describe how to
get this running in a development setup.

https://github.com/amjith/pgcli/blob/master/DEVELOP.rst

Please feel free to reach out to me if you need help. 
My email: amjith.r@gmail.com, Twitter: `@amjithr <http://twitter.com/amjithr>`_

Detailed Installation Instructions:
-----------------------------------

OS X:
=====

Easiest way to install pgcli is using brew. Please be aware that this will
install postgres via brew if it wasn't installed via brew.

::

    $ brew install pgcli

Done!

If you have postgres installed via a different means (such as PostgresApp), you
can ``brew install --build-from-source pgcli`` which will skip installing
postgres via brew if postgres is available in the path.

Alternatively, you can install ``pgcli`` as a python package using a package
manager called called ``pip``. You will need postgres installed on your system
for this to work. 

In depth getting started guide for ``pip`` - https://pip.pypa.io/en/latest/installing.html.

:: 

    $ which pip

If it is installed then you can do:

:: 

    $ pip install pgcli

If that fails due to permission issues, you might need to run the command with
sudo permissions. 

::

    $ sudo pip install pgcli

If pip is not installed check if easy_install is available on the system.

:: 

    $ which easy_install

    $ sudo easy_install pgcli

Linux:
======

In depth getting started guide for ``pip`` - https://pip.pypa.io/en/latest/installing.html.

Check if pip is already available in your system.

:: 

    $ which pip

If it doesn't exist, use your linux package manager to install `pip`. This
might look something like: 

::

    $ sudo apt-get install python-pip   # Debian, Ubuntu, Mint etc

    or

    $ sudo yum install python-pip  # RHEL, Centos, Fedora etc

``pgcli`` requires python-dev, libpq-dev and libevent-dev packages. You can
install these via your operating system package manager. 


::

    $ sudo apt-get install python-dev libpq-dev libevent-dev

    or 

    $ sudo yum install python-devel postgresql-devel

Then you can install pgcli: 

:: 

    $ sudo pip install pgcli


Thanks:
-------

A special thanks to `Jonathan Slenders <https://twitter.com/jonathan_s>`_ for
creating `Python Prompt Toolkit <http://github.com/jonathanslenders/python-prompt-toolkit>`_, 
which is quite literally the backbone library, that made this app possible.
Jonathan has also provided valuable feedback and support during the development
of this app.

This app includes the awesome `tabulate <https://pypi.python.org/pypi/tabulate>`_ 
library for pretty printing the output of tables. The reason for vendoring this
library rather than listing it as a dependency in setup.py, is because I had to
make a change to the table format which is merged back into the original repo,
but not yet released in PyPI.

`Click <http://click.pocoo.org/3/>`_ is used for command line option parsing
and printing error messages.

Thanks to `psycopg <http://initd.org/psycopg/>`_ for providing a rock solid
interface to Postgres database.

Thanks to all the beta testers and contributors for your time and patience. :)


.. |Build Status| image:: https://api.travis-ci.org/amjith/pgcli.svg?branch=master
    :target: https://travis-ci.org/amjith/pgcli

.. |PyPI| image:: https://pypip.in/version/pgcli/badge.svg
    :target: https://pypi.python.org/pypi/pgcli/
    :alt: Latest Version

.. |Gitter| image:: https://badges.gitter.im/Join%20Chat.svg
    :target: https://gitter.im/amjith/pgcli?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
    :alt: Gitter Chat