.coveragerc
.editorconfig
.travis.yml
AUTHORS
README.rst
flake8.ini
flake8.tests.ini
pytest.ini
requirements.txt
setup.cfg
setup.py
tox.ini
byte/__init__.py
byte/collection.py
byte/model.py
byte/property.py
byte/registry.py
byte/types.py
byte.egg-info/PKG-INFO
byte.egg-info/SOURCES.txt
byte.egg-info/dependency_links.txt
byte.egg-info/not-zip-safe
byte.egg-info/pbr.json
byte.egg-info/requires.txt
byte.egg-info/top_level.txt
byte/compilers/__init__.py
byte/compilers/operation.py
byte/compilers/core/__init__.py
byte/compilers/core/base.py
byte/core/__init__.py
byte/core/compat.py
byte/core/helpers/__init__.py
byte/core/helpers/object.py
byte/core/helpers/resolve.py
byte/core/helpers/validate.py
byte/core/models/__init__.py
byte/core/models/property.py
byte/core/models/expressions/__init__.py
byte/core/models/expressions/base.py
byte/core/models/expressions/proxy.py
byte/core/models/nodes/__init__.py
byte/core/models/nodes/base.py
byte/core/models/nodes/set.py
byte/core/models/operations/__init__.py
byte/core/models/operations/base.py
byte/core/models/operations/delete.py
byte/core/models/operations/insert.py
byte/core/models/operations/select.py
byte/core/models/operations/update.py
byte/core/models/task/__init__.py
byte/core/models/task/base.py
byte/core/models/task/simple.py
byte/core/models/task/stream.py
byte/core/models/threading/__init__.py
byte/core/models/threading/local.py
byte/core/models/threading/pool.py
byte/core/plugin/__init__.py
byte/core/plugin/base.py
byte/core/plugin/manager.py
byte/executors/__init__.py
byte/executors/core/__init__.py
byte/executors/core/base/__init__.py
byte/executors/core/base/database.py
byte/executors/core/base/executor.py
byte/executors/core/base/format.py
byte/executors/core/base/simple.py
byte/executors/core/models/__init__.py
byte/executors/core/models/revision.py
byte/executors/core/models/database/__init__.py
byte/executors/core/models/database/connection.py
byte/executors/core/models/database/cursor.py
byte/executors/core/models/database/transaction.py
byte/executors/file/__init__.py
byte/executors/file/main.py
byte/executors/file/revision.py
byte/executors/file/lock/__init__.py
byte/executors/file/lock/base.py
byte/executors/file/lock/msvcrt.py
byte/executors/file/lock/posix.py
byte/executors/file/lock/win32.py
byte/executors/memory/__init__.py
byte/executors/memory/main.py
byte/executors/memory/revision.py
byte/executors/memory/tasks.py
byte/formats/__init__.py
byte/formats/core/__init__.py
byte/formats/core/base/__init__.py
byte/formats/core/base/collection.py
byte/formats/core/base/document.py
byte/formats/core/base/format.py
byte/formats/json/__init__.py
byte/formats/json/decoder.py
byte/formats/json/encoder.py
byte/formats/json/main.py
byte/formats/json/tasks.py
byte/queries/__init__.py
byte/queries/delete.py
byte/queries/insert.py
byte/queries/select.py
byte/queries/update.py
byte/queries/write.py
byte/queries/core/__init__.py
byte/queries/core/base.py
byte/queries/where/__init__.py
byte/queries/where/parser.py
byte/queries/where/query.py
tests/__init__.py
tests/requirements.txt
tests/__fixtures__/collections/albums.json
tests/__fixtures__/collections/artists.json
tests/__fixtures__/collections/cities.json
tests/__fixtures__/collections/tracks.json
tests/base/__init__.py
tests/base/core/__init__.py
tests/base/core/fixtures.py
tests/base/core/helpers.py
tests/base/models/__init__.py
tests/base/models/dynamic/__init__.py
tests/base/models/dynamic/album.py
tests/base/models/dynamic/artist.py
tests/base/models/dynamic/city.py
tests/base/models/dynamic/track.py
tests/base/models/dynamic/user.py
tests/base/models/static/__init__.py
tests/base/models/static/album.py
tests/base/models/static/artist.py
tests/base/models/static/track.py
tests/base/models/static/user.py
tests/executors/__init__.py
tests/executors/memory/__init__.py
tests/executors/memory/collection/__init__.py
tests/executors/memory/collection/dynamic_tests.py
tests/formats/__init__.py
tests/formats/json/__init__.py
tests/formats/json/collection_tests.py
tests/model/__init__.py
tests/model/basic/__init__.py
tests/model/basic/dynamic_tests.py
tests/model/basic/static_tests.py
tests/model/relation/__init__.py
tests/model/relation/dynamic_tests.py
tests/model/relation/static_tests.py
tests/plugin/__init__.py
tests/plugin/manager_tests.py
tests/queries/__init__.py
tests/queries/select/__init__.py
tests/queries/select/basic_tests.py
tests/queries/select/group_by_tests.py
tests/queries/select/limit_tests.py
tests/queries/select/order_by/__init__.py
tests/queries/select/order_by/expressive_tests.py
tests/queries/select/order_by/string_tests.py
tests/queries/select/order_by/tuple_tests.py
tests/queries/select/where/__init__.py
tests/queries/select/where/expressive_tests.py
tests/queries/select/where/parser_tests.py
tests/queries/select/where/string_tests.py