notebook python static website generator

Solutions on MaxInterview for notebook python static website generator by the best coders in the world

showing results for - "notebook python static website generator"
Jakob
13 Nov 2017
1    - introduction: introduction.md
2    - pre-processing:
3        - introduction: pre-processing/introduction.md
4        - missing data: pre-processing/missing-data.md
5        - feature engineering: pre-processing/feature-engineering.md
6    - model building: model-building.md
7    - testing: testing.md
8    - experimental: 
9        - introduction: experimental/introduction.md
10
Mirko
21 Apr 2020
1notebooks := $(wildcard ./**/*.ipynb)
2md_pages := $(patsubst notebooks/%.ipynb,docs/%.md,$(notebooks))
3
4build.env: ; conda env create -f environment.yml
5build.site: $(md_pages)
6
7docs/%.md: notebooks/%.ipynb
8	jupyter nbconvert\
9		--to markdown $<\
10		--output-dir $(dir $@)\
11		--template=src/to_markdown.tpl
12
similar questions
queries leading to this page
notebook python static website generator