https://github.com/achuttarsing/jupyslack
Slack integration for notebooks. Start training your models and go out for a walk 🏃
https://github.com/achuttarsing/jupyslack
colab ipython ipython-magic ipython-notebook jupyter machine-learning notebook notebooks python slack
Last synced: about 1 month ago
JSON representation
Slack integration for notebooks. Start training your models and go out for a walk 🏃
- Host: GitHub
- URL: https://github.com/achuttarsing/jupyslack
- Owner: Achuttarsing
- License: mit
- Created: 2020-10-24T08:02:38.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-01-29T09:15:36.000Z (almost 5 years ago)
- Last Synced: 2025-02-01T11:24:25.234Z (10 months ago)
- Topics: colab, ipython, ipython-magic, ipython-notebook, jupyter, machine-learning, notebook, notebooks, python, slack
- Language: Python
- Homepage:
- Size: 3.65 MB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# jupyslack
[](https://pepy.tech/project/jupyslack)
Slack integration for notebooks. Keep track of your code right in your pocket.

## Installation :
```console
$ pip install jupyslack
```
## Connection to Slack :
First, you need to create an authorization token on your Slack account.
```python
In [1]: %load_ext jupyslack
In [2]: %jupyslack setup
"Connected to Slack !"
```
## To track a cell, simply put this magic line at its beggining :
```python
In [3]: %jupyslack track
```
##### You can give a name to the cell with : -name
```python
In [4]: %jupyslack track -name
```
## New feature : automatic tracking
This will notify you for all cells whose runtime is above 2 minutes
```python
In [5]: %jupyslack autotrack
```
##### You can set the minimum runtime with : -mintime (default=120)
```python
In [6]: %jupyslack autotrack -mintime
```
##### And stop the automatic tracking with :
```python
In [7]: %jupyslack untrack
```