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.
- Host: GitHub
- URL: https://github.com/lmarti/jupyter_custom
- Owner: lmarti
- Created: 2017-02-26T21:32:34.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-02-10T17:43:22.000Z (over 5 years ago)
- Last Synced: 2025-03-17T14:50:12.133Z (7 months ago)
- Homepage:
- Size: 645 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# jupyter_custom
Jupyter notebooks customization shared by -most of- my notebooks.
## Notebook header with Inria logo
```html
```**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.')
```