Metadata-Version: 2.1
Name: simple-query
Version: 0.0.1
Summary: Query pattern of containers of objects
Home-page: https://github.com/matannoam/SimpleQuery
Author: Matan Noam Shavit
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# SimpleQuery
query from containers of objects, in Python

## Query pattern

The Query pattern uses criteria on classes and fields to retrieve
value objects from a dataset. Those criteria are a field, an operator,
and a value. For example, ('last_name', =, 'Fowler') or ('price', <, 100.00).

## Setting up development environment
It is always recommended to use a virtual environment for each
Python appplication. Create the environment once, after cloning
this repository to your machine.
```
python3 -m venv .env
```

For each terminal session going forward, work on the virtual
environment and use its copy of python.
```
source .env/bin/activate
```

Upgrade pip
```
pip install -U pip
```

Install developer requirements for a nicer test runner (see Running Tests)
```
pip install -r requirements/dev.txt
```

## Running tests
Tests are written in unittest syntax, so no additional package are needed
to run them
```
python -m unittest discover
```
For a more informative output, as well as plugins for
color and watch mode, use nose test runner. You can also use the test runner
of your choice.
```
nosetests --rednose --with-watch
```


