Wednesday, January 2, 2019

pgcli: Release v2.0.2

Pgcli is a command line interface for Postgres database that does auto-completion and syntax highlighting. You can install this version using:

$ pip install -U pgcli

After the update of pgcli to use prompt-toolkit 2.0, there were quite a few complaints about performance, in particular, slow autocompletions. This release attempts to address the problem. Additionally, thanks to our newest contributor Ignacio Campabadal, it is now possible to supply username with a -u flag, same as mycli.

Features:



from Planet Python
via read more

No comments:

Post a Comment

TestDriven.io: Working with Static and Media Files in Django

This article looks at how to work with static and media files in a Django project, locally and in production. from Planet Python via read...