├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── examples └── simple_usage.ipynb ├── images ├── connect.png ├── login.png └── vscode_colab.png ├── pyproject.toml ├── release.sh ├── requirements-dev.txt ├── setup.cfg ├── setup.py ├── src └── vscode_colab │ ├── __init__.py │ ├── assets │ ├── gitignore_template.txt │ └── templates │ │ ├── github_auth_link.html.j2 │ │ └── vscode_connection_options.html.j2 │ ├── environment │ ├── __init__.py │ ├── git_handler.py │ ├── project_setup.py │ └── python_env.py │ ├── logger_config.py │ ├── server.py │ ├── system.py │ ├── templating.py │ └── utils.py └── tests ├── environment ├── test_git_handler.py ├── test_project_setup.py └── test_python_env.py ├── test_init.py ├── test_server.py ├── test_system.py ├── test_templating.py └── test_utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EssenceSentry/vscode-colab/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EssenceSentry/vscode-colab/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EssenceSentry/vscode-colab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EssenceSentry/vscode-colab/HEAD/README.md -------------------------------------------------------------------------------- /examples/simple_usage.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EssenceSentry/vscode-colab/HEAD/examples/simple_usage.ipynb -------------------------------------------------------------------------------- /images/connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EssenceSentry/vscode-colab/HEAD/images/connect.png -------------------------------------------------------------------------------- /images/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EssenceSentry/vscode-colab/HEAD/images/login.png -------------------------------------------------------------------------------- /images/vscode_colab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EssenceSentry/vscode-colab/HEAD/images/vscode_colab.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EssenceSentry/vscode-colab/HEAD/pyproject.toml -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EssenceSentry/vscode-colab/HEAD/release.sh -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EssenceSentry/vscode-colab/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EssenceSentry/vscode-colab/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EssenceSentry/vscode-colab/HEAD/setup.py -------------------------------------------------------------------------------- /src/vscode_colab/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EssenceSentry/vscode-colab/HEAD/src/vscode_colab/__init__.py -------------------------------------------------------------------------------- /src/vscode_colab/assets/gitignore_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EssenceSentry/vscode-colab/HEAD/src/vscode_colab/assets/gitignore_template.txt -------------------------------------------------------------------------------- /src/vscode_colab/assets/templates/github_auth_link.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EssenceSentry/vscode-colab/HEAD/src/vscode_colab/assets/templates/github_auth_link.html.j2 -------------------------------------------------------------------------------- /src/vscode_colab/assets/templates/vscode_connection_options.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EssenceSentry/vscode-colab/HEAD/src/vscode_colab/assets/templates/vscode_connection_options.html.j2 -------------------------------------------------------------------------------- /src/vscode_colab/environment/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EssenceSentry/vscode-colab/HEAD/src/vscode_colab/environment/__init__.py -------------------------------------------------------------------------------- /src/vscode_colab/environment/git_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EssenceSentry/vscode-colab/HEAD/src/vscode_colab/environment/git_handler.py -------------------------------------------------------------------------------- /src/vscode_colab/environment/project_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EssenceSentry/vscode-colab/HEAD/src/vscode_colab/environment/project_setup.py -------------------------------------------------------------------------------- /src/vscode_colab/environment/python_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EssenceSentry/vscode-colab/HEAD/src/vscode_colab/environment/python_env.py -------------------------------------------------------------------------------- /src/vscode_colab/logger_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EssenceSentry/vscode-colab/HEAD/src/vscode_colab/logger_config.py -------------------------------------------------------------------------------- /src/vscode_colab/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EssenceSentry/vscode-colab/HEAD/src/vscode_colab/server.py -------------------------------------------------------------------------------- /src/vscode_colab/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EssenceSentry/vscode-colab/HEAD/src/vscode_colab/system.py -------------------------------------------------------------------------------- /src/vscode_colab/templating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EssenceSentry/vscode-colab/HEAD/src/vscode_colab/templating.py -------------------------------------------------------------------------------- /src/vscode_colab/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EssenceSentry/vscode-colab/HEAD/src/vscode_colab/utils.py -------------------------------------------------------------------------------- /tests/environment/test_git_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EssenceSentry/vscode-colab/HEAD/tests/environment/test_git_handler.py -------------------------------------------------------------------------------- /tests/environment/test_project_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EssenceSentry/vscode-colab/HEAD/tests/environment/test_project_setup.py -------------------------------------------------------------------------------- /tests/environment/test_python_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EssenceSentry/vscode-colab/HEAD/tests/environment/test_python_env.py -------------------------------------------------------------------------------- /tests/test_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EssenceSentry/vscode-colab/HEAD/tests/test_init.py -------------------------------------------------------------------------------- /tests/test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EssenceSentry/vscode-colab/HEAD/tests/test_server.py -------------------------------------------------------------------------------- /tests/test_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EssenceSentry/vscode-colab/HEAD/tests/test_system.py -------------------------------------------------------------------------------- /tests/test_templating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EssenceSentry/vscode-colab/HEAD/tests/test_templating.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EssenceSentry/vscode-colab/HEAD/tests/test_utils.py --------------------------------------------------------------------------------