Skip to content

Commit 7113507

Browse files
committed
add starter notebook
1 parent b16606f commit 7113507

File tree

4 files changed

+40
-0
lines changed

4 files changed

+40
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "code",
5+
"execution_count": null,
6+
"metadata": {},
7+
"outputs": [],
8+
"source": [
9+
"from {{ cookiecutter.import_name }}.starter.starter import starter_function"
10+
]
11+
},
12+
{
13+
"cell_type": "code",
14+
"execution_count": null,
15+
"metadata": {},
16+
"outputs": [],
17+
"source": [
18+
"starter_function()"
19+
]
20+
}
21+
],
22+
"metadata": {
23+
"language_info": {
24+
"name": "python"
25+
}
26+
},
27+
"nbformat": 4,
28+
"nbformat_minor": 2
29+
}

{{ cookiecutter.folder_name }}/{{ cookiecutter.import_name }}/starter/__init__.py

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
"""
2+
This is a starter file with an example of an importable function.
3+
4+
Remove this function and write your own!
5+
"""
6+
7+
def starter_function() -> int:
8+
return 42
9+
10+
11+

0 commit comments

Comments
 (0)