Created
June 16, 2018 21:40
-
-
Save traviskaufman/e174ef6fda001fcf0b2838aab5b812fd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ipython-utils/researchenv/__init__.py | |
# imports... | |
from researchenv.magics import ResearchEnvMagics | |
from google.cloud import bigquery | |
def load_ipython_extension(ipython: InteractiveShell): | |
# previous logic... | |
bq = bigquery.Client(project='example-project-id') | |
ipython.register_magics(ResearchEnvMagics(shell=ipython, bq=bq)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment