Metadata-Version: 2.1
Name: colab_jupyter_server
Version: 0.4.2
Summary: Colab/Kaggle as Jupyter a server and kernel
Home-page: https://github.com/alxxtexxr/colab_jupyter_server
Author: alxxtexxr
Author-email: alimtegar404@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: jupyter
Requires-Dist: fire
Requires-Dist: patool
Requires-Dist: requests

# Colab Jupyter Server
I created this library because I want to use Colab/Kaggle as a remote Jupyter server, which I can connect to as a kernel for my local Jupyter notebook in VS Code.

## How to run
Install the library first:
```
pip install colab-jupyter-server
```
Then, run this command:
```
colab_jupyter_server \
--ngrok_authtoken=<NGROK_AUTHTOKEN> \
--jupyter_password=<JUPYTER_PASSWORD>
```

### Command Parameters
- `ngrok_authtoken`: Your ngrok authtoken. You can get it here: https://dashboard.ngrok.com/get-started/your-authtoken

- `ngrok_down_url`: The default download URL is for ngrok on Linux (x86-64) (https://bin.equinox.io/c/bNyj1mQVY4c/ngrok-v3-stable-linux-amd64.tgz). Find other download URLs here: https://ngrok.com/download

- `jupyter_password`: The Jupyter server password. You will be asked for a password if not set.

- `port`: The default port is 8888.
