Metadata-Version: 2.1
Name: backboneql
Version: 0.1.6
Summary: JSON declarative SQL conversion library
Home-page: https://gitlab.backbone.sk/backboneql/backboneql-python
Author: Jakub Dubec
Author-email: jakub.dubec@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Environment :: Console
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Database
Classifier: Topic :: Software Development :: Libraries
Description-Content-Type: text/markdown
Requires-Dist: pydantic (==1.*)
Requires-Dist: click (==7.*)
Requires-Dist: typing-extensions

# backboneQL

[![pipeline status](https://dev01.backbone.sk/backboneql/backboneql-python/badges/master/pipeline.svg)](https://dev01.backbone.sk/backboneql/backboneql-python/commits/master)
[![coverage report](https://dev01.backbone.sk/backboneql/backboneql-python/badges/master/coverage.svg)](https://dev01.backbone.sk/backboneql/backboneql-python/commits/master)

## Documentation

Project is managed by [pipenv]() and documentation is generated by [MkDocs](https://www.mkdocs.org/). If you want to
generate documentation you need to follow these simple steps:

- `pipenv install`
- `pipenv shell`
- `mkdocs build`

Documentation should be in `site` directory. You can also download documentation for each release from
[GitLab](https://gitlab.backbone.sk/backboneql/backboneql-python/tags).

---
Made with ☕️ and ❤️ by Jakub Dubec & [BACKBONE s.r.o.](https://www.backbone.sk/en/)

# Changelog

## 0.1.6 : 13.03.2020

- **Feature**: Introduced `functions.StringAgg`
- **Feature**: Introduced `structures.CastOperator`
- **Feature**: CLI for parsing files

## 0.1.5 : 05.02.2020

- **Change**: Allow direct use of `structures.Comparision` in query conditions

## 0.1.4 : 05.02.2020

- **Fix**: Allow aliases in `structures.Query`
- **Change**: Do not escape `%`

## 0.1.3 : 03.02.2020

- **Feature**: Natural join support

## 0.1.2 : 03.02.2020

- **Change**: Completed docs
- **Feature**: Recursive nested properties lookup in `Query` object

## 0.1.1 : 26.02.2020

- **Change**: Default values for optional attributes in `structures.Query`
- **Change**: `custom_parser` now can raise `ParseError` if there is invalid object type passed

## 0.1.0 : 26.02.2020

- Initial release


