File size: 431 Bytes
1e0ebc2 b9e2cc6 666b4af eebf51b 666b4af 0597ca5 e32d6b0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# This will run every time an IPython (or Jupyter) kernel starts
def hello():
print("Right on baby jaybird! Hello from IPython startup! ")
from git import Repo
import os
# https://jupyter-ai.readthedocs.io/en/latest/developers/index.html
if os.path.exists('./workstatml'):
pass
else:
Repo.clone_from(os.environ['GIT_URL'],'./workstatml')
def jello():
print("Right on baby raybird! Hello from IPython startup!") |