Metadata-Version: 2.1
Name: guillotina-pgcatalog
Version: 1.0.4
Summary: basic catalog implementation for guillotina on postgres
Home-page: UNKNOWN
Author: Nathan Van Gheem
Author-email: vangheem@gmail.com
License: private
Keywords: asyncio,REST,Framework,transactional
Platform: UNKNOWN
Classifier: License :: OSI Approved :: BSD License
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Provides-Extra: test
Requires-Dist: guillotina
Provides-Extra: test
Requires-Dist: pytest; extra == 'test'
Requires-Dist: requests; extra == 'test'
Requires-Dist: docker; extra == 'test'
Requires-Dist: backoff; extra == 'test'
Requires-Dist: requests; extra == 'test'
Requires-Dist: psycopg2; extra == 'test'
Requires-Dist: pytest-asyncio; extra == 'test'
Requires-Dist: pytest-aiohttp; extra == 'test'

Introduction
============

Basic catalog implementation for guillotina using the default postgresql
server.


Status
------

This is just a proof of concept right now.

What is does right now:

- provides indexes for basic types(not all, dates not supported)
- works with the POST @search endpoint


POST /db/container/@search {
  "tag": "foobar"
}

1.0.4 (2018-10-15)
------------------

- Do not provide total result. count queries are really slow
  with pg.
  [vangheem]


1.0.3 (2017-12-30)
------------------

- Be able to provide operator in queries


1.0.2 (2017-12-30)
------------------

- Fix getting transaction when creating catalog
  [vangheem]


1.0.1 (2017-04-12)
------------------

- fix get_data not using correct signature for latest guillotina
  [vangheem]


1.0.0 (2017-04-10)
------------------

- initial


