File tree Expand file tree Collapse file tree 4 files changed +60
-0
lines changed
Expand file tree Collapse file tree 4 files changed +60
-0
lines changed Original file line number Diff line number Diff line change 3030* .exe
3131* .out
3232* .app
33+
34+ # Directories
35+ .ipynb_checkpoints /*
36+ build /*
37+ example /__pycache__
Original file line number Diff line number Diff line change 1+ {
2+ "cells" : [
3+ {
4+ "cell_type" : " markdown" ,
5+ "metadata" : {},
6+ "source" : [
7+ " # Example Notebook"
8+ ]
9+ },
10+ {
11+ "cell_type" : " code" ,
12+ "execution_count" : null ,
13+ "metadata" : {},
14+ "outputs" : [],
15+ "source" : [
16+ " # import local package\n " ,
17+ " import example.module as mod"
18+ ]
19+ },
20+ {
21+ "cell_type" : " code" ,
22+ "execution_count" : null ,
23+ "metadata" : {},
24+ "outputs" : [],
25+ "source" : [
26+ " mod.test()"
27+ ]
28+ }
29+ ],
30+ "metadata" : {
31+ "kernelspec" : {
32+ "display_name" : " Python 3" ,
33+ "language" : " python" ,
34+ "name" : " python3"
35+ },
36+ "language_info" : {
37+ "codemirror_mode" : {
38+ "name" : " ipython" ,
39+ "version" : 3
40+ },
41+ "file_extension" : " .py" ,
42+ "mimetype" : " text/x-python" ,
43+ "name" : " python" ,
44+ "nbconvert_exporter" : " python" ,
45+ "pygments_lexer" : " ipython3" ,
46+ "version" : " 3.7.3"
47+ }
48+ },
49+ "nbformat" : 4 ,
50+ "nbformat_minor" : 2
51+ }
Original file line number Diff line number Diff line change 1+ """ Example python module. """
2+
3+ def test ():
4+ print ("test" )
You can’t perform that action at this time.
0 commit comments