├── .gitignore ├── .travis.yml ├── LICENSE ├── NEWS ├── README.md ├── example ├── README.md ├── api.psql ├── main.py ├── postgrest.config └── setup.psql ├── postgrest ├── __init__.py ├── client.py ├── filters.py ├── model.py └── model_client.py ├── setup.py └── tests ├── __init__.py ├── test_filter.py ├── test_model.py └── test_model_client.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/py-postgrest/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/py-postgrest/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/py-postgrest/HEAD/LICENSE -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/py-postgrest/HEAD/NEWS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/py-postgrest/HEAD/README.md -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/py-postgrest/HEAD/example/README.md -------------------------------------------------------------------------------- /example/api.psql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/py-postgrest/HEAD/example/api.psql -------------------------------------------------------------------------------- /example/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/py-postgrest/HEAD/example/main.py -------------------------------------------------------------------------------- /example/postgrest.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/py-postgrest/HEAD/example/postgrest.config -------------------------------------------------------------------------------- /example/setup.psql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/py-postgrest/HEAD/example/setup.psql -------------------------------------------------------------------------------- /postgrest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/py-postgrest/HEAD/postgrest/__init__.py -------------------------------------------------------------------------------- /postgrest/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/py-postgrest/HEAD/postgrest/client.py -------------------------------------------------------------------------------- /postgrest/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/py-postgrest/HEAD/postgrest/filters.py -------------------------------------------------------------------------------- /postgrest/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/py-postgrest/HEAD/postgrest/model.py -------------------------------------------------------------------------------- /postgrest/model_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/py-postgrest/HEAD/postgrest/model_client.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/py-postgrest/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/py-postgrest/HEAD/tests/test_filter.py -------------------------------------------------------------------------------- /tests/test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/py-postgrest/HEAD/tests/test_model.py -------------------------------------------------------------------------------- /tests/test_model_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kong/py-postgrest/HEAD/tests/test_model_client.py --------------------------------------------------------------------------------