A library to set up a VS Code server in Google Colab.
Project description
vscode-colab: Connect VS Code to Google Colab and Kaggle Runtimes
vscode-colab is a Python library that seamlessly connects your Google Colab or Kaggle notebooks to Visual Studio Code (VS Code) using VS Code Remote Tunnels. It allows you to leverage VS Code's powerful editor and extensions while using the computational resources of cloud-based notebooks.
🚀 Key Features
- Secure, Official Integration: Uses official VS Code Remote Tunnels for secure, stable connections.
- GitHub Integration: Automatically authenticated via GitHub, enabling seamless cloning and pushing to private repositories.
- Easy Git Configuration: Optionally configure global Git identity (
user.nameanduser.email) directly from the library. - Extension Support: Installs essential Python and Jupyter extensions by default; easily customize by passing additional extensions.
- Python Environment Management: Optionally set up a specific Python version for your project using
pyenv. (Note: Installing a new Python version via pyenv can take approximately 5 minutes). - Project Scaffolding: Optionally create a new project directory with a Python virtual environment.
- Minimal Setup: Simple and intuitive
login()andconnect()functions. - Cross-Platform Compatibility: Fully supports both Google Colab and Kaggle notebooks.
- Interactive UI: Integrated UI within notebooks to manage authentication and tunnel connections easily.
🧰 Installation
Install the package using pip:
pip install vscode-colab
📖 Usage
1. Import the Library
In your Colab or Kaggle notebook:
import vscode_colab
2. Authenticate with GitHub
Authenticate using GitHub credentials:
vscode_colab.login()
Follow the displayed instructions to authorize the connection.
3. Establish the Tunnel and Configure Git (Optional)
To start the VS Code tunnel, optionally configure Git, set up a Python version, or create a new project:
vscode_colab.connect(
name="my-tunnel",
git_user_name="Your Name",
git_user_email="you@example.com",
setup_python_version="3.13", # Optional: Specify Python version to install with pyenv
create_new_project="my_new_project" # Optional: Create a new project directory
)
- By default, VS Code Python and Jupyter extensions are installed.
- You can customize the extensions to be installed:
# Add C++ extensions in addition to default ones
vscode_colab.connect(extensions=["ms-vscode.cpptools"])
# Completely override extensions (only install C++ support)
vscode_colab.connect(extensions=["ms-vscode.cpptools"], include_default_extensions=False)
# Setup a specific Python version and create a new project
# Note: Installing Python with pyenv can take ~5 minutes.
vscode_colab.connect(
name="py-project-tunnel",
setup_python_version="3.9",
create_new_project="data_analysis_project",
new_project_base_path="~/projects", # Optional: specify where to create the project
venv_name_for_project=".venv-data" # Optional: specify venv name
)
4. Connect via VS Code
In your local VS Code:
- Ensure the Remote Tunnels extension is installed.
- Sign in with the same GitHub account used in the notebook.
- Open Command Palette (
Ctrl+Shift+PorCmd+Shift+P). - Run
Remote Tunnels: Connect to Tunnel...and select your notebook's tunnel.
You're now seamlessly connected to Colab/Kaggle through VS Code!
🧩 Default Extensions Installed
By default, vscode-colab installs the following Visual Studio Code extensions to enhance your Python and Jupyter development experience:
-
Python Path: Facilitates generating internal import statements within a Python project.
-
Black Formatter: Provides code formatting support for Python files using the Black code formatter.
-
isort: Offers import sorting features to improve the readability of your Python code.
-
Python: Adds rich support for the Python language, including IntelliSense, linting, debugging, and more.
-
Pylance: Enhances Python language support with fast, feature-rich language services powered by Pyright.
-
Debugpy: Enables debugging capabilities for Python applications within VS Code.
-
Jupyter: Provides support for Jupyter notebooks, including interactive programming and computing features.
-
Jupyter Keymap: Aligns notebook keybindings in VS Code with those in Jupyter Notebook for a consistent experience.
-
Jupyter Notebook Renderers: Provides renderers for outputs of Jupyter Notebooks, supporting various output formats.
-
TensorBoard: Allows launching and viewing TensorBoards directly within VS Code.
⚠️ Important Notes
- Closing the notebook tab will terminate the connection.
- Kaggle Clipboard Limitation: On Kaggle, the copy-to-clipboard button will display "Copy Failed" in red due to sandbox restrictions. Manually select and copy the displayed code.
🧪 Testing
To run tests:
git clone https://github.com/EssenceSentry/vscode-colab.git
cd vscode-colab
pip install -r requirements-dev.txt
pytest
🛠️ Development
- Configuration via
setup.cfg - Development dependencies listed in
requirements-dev.txt - Contributions welcome—open a GitHub issue or PR!
📄 License
MIT License. See LICENSE.
🙏 Acknowledgments
Special thanks to the developers behind VS Code Remote Tunnels for enabling this seamless remote development experience.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file vscode_colab-0.3.1.tar.gz.
File metadata
- Download URL: vscode_colab-0.3.1.tar.gz
- Upload date:
- Size: 41.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
20be147a5656b308d8e347a9bffc472b3947ca462cf2c871fd40964a95ed7f14
|
|
| MD5 |
7872cfd4eb1b52065601771aa579bf21
|
|
| BLAKE2b-256 |
097a8ef08b96e33b57e6643d9960678f9464d16acc06f0b88dfa1eeab78809a7
|
File details
Details for the file vscode_colab-0.3.1-py3-none-any.whl.
File metadata
- Download URL: vscode_colab-0.3.1-py3-none-any.whl
- Upload date:
- Size: 33.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e888009fa90d65005cbdca8c12a26d2ade7ad99372e8e604ec07b8e6a40534b
|
|
| MD5 |
2835f4e54a522ecdd2b7ac5526e8e448
|
|
| BLAKE2b-256 |
ae6088d5a8b5d17cd4f09d6bed3d6791f8f4fa54545d0ef03b6578f9879340fc
|