├── .gitignore ├── Dockerfiles ├── web.dockerfile └── worker.dockerfile ├── LICENSE ├── README.md ├── config.py ├── development_env ├── dive ├── __init__.py ├── base │ ├── __init__.py │ ├── constants │ │ ├── __init__.py │ │ ├── analysis.py │ │ ├── data.py │ │ ├── db.py │ │ ├── user.py │ │ └── visualization.py │ ├── core.py │ ├── data │ │ ├── __init__.py │ │ ├── access.py │ │ └── in_memory_data.py │ ├── db │ │ ├── __init__.py │ │ ├── accounts.py │ │ ├── db_access.py │ │ ├── helpers.py │ │ └── models.py │ ├── exceptions.py │ ├── serialization.py │ ├── setup_logging.py │ └── templates │ │ ├── confirm_email.html │ │ └── reset_password.html ├── server │ ├── __init__.py │ ├── api.py │ ├── auth │ │ ├── __init__.py │ │ ├── dataset.py │ │ ├── email.py │ │ └── token.py │ ├── core.py │ ├── gunicorn-config.py │ └── resources │ │ ├── __init__.py │ │ ├── auth_resources.py │ │ ├── datasets.py │ │ ├── documents.py │ │ ├── exported_analyses.py │ │ ├── exported_specs.py │ │ ├── feedback.py │ │ ├── field_properties_resources.py │ │ ├── fields.py │ │ ├── projects.py │ │ ├── render.py │ │ ├── specs.py │ │ ├── statistics_resources.py │ │ ├── task_resources.py │ │ └── transform.py └── worker │ ├── __init__.py │ ├── core.py │ ├── handlers.py │ ├── ingestion │ ├── __init__.py │ ├── binning.py │ ├── dataset_properties.py │ ├── dateparser.py │ ├── field_properties.py │ ├── id_detection.py │ ├── relationships.py │ ├── type_classes.py │ ├── type_detection.py │ ├── types.py │ ├── upload.py │ └── utilities.py │ ├── pipelines.py │ ├── statistics │ ├── __init__.py │ ├── aggregation │ │ ├── __init__.py │ │ ├── helpers.py │ │ ├── one_dimensional.py │ │ ├── pipelines.py │ │ └── two_dimensional.py │ ├── comparison │ │ ├── __init__.py │ │ ├── anova.py │ │ ├── anova_boxplot.py │ │ ├── numerical_comparison.py │ │ ├── pairwise_comparison.py │ │ └── pipelines.py │ ├── correlation │ │ ├── __init__.py │ │ └── pipelines.py │ ├── fit.py │ ├── regression │ │ ├── __init__.py │ │ ├── evaluation.py │ │ ├── helpers.py │ │ ├── model_recommendation.py │ │ ├── pipelines.py │ │ ├── rsquared.py │ │ └── table_layout.py │ ├── tests.py │ ├── timing.py │ └── utilities.py │ ├── transformation │ ├── __init__.py │ ├── join.py │ ├── pivot.py │ ├── reduce.py │ └── utilities.py │ ├── utilities.py │ └── visualization │ ├── __init__.py │ ├── data.py │ ├── enumerate_specs.py │ ├── marginal_spec_functions │ ├── __init__.py │ ├── mixed_field_multi_type_specs.py │ ├── multi_field_multi_type_specs.py │ ├── multi_field_single_type_specs.py │ ├── single_field_multi_type_specs.py │ └── single_field_single_type_specs.py │ ├── score_specs.py │ ├── spec_pipeline.py │ ├── type_mapping.py │ └── utilities.py ├── fabfile.py ├── logging.yaml ├── logs └── .gitignore ├── manager.py ├── monitor.sh ├── production_env ├── requirements.txt ├── run_server.py ├── run_server.sh └── run_worker.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfiles/web.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/Dockerfiles/web.dockerfile -------------------------------------------------------------------------------- /Dockerfiles/worker.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/Dockerfiles/worker.dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/config.py -------------------------------------------------------------------------------- /development_env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/development_env -------------------------------------------------------------------------------- /dive/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/__init__.py -------------------------------------------------------------------------------- /dive/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/base/__init__.py -------------------------------------------------------------------------------- /dive/base/constants/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/base/constants/__init__.py -------------------------------------------------------------------------------- /dive/base/constants/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/base/constants/analysis.py -------------------------------------------------------------------------------- /dive/base/constants/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/base/constants/data.py -------------------------------------------------------------------------------- /dive/base/constants/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/base/constants/db.py -------------------------------------------------------------------------------- /dive/base/constants/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/base/constants/user.py -------------------------------------------------------------------------------- /dive/base/constants/visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/base/constants/visualization.py -------------------------------------------------------------------------------- /dive/base/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/base/core.py -------------------------------------------------------------------------------- /dive/base/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dive/base/data/access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/base/data/access.py -------------------------------------------------------------------------------- /dive/base/data/in_memory_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/base/data/in_memory_data.py -------------------------------------------------------------------------------- /dive/base/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dive/base/db/accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/base/db/accounts.py -------------------------------------------------------------------------------- /dive/base/db/db_access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/base/db/db_access.py -------------------------------------------------------------------------------- /dive/base/db/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/base/db/helpers.py -------------------------------------------------------------------------------- /dive/base/db/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/base/db/models.py -------------------------------------------------------------------------------- /dive/base/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/base/exceptions.py -------------------------------------------------------------------------------- /dive/base/serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/base/serialization.py -------------------------------------------------------------------------------- /dive/base/setup_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/base/setup_logging.py -------------------------------------------------------------------------------- /dive/base/templates/confirm_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/base/templates/confirm_email.html -------------------------------------------------------------------------------- /dive/base/templates/reset_password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/base/templates/reset_password.html -------------------------------------------------------------------------------- /dive/server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dive/server/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/server/api.py -------------------------------------------------------------------------------- /dive/server/auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dive/server/auth/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/server/auth/dataset.py -------------------------------------------------------------------------------- /dive/server/auth/email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/server/auth/email.py -------------------------------------------------------------------------------- /dive/server/auth/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/server/auth/token.py -------------------------------------------------------------------------------- /dive/server/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/server/core.py -------------------------------------------------------------------------------- /dive/server/gunicorn-config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/server/gunicorn-config.py -------------------------------------------------------------------------------- /dive/server/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dive/server/resources/auth_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/server/resources/auth_resources.py -------------------------------------------------------------------------------- /dive/server/resources/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/server/resources/datasets.py -------------------------------------------------------------------------------- /dive/server/resources/documents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/server/resources/documents.py -------------------------------------------------------------------------------- /dive/server/resources/exported_analyses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/server/resources/exported_analyses.py -------------------------------------------------------------------------------- /dive/server/resources/exported_specs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/server/resources/exported_specs.py -------------------------------------------------------------------------------- /dive/server/resources/feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/server/resources/feedback.py -------------------------------------------------------------------------------- /dive/server/resources/field_properties_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/server/resources/field_properties_resources.py -------------------------------------------------------------------------------- /dive/server/resources/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/server/resources/fields.py -------------------------------------------------------------------------------- /dive/server/resources/projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/server/resources/projects.py -------------------------------------------------------------------------------- /dive/server/resources/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/server/resources/render.py -------------------------------------------------------------------------------- /dive/server/resources/specs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/server/resources/specs.py -------------------------------------------------------------------------------- /dive/server/resources/statistics_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/server/resources/statistics_resources.py -------------------------------------------------------------------------------- /dive/server/resources/task_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/server/resources/task_resources.py -------------------------------------------------------------------------------- /dive/server/resources/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/server/resources/transform.py -------------------------------------------------------------------------------- /dive/worker/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dive/worker/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/core.py -------------------------------------------------------------------------------- /dive/worker/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/handlers.py -------------------------------------------------------------------------------- /dive/worker/ingestion/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dive/worker/ingestion/binning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/ingestion/binning.py -------------------------------------------------------------------------------- /dive/worker/ingestion/dataset_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/ingestion/dataset_properties.py -------------------------------------------------------------------------------- /dive/worker/ingestion/dateparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/ingestion/dateparser.py -------------------------------------------------------------------------------- /dive/worker/ingestion/field_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/ingestion/field_properties.py -------------------------------------------------------------------------------- /dive/worker/ingestion/id_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/ingestion/id_detection.py -------------------------------------------------------------------------------- /dive/worker/ingestion/relationships.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/ingestion/relationships.py -------------------------------------------------------------------------------- /dive/worker/ingestion/type_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/ingestion/type_classes.py -------------------------------------------------------------------------------- /dive/worker/ingestion/type_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/ingestion/type_detection.py -------------------------------------------------------------------------------- /dive/worker/ingestion/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/ingestion/types.py -------------------------------------------------------------------------------- /dive/worker/ingestion/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/ingestion/upload.py -------------------------------------------------------------------------------- /dive/worker/ingestion/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/ingestion/utilities.py -------------------------------------------------------------------------------- /dive/worker/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/pipelines.py -------------------------------------------------------------------------------- /dive/worker/statistics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dive/worker/statistics/aggregation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dive/worker/statistics/aggregation/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/statistics/aggregation/helpers.py -------------------------------------------------------------------------------- /dive/worker/statistics/aggregation/one_dimensional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/statistics/aggregation/one_dimensional.py -------------------------------------------------------------------------------- /dive/worker/statistics/aggregation/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/statistics/aggregation/pipelines.py -------------------------------------------------------------------------------- /dive/worker/statistics/aggregation/two_dimensional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/statistics/aggregation/two_dimensional.py -------------------------------------------------------------------------------- /dive/worker/statistics/comparison/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dive/worker/statistics/comparison/anova.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/statistics/comparison/anova.py -------------------------------------------------------------------------------- /dive/worker/statistics/comparison/anova_boxplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/statistics/comparison/anova_boxplot.py -------------------------------------------------------------------------------- /dive/worker/statistics/comparison/numerical_comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/statistics/comparison/numerical_comparison.py -------------------------------------------------------------------------------- /dive/worker/statistics/comparison/pairwise_comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/statistics/comparison/pairwise_comparison.py -------------------------------------------------------------------------------- /dive/worker/statistics/comparison/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/statistics/comparison/pipelines.py -------------------------------------------------------------------------------- /dive/worker/statistics/correlation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dive/worker/statistics/correlation/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/statistics/correlation/pipelines.py -------------------------------------------------------------------------------- /dive/worker/statistics/fit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/statistics/fit.py -------------------------------------------------------------------------------- /dive/worker/statistics/regression/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dive/worker/statistics/regression/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/statistics/regression/evaluation.py -------------------------------------------------------------------------------- /dive/worker/statistics/regression/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/statistics/regression/helpers.py -------------------------------------------------------------------------------- /dive/worker/statistics/regression/model_recommendation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/statistics/regression/model_recommendation.py -------------------------------------------------------------------------------- /dive/worker/statistics/regression/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/statistics/regression/pipelines.py -------------------------------------------------------------------------------- /dive/worker/statistics/regression/rsquared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/statistics/regression/rsquared.py -------------------------------------------------------------------------------- /dive/worker/statistics/regression/table_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/statistics/regression/table_layout.py -------------------------------------------------------------------------------- /dive/worker/statistics/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/statistics/tests.py -------------------------------------------------------------------------------- /dive/worker/statistics/timing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/statistics/timing.py -------------------------------------------------------------------------------- /dive/worker/statistics/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/statistics/utilities.py -------------------------------------------------------------------------------- /dive/worker/transformation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dive/worker/transformation/join.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/transformation/join.py -------------------------------------------------------------------------------- /dive/worker/transformation/pivot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/transformation/pivot.py -------------------------------------------------------------------------------- /dive/worker/transformation/reduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/transformation/reduce.py -------------------------------------------------------------------------------- /dive/worker/transformation/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/transformation/utilities.py -------------------------------------------------------------------------------- /dive/worker/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/utilities.py -------------------------------------------------------------------------------- /dive/worker/visualization/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dive/worker/visualization/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/visualization/data.py -------------------------------------------------------------------------------- /dive/worker/visualization/enumerate_specs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/visualization/enumerate_specs.py -------------------------------------------------------------------------------- /dive/worker/visualization/marginal_spec_functions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/visualization/marginal_spec_functions/__init__.py -------------------------------------------------------------------------------- /dive/worker/visualization/marginal_spec_functions/mixed_field_multi_type_specs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/visualization/marginal_spec_functions/mixed_field_multi_type_specs.py -------------------------------------------------------------------------------- /dive/worker/visualization/marginal_spec_functions/multi_field_multi_type_specs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/visualization/marginal_spec_functions/multi_field_multi_type_specs.py -------------------------------------------------------------------------------- /dive/worker/visualization/marginal_spec_functions/multi_field_single_type_specs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/visualization/marginal_spec_functions/multi_field_single_type_specs.py -------------------------------------------------------------------------------- /dive/worker/visualization/marginal_spec_functions/single_field_multi_type_specs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/visualization/marginal_spec_functions/single_field_multi_type_specs.py -------------------------------------------------------------------------------- /dive/worker/visualization/marginal_spec_functions/single_field_single_type_specs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/visualization/marginal_spec_functions/single_field_single_type_specs.py -------------------------------------------------------------------------------- /dive/worker/visualization/score_specs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/visualization/score_specs.py -------------------------------------------------------------------------------- /dive/worker/visualization/spec_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/visualization/spec_pipeline.py -------------------------------------------------------------------------------- /dive/worker/visualization/type_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/visualization/type_mapping.py -------------------------------------------------------------------------------- /dive/worker/visualization/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/dive/worker/visualization/utilities.py -------------------------------------------------------------------------------- /fabfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/fabfile.py -------------------------------------------------------------------------------- /logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/logging.yaml -------------------------------------------------------------------------------- /logs/.gitignore: -------------------------------------------------------------------------------- 1 | [^.]* 2 | -------------------------------------------------------------------------------- /manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/manager.py -------------------------------------------------------------------------------- /monitor.sh: -------------------------------------------------------------------------------- 1 | celery -A dive.worker.core flower 2 | -------------------------------------------------------------------------------- /production_env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/production_env -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/run_server.py -------------------------------------------------------------------------------- /run_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/run_server.sh -------------------------------------------------------------------------------- /run_worker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CenterForCollectiveLearning/DIVE-backend/HEAD/run_worker.sh --------------------------------------------------------------------------------