Tools for Google Colab and Jupyter notebooks.
Project description
The oxlab package provides tools for Google Colab and Jupyter notebooks.
Sometimes you want to be able to use or distribute private GitHub repos in Jupyter notebooks that people may run on their local systems or in Google Colab. This project provides a simple way to accomplish that goal.
Imagine you have an example notebook called oxlab_demo.ipynb and you want to have it reference a private GitHub repo for your project.
You can take the following steps:
Generate an SSH deploy key for your project via something like:
ssh-keygen -t ecdsa -f /tmp/example_deploy_key_id_ecdsaUpload the public key (which is saved at /tmp/example_deploy_key_id_ecdsa.pub if you used the above command) to GitHub as discussed in the instructions on deploy keys.
Create a cell in your notebook like the following where you replace $YOUR_PRIVATE_KEY with your ssh deploy key generated in step 1 (e.g., the contents of /tmp/example_deploy_key_id_ecdsa), replace $OWNER with the owner of your GitHub repo (e.g., emin63) and $REPO with your repo (e.g., oxlab):
# @title Pull in our private github repo SSH_DEPLOY_KEY = $YOUR_PRIVATE_KEY !pip install oxlab from oxlab import github oxlab.add_github_repo($OWNER, $REPO, SSH_DEPLOY_KEY)
Then the rest of your notebook will be able to do something like import $REPO and reference your private GitHub code.
See the oxlab_demo.ipynb notebook for an example.
Project details
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 oxlab-0.3.1.tar.gz.
File metadata
- Download URL: oxlab-0.3.1.tar.gz
- Upload date:
- Size: 5.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2b1593201af3d81d07e7c8d4162f6c773e003ecf143c340bd6b5665087695b26
|
|
| MD5 |
c403b0fb1c0c05aef82f7122fe0cedbc
|
|
| BLAKE2b-256 |
49f2d8a5be3c50615c2ffa054f39e1236cc59bd3ab6268fec2b2c6d2643e70a7
|
File details
Details for the file oxlab-0.3.1-py3-none-any.whl.
File metadata
- Download URL: oxlab-0.3.1-py3-none-any.whl
- Upload date:
- Size: 5.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d538f62ff8a9e2d45323e07b58fe9c3afccc9cc5b471b01d5a14cf91e3857235
|
|
| MD5 |
3081c0bdbcb38996a196ad5282c81438
|
|
| BLAKE2b-256 |
17b0e02cb30a9617e485199a9fc1a499b27511f4389122269fdfd352cb8b03cf
|