├── .gitignore ├── .idea ├── .gitignore ├── GremlinServer.iml ├── copyright │ ├── AGPL.xml │ └── profiles_settings.xml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── CONTRIBUTORS.txt ├── COPYING ├── README.rst ├── celerybeat.pid ├── compose ├── local │ └── django │ │ ├── Dockerfile │ │ ├── celery │ │ ├── beat │ │ │ └── start │ │ ├── flower │ │ │ └── start │ │ └── worker │ │ │ └── start │ │ └── start └── production │ ├── aws │ ├── Dockerfile │ └── maintenance │ │ ├── download │ │ └── upload │ ├── django │ ├── Dockerfile │ ├── celery │ │ ├── beat │ │ │ └── start │ │ ├── flower │ │ │ └── start │ │ └── worker │ │ │ └── start │ ├── entrypoint │ └── start │ ├── postgres │ ├── Dockerfile │ └── maintenance │ │ ├── _sourced │ │ ├── constants.sh │ │ ├── countdown.sh │ │ ├── messages.sh │ │ └── yes_no.sh │ │ ├── backup │ │ ├── backups │ │ └── restore │ └── traefik │ ├── Dockerfile │ └── traefik.yml ├── config ├── __init__.py ├── api_router.py ├── auth_router.py ├── celery_app.py ├── settings │ ├── __init__.py │ ├── base.py │ ├── local.py │ ├── production.py │ └── test.py ├── urls.py └── wsgi.py ├── docs ├── Makefile ├── __init__.py ├── conf.py ├── images │ ├── AtticusClassifier.gif │ ├── LawyerInterface.gif │ ├── PipelineBuilder.gif │ ├── gremlin_512.png │ ├── pipeline_editor.png │ ├── script_editor.png │ └── wizard_view.png ├── index.rst ├── make.bat └── pycharm │ ├── configuration.rst │ └── images │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 7.png │ ├── 8.png │ ├── f1.png │ ├── f2.png │ ├── f3.png │ ├── f4.png │ ├── issue1.png │ └── issue2.png ├── gremlin ├── __init__.py ├── conftest.py ├── contrib │ ├── __init__.py │ └── sites │ │ ├── __init__.py │ │ └── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_alter_domain_unique.py │ │ ├── 0003_set_site_domain_and_name.py │ │ ├── 0004_auto_20200906_1412.py │ │ └── __init__.py ├── jobs │ ├── ImportExportUtils.py │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_job_job_input_json.py │ │ ├── 0003_remove_job_job_inputs.py │ │ └── __init__.py │ ├── models.py │ ├── paginations.py │ ├── serializers.py │ ├── signals.py │ ├── tasklogger.py │ ├── tasks │ │ ├── __init__.py │ │ ├── built_in_tasks.py │ │ ├── scripts │ │ │ ├── OCR_PDF │ │ │ │ ├── OCR_PDF.py │ │ │ │ └── __init__.py │ │ │ ├── SPACY_NER EXTRACT │ │ │ │ ├── SPACY_NER EXTRACT.py │ │ │ │ └── __init__.py │ │ │ ├── TFIDF_FEATURE EXTRACT │ │ │ │ ├── TFIDF_FEATURE EXTRACT.py │ │ │ │ └── __init__.py │ │ │ └── __init__.py │ │ ├── taskLoggers.py │ │ ├── task_constants.py │ │ ├── task_helpers.py │ │ └── tasks.py │ ├── tests.py │ └── views.py ├── static │ ├── css │ │ ├── project.css │ │ └── styles.css │ ├── fonts │ │ └── .gitkeep │ ├── images │ │ ├── Data Pipeline Editor.png │ │ ├── GreamlinPad.png │ │ ├── GreamlinPad.xcf │ │ ├── Intro.png │ │ ├── Pipeline Simulations and Tests.png │ │ ├── Python Script Editor.png │ │ ├── System Dash.png │ │ ├── Wizard.png │ │ ├── bg-masthead.jpg │ │ ├── bg-signup.jpg │ │ ├── code.png │ │ ├── controlsnippet.png │ │ ├── demo-image-01.jpg │ │ ├── demo-image-02.jpg │ │ ├── favicon.ico │ │ ├── favicons │ │ │ ├── favicon.ico │ │ │ └── gremlin_favicon.ico │ │ ├── gremlin_100_inverted.png │ │ ├── gremlin_512.png │ │ ├── gremlin_512_inverted.png │ │ ├── ipad.png │ │ ├── ipad2.png │ │ ├── ipad2.xcf │ │ ├── python-logo-generic.svg │ │ ├── python-logo.png │ │ ├── pythoneditor.png │ │ ├── react-logo-825x510.jpg │ │ └── visual_programming.png │ ├── js │ │ ├── project.js │ │ └── scripts.js │ └── sass │ │ ├── custom_bootstrap_vars.scss │ │ └── project.scss ├── templates │ ├── 403.html │ ├── 404.html │ ├── 500.html │ ├── account │ │ ├── account_inactive.html │ │ ├── base.html │ │ ├── email.html │ │ ├── email_confirm.html │ │ ├── login.html │ │ ├── logout.html │ │ ├── password_change.html │ │ ├── password_reset.html │ │ ├── password_reset_done.html │ │ ├── password_reset_from_key.html │ │ ├── password_reset_from_key_done.html │ │ ├── password_set.html │ │ ├── signup.html │ │ ├── signup_closed.html │ │ ├── verification_sent.html │ │ └── verified_email_required.html │ ├── base.html │ ├── pages │ │ ├── about.html │ │ ├── home.html │ │ └── swagger-ui.html │ └── users │ │ ├── user_detail.html │ │ └── user_form.html ├── users │ ├── __init__.py │ ├── adapters.py │ ├── admin.py │ ├── api │ │ ├── serializers.py │ │ └── views.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_user_role.py │ │ ├── 0003_auto_20200906_1412.py │ │ ├── 0004_auto_20200929_1758.py │ │ ├── 0005_auto_20201008_2228.py │ │ ├── 0006_auto_20201008_2234.py │ │ ├── 0007_auto_20201213_1607.py │ │ └── __init__.py │ ├── models.py │ ├── paginations.py │ ├── tasks.py │ ├── tests │ │ ├── __init__.py │ │ ├── factories.py │ │ ├── test_drf_urls.py │ │ ├── test_drf_views.py │ │ ├── test_forms.py │ │ ├── test_models.py │ │ ├── test_tasks.py │ │ ├── test_urls.py │ │ └── test_views.py │ ├── urls.py │ └── views.py └── utils │ ├── __init__.py │ ├── context_processors.py │ ├── emails.py │ ├── errors.py │ ├── filters.py │ └── storages.py ├── license.md ├── local.yml ├── locale └── README.rst ├── manage.py ├── manifest.json ├── merge_production_dotenvs_in_dotenv.py ├── production.yml ├── pytest.ini ├── repositories ├── requirements.txt ├── requirements ├── base.txt ├── local.txt └── production.txt ├── samples ├── envs │ ├── local │ │ ├── django.env │ │ └── postgres.env │ └── production │ │ ├── django.env │ │ └── postgres.env └── pipelines │ ├── Atticus Classifier.zip │ ├── Doc Automation Example.zip │ ├── OCR PDFs.zip │ └── TFIDF Clustering_Auto_Detect_K.zip └── setup.cfg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/GremlinServer.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/.idea/GremlinServer.iml -------------------------------------------------------------------------------- /.idea/copyright/AGPL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/.idea/copyright/AGPL.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /CONTRIBUTORS.txt: -------------------------------------------------------------------------------- 1 | John Scrudato IV / Gordium Knot, Inc. 2 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/COPYING -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/README.rst -------------------------------------------------------------------------------- /celerybeat.pid: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /compose/local/django/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/compose/local/django/Dockerfile -------------------------------------------------------------------------------- /compose/local/django/celery/beat/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/compose/local/django/celery/beat/start -------------------------------------------------------------------------------- /compose/local/django/celery/flower/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/compose/local/django/celery/flower/start -------------------------------------------------------------------------------- /compose/local/django/celery/worker/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/compose/local/django/celery/worker/start -------------------------------------------------------------------------------- /compose/local/django/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/compose/local/django/start -------------------------------------------------------------------------------- /compose/production/aws/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/compose/production/aws/Dockerfile -------------------------------------------------------------------------------- /compose/production/aws/maintenance/download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/compose/production/aws/maintenance/download -------------------------------------------------------------------------------- /compose/production/aws/maintenance/upload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/compose/production/aws/maintenance/upload -------------------------------------------------------------------------------- /compose/production/django/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/compose/production/django/Dockerfile -------------------------------------------------------------------------------- /compose/production/django/celery/beat/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/compose/production/django/celery/beat/start -------------------------------------------------------------------------------- /compose/production/django/celery/flower/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/compose/production/django/celery/flower/start -------------------------------------------------------------------------------- /compose/production/django/celery/worker/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/compose/production/django/celery/worker/start -------------------------------------------------------------------------------- /compose/production/django/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/compose/production/django/entrypoint -------------------------------------------------------------------------------- /compose/production/django/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/compose/production/django/start -------------------------------------------------------------------------------- /compose/production/postgres/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/compose/production/postgres/Dockerfile -------------------------------------------------------------------------------- /compose/production/postgres/maintenance/_sourced/constants.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/compose/production/postgres/maintenance/_sourced/constants.sh -------------------------------------------------------------------------------- /compose/production/postgres/maintenance/_sourced/countdown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/compose/production/postgres/maintenance/_sourced/countdown.sh -------------------------------------------------------------------------------- /compose/production/postgres/maintenance/_sourced/messages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/compose/production/postgres/maintenance/_sourced/messages.sh -------------------------------------------------------------------------------- /compose/production/postgres/maintenance/_sourced/yes_no.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/compose/production/postgres/maintenance/_sourced/yes_no.sh -------------------------------------------------------------------------------- /compose/production/postgres/maintenance/backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/compose/production/postgres/maintenance/backup -------------------------------------------------------------------------------- /compose/production/postgres/maintenance/backups: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/compose/production/postgres/maintenance/backups -------------------------------------------------------------------------------- /compose/production/postgres/maintenance/restore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/compose/production/postgres/maintenance/restore -------------------------------------------------------------------------------- /compose/production/traefik/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/compose/production/traefik/Dockerfile -------------------------------------------------------------------------------- /compose/production/traefik/traefik.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/compose/production/traefik/traefik.yml -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/config/__init__.py -------------------------------------------------------------------------------- /config/api_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/config/api_router.py -------------------------------------------------------------------------------- /config/auth_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/config/auth_router.py -------------------------------------------------------------------------------- /config/celery_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/config/celery_app.py -------------------------------------------------------------------------------- /config/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/config/settings/base.py -------------------------------------------------------------------------------- /config/settings/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/config/settings/local.py -------------------------------------------------------------------------------- /config/settings/production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/config/settings/production.py -------------------------------------------------------------------------------- /config/settings/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/config/settings/test.py -------------------------------------------------------------------------------- /config/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/config/urls.py -------------------------------------------------------------------------------- /config/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/config/wsgi.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/docs/__init__.py -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/images/AtticusClassifier.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/docs/images/AtticusClassifier.gif -------------------------------------------------------------------------------- /docs/images/LawyerInterface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/docs/images/LawyerInterface.gif -------------------------------------------------------------------------------- /docs/images/PipelineBuilder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/docs/images/PipelineBuilder.gif -------------------------------------------------------------------------------- /docs/images/gremlin_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/docs/images/gremlin_512.png -------------------------------------------------------------------------------- /docs/images/pipeline_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/docs/images/pipeline_editor.png -------------------------------------------------------------------------------- /docs/images/script_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/docs/images/script_editor.png -------------------------------------------------------------------------------- /docs/images/wizard_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/docs/images/wizard_view.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/pycharm/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/docs/pycharm/configuration.rst -------------------------------------------------------------------------------- /docs/pycharm/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/docs/pycharm/images/1.png -------------------------------------------------------------------------------- /docs/pycharm/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/docs/pycharm/images/2.png -------------------------------------------------------------------------------- /docs/pycharm/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/docs/pycharm/images/3.png -------------------------------------------------------------------------------- /docs/pycharm/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/docs/pycharm/images/4.png -------------------------------------------------------------------------------- /docs/pycharm/images/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/docs/pycharm/images/7.png -------------------------------------------------------------------------------- /docs/pycharm/images/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/docs/pycharm/images/8.png -------------------------------------------------------------------------------- /docs/pycharm/images/f1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/docs/pycharm/images/f1.png -------------------------------------------------------------------------------- /docs/pycharm/images/f2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/docs/pycharm/images/f2.png -------------------------------------------------------------------------------- /docs/pycharm/images/f3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/docs/pycharm/images/f3.png -------------------------------------------------------------------------------- /docs/pycharm/images/f4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/docs/pycharm/images/f4.png -------------------------------------------------------------------------------- /docs/pycharm/images/issue1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/docs/pycharm/images/issue1.png -------------------------------------------------------------------------------- /docs/pycharm/images/issue2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/docs/pycharm/images/issue2.png -------------------------------------------------------------------------------- /gremlin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/__init__.py -------------------------------------------------------------------------------- /gremlin/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/conftest.py -------------------------------------------------------------------------------- /gremlin/contrib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/contrib/__init__.py -------------------------------------------------------------------------------- /gremlin/contrib/sites/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/contrib/sites/__init__.py -------------------------------------------------------------------------------- /gremlin/contrib/sites/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/contrib/sites/migrations/0001_initial.py -------------------------------------------------------------------------------- /gremlin/contrib/sites/migrations/0002_alter_domain_unique.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/contrib/sites/migrations/0002_alter_domain_unique.py -------------------------------------------------------------------------------- /gremlin/contrib/sites/migrations/0003_set_site_domain_and_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/contrib/sites/migrations/0003_set_site_domain_and_name.py -------------------------------------------------------------------------------- /gremlin/contrib/sites/migrations/0004_auto_20200906_1412.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/contrib/sites/migrations/0004_auto_20200906_1412.py -------------------------------------------------------------------------------- /gremlin/contrib/sites/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/contrib/sites/migrations/__init__.py -------------------------------------------------------------------------------- /gremlin/jobs/ImportExportUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/jobs/ImportExportUtils.py -------------------------------------------------------------------------------- /gremlin/jobs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gremlin/jobs/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/jobs/admin.py -------------------------------------------------------------------------------- /gremlin/jobs/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/jobs/apps.py -------------------------------------------------------------------------------- /gremlin/jobs/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/jobs/forms.py -------------------------------------------------------------------------------- /gremlin/jobs/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/jobs/migrations/0001_initial.py -------------------------------------------------------------------------------- /gremlin/jobs/migrations/0002_job_job_input_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/jobs/migrations/0002_job_job_input_json.py -------------------------------------------------------------------------------- /gremlin/jobs/migrations/0003_remove_job_job_inputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/jobs/migrations/0003_remove_job_job_inputs.py -------------------------------------------------------------------------------- /gremlin/jobs/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gremlin/jobs/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/jobs/models.py -------------------------------------------------------------------------------- /gremlin/jobs/paginations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/jobs/paginations.py -------------------------------------------------------------------------------- /gremlin/jobs/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/jobs/serializers.py -------------------------------------------------------------------------------- /gremlin/jobs/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/jobs/signals.py -------------------------------------------------------------------------------- /gremlin/jobs/tasklogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/jobs/tasklogger.py -------------------------------------------------------------------------------- /gremlin/jobs/tasks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gremlin/jobs/tasks/built_in_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/jobs/tasks/built_in_tasks.py -------------------------------------------------------------------------------- /gremlin/jobs/tasks/scripts/OCR_PDF/OCR_PDF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/jobs/tasks/scripts/OCR_PDF/OCR_PDF.py -------------------------------------------------------------------------------- /gremlin/jobs/tasks/scripts/OCR_PDF/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/jobs/tasks/scripts/OCR_PDF/__init__.py -------------------------------------------------------------------------------- /gremlin/jobs/tasks/scripts/SPACY_NER EXTRACT/SPACY_NER EXTRACT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/jobs/tasks/scripts/SPACY_NER EXTRACT/SPACY_NER EXTRACT.py -------------------------------------------------------------------------------- /gremlin/jobs/tasks/scripts/SPACY_NER EXTRACT/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/jobs/tasks/scripts/SPACY_NER EXTRACT/__init__.py -------------------------------------------------------------------------------- /gremlin/jobs/tasks/scripts/TFIDF_FEATURE EXTRACT/TFIDF_FEATURE EXTRACT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/jobs/tasks/scripts/TFIDF_FEATURE EXTRACT/TFIDF_FEATURE EXTRACT.py -------------------------------------------------------------------------------- /gremlin/jobs/tasks/scripts/TFIDF_FEATURE EXTRACT/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/jobs/tasks/scripts/TFIDF_FEATURE EXTRACT/__init__.py -------------------------------------------------------------------------------- /gremlin/jobs/tasks/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gremlin/jobs/tasks/taskLoggers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/jobs/tasks/taskLoggers.py -------------------------------------------------------------------------------- /gremlin/jobs/tasks/task_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/jobs/tasks/task_constants.py -------------------------------------------------------------------------------- /gremlin/jobs/tasks/task_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/jobs/tasks/task_helpers.py -------------------------------------------------------------------------------- /gremlin/jobs/tasks/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/jobs/tasks/tasks.py -------------------------------------------------------------------------------- /gremlin/jobs/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/jobs/tests.py -------------------------------------------------------------------------------- /gremlin/jobs/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/jobs/views.py -------------------------------------------------------------------------------- /gremlin/static/css/project.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/static/css/project.css -------------------------------------------------------------------------------- /gremlin/static/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/static/css/styles.css -------------------------------------------------------------------------------- /gremlin/static/fonts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gremlin/static/images/Data Pipeline Editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/static/images/Data Pipeline Editor.png -------------------------------------------------------------------------------- /gremlin/static/images/GreamlinPad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/static/images/GreamlinPad.png -------------------------------------------------------------------------------- /gremlin/static/images/GreamlinPad.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/static/images/GreamlinPad.xcf -------------------------------------------------------------------------------- /gremlin/static/images/Intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/static/images/Intro.png -------------------------------------------------------------------------------- /gremlin/static/images/Pipeline Simulations and Tests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/static/images/Pipeline Simulations and Tests.png -------------------------------------------------------------------------------- /gremlin/static/images/Python Script Editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/static/images/Python Script Editor.png -------------------------------------------------------------------------------- /gremlin/static/images/System Dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/static/images/System Dash.png -------------------------------------------------------------------------------- /gremlin/static/images/Wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/static/images/Wizard.png -------------------------------------------------------------------------------- /gremlin/static/images/bg-masthead.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/static/images/bg-masthead.jpg -------------------------------------------------------------------------------- /gremlin/static/images/bg-signup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/static/images/bg-signup.jpg -------------------------------------------------------------------------------- /gremlin/static/images/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/static/images/code.png -------------------------------------------------------------------------------- /gremlin/static/images/controlsnippet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/static/images/controlsnippet.png -------------------------------------------------------------------------------- /gremlin/static/images/demo-image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/static/images/demo-image-01.jpg -------------------------------------------------------------------------------- /gremlin/static/images/demo-image-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/static/images/demo-image-02.jpg -------------------------------------------------------------------------------- /gremlin/static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/static/images/favicon.ico -------------------------------------------------------------------------------- /gremlin/static/images/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/static/images/favicons/favicon.ico -------------------------------------------------------------------------------- /gremlin/static/images/favicons/gremlin_favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/static/images/favicons/gremlin_favicon.ico -------------------------------------------------------------------------------- /gremlin/static/images/gremlin_100_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/static/images/gremlin_100_inverted.png -------------------------------------------------------------------------------- /gremlin/static/images/gremlin_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/static/images/gremlin_512.png -------------------------------------------------------------------------------- /gremlin/static/images/gremlin_512_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/static/images/gremlin_512_inverted.png -------------------------------------------------------------------------------- /gremlin/static/images/ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/static/images/ipad.png -------------------------------------------------------------------------------- /gremlin/static/images/ipad2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/static/images/ipad2.png -------------------------------------------------------------------------------- /gremlin/static/images/ipad2.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/static/images/ipad2.xcf -------------------------------------------------------------------------------- /gremlin/static/images/python-logo-generic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/static/images/python-logo-generic.svg -------------------------------------------------------------------------------- /gremlin/static/images/python-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/static/images/python-logo.png -------------------------------------------------------------------------------- /gremlin/static/images/pythoneditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/static/images/pythoneditor.png -------------------------------------------------------------------------------- /gremlin/static/images/react-logo-825x510.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/static/images/react-logo-825x510.jpg -------------------------------------------------------------------------------- /gremlin/static/images/visual_programming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/static/images/visual_programming.png -------------------------------------------------------------------------------- /gremlin/static/js/project.js: -------------------------------------------------------------------------------- 1 | /* Project specific Javascript goes here. */ 2 | -------------------------------------------------------------------------------- /gremlin/static/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/static/js/scripts.js -------------------------------------------------------------------------------- /gremlin/static/sass/custom_bootstrap_vars.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gremlin/static/sass/project.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/static/sass/project.scss -------------------------------------------------------------------------------- /gremlin/templates/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/templates/403.html -------------------------------------------------------------------------------- /gremlin/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/templates/404.html -------------------------------------------------------------------------------- /gremlin/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/templates/500.html -------------------------------------------------------------------------------- /gremlin/templates/account/account_inactive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/templates/account/account_inactive.html -------------------------------------------------------------------------------- /gremlin/templates/account/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/templates/account/base.html -------------------------------------------------------------------------------- /gremlin/templates/account/email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/templates/account/email.html -------------------------------------------------------------------------------- /gremlin/templates/account/email_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/templates/account/email_confirm.html -------------------------------------------------------------------------------- /gremlin/templates/account/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/templates/account/login.html -------------------------------------------------------------------------------- /gremlin/templates/account/logout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/templates/account/logout.html -------------------------------------------------------------------------------- /gremlin/templates/account/password_change.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/templates/account/password_change.html -------------------------------------------------------------------------------- /gremlin/templates/account/password_reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/templates/account/password_reset.html -------------------------------------------------------------------------------- /gremlin/templates/account/password_reset_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/templates/account/password_reset_done.html -------------------------------------------------------------------------------- /gremlin/templates/account/password_reset_from_key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/templates/account/password_reset_from_key.html -------------------------------------------------------------------------------- /gremlin/templates/account/password_reset_from_key_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/templates/account/password_reset_from_key_done.html -------------------------------------------------------------------------------- /gremlin/templates/account/password_set.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/templates/account/password_set.html -------------------------------------------------------------------------------- /gremlin/templates/account/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/templates/account/signup.html -------------------------------------------------------------------------------- /gremlin/templates/account/signup_closed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/templates/account/signup_closed.html -------------------------------------------------------------------------------- /gremlin/templates/account/verification_sent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/templates/account/verification_sent.html -------------------------------------------------------------------------------- /gremlin/templates/account/verified_email_required.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/templates/account/verified_email_required.html -------------------------------------------------------------------------------- /gremlin/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/templates/base.html -------------------------------------------------------------------------------- /gremlin/templates/pages/about.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} -------------------------------------------------------------------------------- /gremlin/templates/pages/home.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} -------------------------------------------------------------------------------- /gremlin/templates/pages/swagger-ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/templates/pages/swagger-ui.html -------------------------------------------------------------------------------- /gremlin/templates/users/user_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/templates/users/user_detail.html -------------------------------------------------------------------------------- /gremlin/templates/users/user_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/templates/users/user_form.html -------------------------------------------------------------------------------- /gremlin/users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gremlin/users/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/users/adapters.py -------------------------------------------------------------------------------- /gremlin/users/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/users/admin.py -------------------------------------------------------------------------------- /gremlin/users/api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/users/api/serializers.py -------------------------------------------------------------------------------- /gremlin/users/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/users/api/views.py -------------------------------------------------------------------------------- /gremlin/users/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/users/apps.py -------------------------------------------------------------------------------- /gremlin/users/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/users/forms.py -------------------------------------------------------------------------------- /gremlin/users/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/users/migrations/0001_initial.py -------------------------------------------------------------------------------- /gremlin/users/migrations/0002_user_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/users/migrations/0002_user_role.py -------------------------------------------------------------------------------- /gremlin/users/migrations/0003_auto_20200906_1412.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/users/migrations/0003_auto_20200906_1412.py -------------------------------------------------------------------------------- /gremlin/users/migrations/0004_auto_20200929_1758.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/users/migrations/0004_auto_20200929_1758.py -------------------------------------------------------------------------------- /gremlin/users/migrations/0005_auto_20201008_2228.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/users/migrations/0005_auto_20201008_2228.py -------------------------------------------------------------------------------- /gremlin/users/migrations/0006_auto_20201008_2234.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/users/migrations/0006_auto_20201008_2234.py -------------------------------------------------------------------------------- /gremlin/users/migrations/0007_auto_20201213_1607.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/users/migrations/0007_auto_20201213_1607.py -------------------------------------------------------------------------------- /gremlin/users/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gremlin/users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/users/models.py -------------------------------------------------------------------------------- /gremlin/users/paginations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/users/paginations.py -------------------------------------------------------------------------------- /gremlin/users/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/users/tasks.py -------------------------------------------------------------------------------- /gremlin/users/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gremlin/users/tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/users/tests/factories.py -------------------------------------------------------------------------------- /gremlin/users/tests/test_drf_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/users/tests/test_drf_urls.py -------------------------------------------------------------------------------- /gremlin/users/tests/test_drf_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/users/tests/test_drf_views.py -------------------------------------------------------------------------------- /gremlin/users/tests/test_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/users/tests/test_forms.py -------------------------------------------------------------------------------- /gremlin/users/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/users/tests/test_models.py -------------------------------------------------------------------------------- /gremlin/users/tests/test_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/users/tests/test_tasks.py -------------------------------------------------------------------------------- /gremlin/users/tests/test_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/users/tests/test_urls.py -------------------------------------------------------------------------------- /gremlin/users/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/users/tests/test_views.py -------------------------------------------------------------------------------- /gremlin/users/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/users/urls.py -------------------------------------------------------------------------------- /gremlin/users/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/users/views.py -------------------------------------------------------------------------------- /gremlin/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gremlin/utils/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/utils/context_processors.py -------------------------------------------------------------------------------- /gremlin/utils/emails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/utils/emails.py -------------------------------------------------------------------------------- /gremlin/utils/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/utils/errors.py -------------------------------------------------------------------------------- /gremlin/utils/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/utils/filters.py -------------------------------------------------------------------------------- /gremlin/utils/storages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/gremlin/utils/storages.py -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/license.md -------------------------------------------------------------------------------- /local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/local.yml -------------------------------------------------------------------------------- /locale/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/locale/README.rst -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/manage.py -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/manifest.json -------------------------------------------------------------------------------- /merge_production_dotenvs_in_dotenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/merge_production_dotenvs_in_dotenv.py -------------------------------------------------------------------------------- /production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/production.yml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/pytest.ini -------------------------------------------------------------------------------- /repositories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/repositories -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | # This file is expected by Heroku. 2 | 3 | -r requirements/production.txt 4 | -------------------------------------------------------------------------------- /requirements/base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/requirements/base.txt -------------------------------------------------------------------------------- /requirements/local.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/requirements/local.txt -------------------------------------------------------------------------------- /requirements/production.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/requirements/production.txt -------------------------------------------------------------------------------- /samples/envs/local/django.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/samples/envs/local/django.env -------------------------------------------------------------------------------- /samples/envs/local/postgres.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/samples/envs/local/postgres.env -------------------------------------------------------------------------------- /samples/envs/production/django.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/samples/envs/production/django.env -------------------------------------------------------------------------------- /samples/envs/production/postgres.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/samples/envs/production/postgres.env -------------------------------------------------------------------------------- /samples/pipelines/Atticus Classifier.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/samples/pipelines/Atticus Classifier.zip -------------------------------------------------------------------------------- /samples/pipelines/Doc Automation Example.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/samples/pipelines/Doc Automation Example.zip -------------------------------------------------------------------------------- /samples/pipelines/OCR PDFs.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/samples/pipelines/OCR PDFs.zip -------------------------------------------------------------------------------- /samples/pipelines/TFIDF Clustering_Auto_Detect_K.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/samples/pipelines/TFIDF Clustering_Auto_Detect_K.zip -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/GremlinServer/HEAD/setup.cfg --------------------------------------------------------------------------------