This library is your copilot for jupyter notebooks
Latest version: 0.4.0
pip install code_genie
You need your unique access token to use this library. You can get your access token by signing up here here
On the top of your notebook, set an environment variable called CODE_GENIE_TOKEN
as your access token. This can
be done in a couple of ways:
%env CODE_GENIE_TOKEN=xxxkeyxxx
You can use the python-dotenv package.
from dotenv import load_dotenv
load_dotenv("path-to-.env-file")