LICENSE
README.md
pyproject.toml
setup.cfg
commands/__init__.py
commands/documentation.py
commands/testing.py
commands/utils.py
datagrowth/__init__.py
datagrowth/admin.py
datagrowth/apps.py
datagrowth/exceptions.py
datagrowth/settings.py
datagrowth/version.py
datagrowth.egg-info/PKG-INFO
datagrowth.egg-info/SOURCES.txt
datagrowth.egg-info/dependency_links.txt
datagrowth.egg-info/requires.txt
datagrowth.egg-info/top_level.txt
datagrowth/configuration/__init__.py
datagrowth/configuration/configs.py
datagrowth/configuration/fields.py
datagrowth/configuration/serializers.py
datagrowth/configuration/types.py
datagrowth/datatypes/__init__.py
datagrowth/datatypes/admin.py
datagrowth/datatypes/storage.py
datagrowth/datatypes/types.py
datagrowth/datatypes/views.py
datagrowth/datatypes/annotations/__init__.py
datagrowth/datatypes/annotations/admin.py
datagrowth/datatypes/annotations/base.py
datagrowth/datatypes/annotations/views.py
datagrowth/datatypes/datasets/__init__.py
datagrowth/datatypes/datasets/admin.py
datagrowth/datatypes/datasets/constants.py
datagrowth/datatypes/datasets/db/__init__.py
datagrowth/datatypes/datasets/db/dataset.py
datagrowth/datatypes/documents/__init__.py
datagrowth/datatypes/documents/admin.py
datagrowth/datatypes/documents/db/__init__.py
datagrowth/datatypes/documents/db/collection.py
datagrowth/datatypes/documents/db/document.py
datagrowth/datatypes/documents/db/growth.py
datagrowth/datatypes/documents/db/version.py
datagrowth/datatypes/documents/tasks/__init__.py
datagrowth/datatypes/documents/tasks/base.py
datagrowth/datatypes/documents/tasks/collection.py
datagrowth/datatypes/documents/tasks/dataset_version.py
datagrowth/datatypes/documents/tasks/document.py
datagrowth/datatypes/documents/views/__init__.py
datagrowth/datatypes/documents/views/collection.py
datagrowth/datatypes/documents/views/content.py
datagrowth/datatypes/documents/views/document.py
datagrowth/management/__init__.py
datagrowth/management/base.py
datagrowth/management/commands/__init__.py
datagrowth/management/commands/copy_dataset.py
datagrowth/management/commands/dump_dataset.py
datagrowth/management/commands/dump_resource.py
datagrowth/management/commands/grow_dataset.py
datagrowth/management/commands/load_dataset.py
datagrowth/management/commands/load_resource.py
datagrowth/processors/__init__.py
datagrowth/processors/base.py
datagrowth/processors/growth.py
datagrowth/processors/input/__init__.py
datagrowth/processors/input/extraction.py
datagrowth/processors/input/iterators.py
datagrowth/processors/input/seeding.py
datagrowth/processors/input/transform.py
datagrowth/processors/resources/__init__.py
datagrowth/processors/resources/growth.py
datagrowth/resources/__init__.py
datagrowth/resources/admin.py
datagrowth/resources/base.py
datagrowth/resources/testing.py
datagrowth/resources/utils.py
datagrowth/resources/http/__init__.py
datagrowth/resources/http/admin.py
datagrowth/resources/http/decorators.py
datagrowth/resources/http/files.py
datagrowth/resources/http/generic.py
datagrowth/resources/http/iterators.py
datagrowth/resources/http/tasks.py
datagrowth/resources/shell/__init__.py
datagrowth/resources/shell/admin.py
datagrowth/resources/shell/generic.py
datagrowth/resources/shell/tasks.py
datagrowth/resources/shell/apache/__init__.py
datagrowth/resources/shell/apache/tika.py
datagrowth/resources/shell/kaldi/__init__.py
datagrowth/resources/shell/kaldi/aspire.py
datagrowth/resources/shell/kaldi/nl.py
datagrowth/utils/__init__.py
datagrowth/utils/data.py
datagrowth/utils/datetime.py
datagrowth/utils/io.py
datagrowth/utils/iterators.py
datagrowth/utils/tasks.py
tests/manage.py
tests/configuration/__init__.py
tests/configuration/tests.py
tests/datatypes/__init__.py
tests/datatypes/admin.py
tests/datatypes/apps.py
tests/datatypes/processors.py
tests/datatypes/tasks.py
tests/datatypes/urls.py
tests/datatypes/views.py
tests/datatypes/migrations/0001_initial.py
tests/datatypes/migrations/0002_datasets.py
tests/datatypes/migrations/__init__.py
tests/datatypes/models/__init__.py
tests/datatypes/models/collection.py
tests/datatypes/models/dataset.py
tests/datatypes/models/document.py
tests/datatypes/models/growth.py
tests/datatypes/tests/__init__.py
tests/datatypes/tests/data_storage.py
tests/datatypes/tests/test_collection.py
tests/datatypes/tests/test_collection_view.py
tests/datatypes/tests/test_dataset_version.py
tests/datatypes/tests/test_document.py
tests/datatypes/tests/test_document_view.py
tests/datatypes/tests/test_grow_collection.py
tests/datatypes/tests/dataset/__init__.py
tests/datatypes/tests/dataset/base.py
tests/datatypes/tests/dataset/test_dataset.py
tests/datatypes/tests/dataset/test_freeze_strategy.py
tests/datatypes/tests/dataset/test_reset_strategy.py
tests/datatypes/tests/dataset/test_revise_strategy.py
tests/datatypes/tests/dataset/test_stack_strategy.py
tests/processors/__init__.py
tests/processors/apps.py
tests/processors/migrations/__init__.py
tests/processors/processors/__init__.py
tests/processors/processors/base.py
tests/processors/processors/output.py
tests/processors/tests/__init__.py
tests/processors/tests/base.py
tests/processors/tests/iterators.py
tests/processors/tests/transformation.py
tests/processors/tests/growth/__init__.py
tests/processors/tests/growth/http.py
tests/processors/tests/seeding/__init__.py
tests/processors/tests/seeding/base.py
tests/processors/tests/seeding/merge.py
tests/processors/tests/seeding/nested.py
tests/processors/tests/seeding/simple.py
tests/project/__init__.py
tests/project/celery.py
tests/project/settings.py
tests/project/tasks.py
tests/project/urls.py
tests/project/wsgi.py
tests/project/entities/__init__.py
tests/project/entities/constants.py
tests/project/entities/generators.py
tests/project/entities/tasks.py
tests/project/entities/views.py
tests/project/mocks/__init__.py
tests/project/mocks/data.py
tests/resources/__init__.py
tests/resources/admin.py
tests/resources/apps.py
tests/resources/migrations/0001_initial.py
tests/resources/migrations/0002_json_field.py
tests/resources/migrations/0003_entities.py
tests/resources/migrations/__init__.py
tests/resources/mocks/__init__.py
tests/resources/mocks/requests.py
tests/resources/mocks/subprocess.py
tests/resources/models/__init__.py
tests/resources/models/entities.py
tests/resources/models/files.py
tests/resources/models/http.py
tests/resources/models/micro.py
tests/resources/models/shell.py
tests/resources/models/url.py
tests/resources/tests/__init__.py
tests/resources/tests/base.py
tests/resources/tests/test_resource_fixtures.py
tests/resources/tests/test_utils.py
tests/resources/tests/http/__init__.py
tests/resources/tests/http/task_base.py
tests/resources/tests/http/test_core.py
tests/resources/tests/http/test_files.py
tests/resources/tests/http/test_generic.py
tests/resources/tests/http/test_iterators.py
tests/resources/tests/http/test_micro.py
tests/resources/tests/http/test_tasks.py
tests/resources/tests/http/test_url.py
tests/resources/tests/shell/__init__.py
tests/resources/tests/shell/test_core.py
tests/resources/tests/shell/test_generic.py
tests/resources/tests/shell/test_tasks.py
tests/utils/__init__.py
tests/utils/tests/__init__.py
tests/utils/tests/data.py
tests/utils/tests/datetime.py
tests/utils/tests/io.py
tests/utils/tests/iterators.py