An open API service indexing awesome lists of open source software.

https://github.com/lmarti/jupyter_custom

Jupyter notebooks customization shared by -most of- my notebooks.
https://github.com/lmarti/jupyter_custom

Last synced: 3 months ago
JSON representation

Jupyter notebooks customization shared by -most of- my notebooks.

Awesome Lists containing this project

README

          

# jupyter_custom

Jupyter notebooks customization shared by -most of- my notebooks.

## Notebook header with Inria logo

```html



Inria logo


```

**Note:** Inria logo taken from https://www.inria.fr/en/charter-use-visual-identity-inria

## Including modifications to change fonts

```python
# this code is here for cosmetic reasons
try:
from IPython.core.display import HTML
from urllib.request import urlopen
HTML(urlopen('https://raw.githubusercontent.com/lmarti/jupyter_custom/master/custom.include').read().decode('utf-8'))
except OSError:
print('Warning: Visual customizations could not be loaded probably becase of missing Internet connection.')
```