Collection of helper functions for SIGNAL in Google Colab Notebooks
Within Google Colabs
# install
!pip install git+https://github.com/hsanchez/funcs.git
Import signal_utils's colab helper functions
#%%
from funcs import colabs as cl
from funcs.console import stdout
#%%
# if local
stdout.print(cl.is_run_in_colab())
# True
# in Colabs
from IPython import get_ipython
stdout.print(cl.is_run_in_colab(__builtins__, get_ipython()))
In summary, funcs
has a collection of helper functions
covering numpy, pandas, colabs, Google drive, and plots.
#%%
from helpfunc import colabs, console, gdrive, arrays, data, nlp, plotz
We have a set of guidelines for contributing to funcs
. These are guidelines, not rules. Use your best judgment, and feel free
to propose changes to this document in a pull request.
This project is under the MIT License. See the LICENSE file for the full license text.