Skip to content

Commit ddef941

Browse files
committed
Add sphinx notebook tutorials
1 parent 2194ccf commit ddef941

File tree

76 files changed

+7750
-3100
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+7750
-3100
lines changed

Diff for: .gitignore

+98-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,99 @@
1+
# sphinx things
2+
beginner
3+
intermediate
4+
advanced
5+
6+
#data things
7+
beginner_source/hymenoptera_data
8+
intermediate_source/data/
9+
*data.zip
10+
11+
# Byte-compiled / optimized / DLL files
12+
__pycache__/
13+
*.py[cod]
14+
*$py.class
15+
16+
# C extensions
17+
*.so
18+
19+
# Distribution / packaging
20+
.Python
21+
env/
22+
build/
23+
develop-eggs/
24+
dist/
25+
downloads/
26+
eggs/
27+
.eggs/
28+
lib/
29+
lib64/
30+
parts/
31+
sdist/
32+
var/
33+
*.egg-info/
34+
.installed.cfg
35+
*.egg
36+
37+
# PyInstaller
38+
# Usually these files are written by a python script from a template
39+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
40+
*.manifest
41+
*.spec
42+
43+
# Installer logs
44+
pip-log.txt
45+
pip-delete-this-directory.txt
46+
47+
# Unit test / coverage reports
48+
htmlcov/
49+
.tox/
50+
.coverage
51+
.coverage.*
52+
.cache
53+
nosetests.xml
54+
coverage.xml
55+
*,cover
56+
.hypothesis/
57+
58+
# Translations
59+
*.mo
60+
*.pot
61+
62+
# Django stuff:
63+
*.log
64+
local_settings.py
65+
66+
# Flask stuff:
67+
instance/
68+
.webassets-cache
69+
70+
# Scrapy stuff:
71+
.scrapy
72+
73+
# Sphinx documentation
74+
docs/_build/
75+
76+
# PyBuilder
77+
target/
78+
79+
# IPython Notebook
180
.ipynb_checkpoints
2-
data
3-
*~
81+
82+
# pyenv
83+
.python-version
84+
85+
# celery beat schedule file
86+
celerybeat-schedule
87+
88+
# dotenv
89+
.env
90+
91+
# virtualenv
92+
venv/
93+
ENV/
94+
95+
# Spyder project settings
96+
.spyderproject
97+
98+
# Rope project settings
99+
.ropeproject

Diff for: Creating Extensions using FFI.md

-115
This file was deleted.

0 commit comments

Comments
 (0)