Skip to content

Latest commit

 

History

History
49 lines (34 loc) · 1.11 KB

README.md

File metadata and controls

49 lines (34 loc) · 1.11 KB

SIGNAL's Helper Functions

Description 👇

Collection of helper functions for SIGNAL in Google Colab Notebooks

How to run

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()))

What's inside

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

🤝 Contributions

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.

⚖️ License

This project is under the MIT License. See the LICENSE file for the full license text.