Skip to content

Commit 6d1885f

Browse files
author
echo.lj
committed
修复nbconvert
1 parent c480ab0 commit 6d1885f

File tree

2 files changed

+166
-181
lines changed

2 files changed

+166
-181
lines changed

generate_static_files.ipynb

Lines changed: 151 additions & 169 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@
1010
{
1111
"cell_type": "code",
1212
"execution_count": 1,
13-
"metadata": {
14-
"collapsed": true
15-
},
13+
"metadata": {},
1614
"outputs": [],
1715
"source": [
1816
"import os\n",
@@ -31,9 +29,7 @@
3129
{
3230
"cell_type": "code",
3331
"execution_count": 2,
34-
"metadata": {
35-
"collapsed": true
36-
},
32+
"metadata": {},
3733
"outputs": [],
3834
"source": [
3935
"if not os.path.exists('static-files'):\n",
@@ -53,9 +49,7 @@
5349
{
5450
"cell_type": "code",
5551
"execution_count": 3,
56-
"metadata": {
57-
"collapsed": true
58-
},
52+
"metadata": {},
5953
"outputs": [],
6054
"source": [
6155
"folders = ['01-python-tools', \n",
@@ -83,9 +77,7 @@
8377
{
8478
"cell_type": "code",
8579
"execution_count": 4,
86-
"metadata": {
87-
"collapsed": false
88-
},
80+
"metadata": {},
8981
"outputs": [],
9082
"source": [
9183
"file_names = []\n",
@@ -98,23 +90,17 @@
9890
{
9991
"cell_type": "code",
10092
"execution_count": 5,
101-
"metadata": {
102-
"collapsed": false
103-
},
93+
"metadata": {},
10494
"outputs": [],
10595
"source": [
10696
"def convert_to_files(names, to_format):\n",
10797
" target_dir = os.path.join(\"static-files\", to_format)\n",
10898
" for folder in folders:\n",
10999
" if not os.path.exists(os.path.join(target_dir, folder)):\n",
110100
" os.makedirs(os.path.join(target_dir, folder))\n",
111-
" converter = {\n",
112-
" \"html\": nbconvert.export_html,\n",
113-
" \"python\": nbconvert.export_python\n",
114-
" }\n",
115101
" \n",
116102
" for file_name in names:\n",
117-
" p = converter[to_format](file_name)\n",
103+
" p = nbconvert.export(nbconvert.get_exporter(to_format), file_name)\n",
118104
" with open(os.path.join(target_dir, file_name[:-6] + p[1][\"output_extension\"]), 'w') as f:\n",
119105
" f.write(p[0].encode(\"utf-8\"))\n",
120106
" print file_name"
@@ -130,155 +116,153 @@
130116
{
131117
"cell_type": "code",
132118
"execution_count": 6,
133-
"metadata": {
134-
"collapsed": false
135-
},
119+
"metadata": {},
136120
"outputs": [
137121
{
138122
"name": "stdout",
139123
"output_type": "stream",
140124
"text": [
141-
"01-python-tools\\01.01-python-overview.ipynb\n",
142-
"01-python-tools\\01.02-ipython-interpreter.ipynb\n",
143-
"01-python-tools\\01.03-ipython-notebook.ipynb\n",
144-
"01-python-tools\\01.04-use-anaconda.ipynb\n",
145-
"02-python-essentials\\02.01-a-tour-of-python.ipynb\n",
146-
"02-python-essentials\\02.02-python-data-types.ipynb\n",
147-
"02-python-essentials\\02.03-numbers.ipynb\n",
148-
"02-python-essentials\\02.04-strings.ipynb\n",
149-
"02-python-essentials\\02.05-indexing-and-slicing.ipynb\n",
150-
"02-python-essentials\\02.06-lists.ipynb\n",
151-
"02-python-essentials\\02.07-mutable-and-immutable-data-types.ipynb\n",
152-
"02-python-essentials\\02.08-tuples.ipynb\n",
153-
"02-python-essentials\\02.09-speed-comparison-between-list-&-tuple.ipynb\n",
154-
"02-python-essentials\\02.10-dictionaries.ipynb\n",
155-
"02-python-essentials\\02.11-sets.ipynb\n",
156-
"02-python-essentials\\02.12-frozen-sets.ipynb\n",
157-
"02-python-essentials\\02.13-how-python-assignment-works.ipynb\n",
158-
"02-python-essentials\\02.14-if-statement.ipynb\n",
159-
"02-python-essentials\\02.15-loops.ipynb\n",
160-
"02-python-essentials\\02.16-list-comprehension.ipynb\n",
161-
"02-python-essentials\\02.17-functions.ipynb\n",
162-
"02-python-essentials\\02.18-modules-and-packages.ipynb\n",
163-
"02-python-essentials\\02.19-exceptions.ipynb\n",
164-
"02-python-essentials\\02.20-warnings.ipynb\n",
165-
"02-python-essentials\\02.21-file-IO.ipynb\n",
166-
"03-numpy\\03.01-numpy-overview.ipynb\n",
167-
"03-numpy\\03.02-matplotlib-basics.ipynb\n",
168-
"03-numpy\\03.03-numpy-arrays.ipynb\n",
169-
"03-numpy\\03.04-array-types.ipynb\n",
170-
"03-numpy\\03.05-array-calculation-method.ipynb\n",
171-
"03-numpy\\03.06-sorting-numpy-arrays.ipynb\n",
172-
"03-numpy\\03.07-array-shapes.ipynb\n",
173-
"03-numpy\\03.08-diagonals.ipynb\n",
174-
"03-numpy\\03.09-data-to-&-from-string.ipynb\n",
175-
"03-numpy\\03.10-array-attribute-&-method-overview-.ipynb\n",
176-
"03-numpy\\03.11-array-creation-functions.ipynb\n",
177-
"03-numpy\\03.12-matrix-object.ipynb\n",
178-
"03-numpy\\03.13-general-functions.ipynb\n",
179-
"03-numpy\\03.14-vectorizing-functions.ipynb\n",
180-
"03-numpy\\03.15-binary-operators.ipynb\n",
181-
"03-numpy\\03.16-universal-functions.ipynb\n",
182-
"03-numpy\\03.17-choose.ipynb\n",
183-
"03-numpy\\03.18-array-broadcasting.ipynb\n",
184-
"03-numpy\\03.19-reading-and-writing-arrays.ipynb\n",
185-
"03-numpy\\03.20-structured-arrays.ipynb\n",
186-
"03-numpy\\03.21-record-arrays.ipynb\n",
187-
"03-numpy\\03.22-memory-maps.ipynb\n",
188-
"03-numpy\\03.23-from-matlab-to-numpy.ipynb\n",
189-
"04-scipy\\04.01-scienticfic-python-overview.ipynb\n",
190-
"04-scipy\\04.02-interpolation-with-scipy.ipynb\n",
191-
"04-scipy\\04.03-statistics-with-scipy.ipynb\n",
192-
"04-scipy\\04.04-curve-fitting.ipynb\n",
193-
"04-scipy\\04.05-minimization-in-python.ipynb\n",
194-
"04-scipy\\04.06-integration-in-python.ipynb\n",
195-
"04-scipy\\04.07-ODEs.ipynb\n",
196-
"04-scipy\\04.08-sparse-matrix.ipynb\n",
197-
"04-scipy\\04.09-linear-algbra.ipynb\n",
198-
"04-scipy\\04.10-sparse-linear-algebra.ipynb\n",
199-
"05-advanced-python\\05.01-overview-of-the-sys-module.ipynb\n",
200-
"05-advanced-python\\05.02-interacting-with-the-OS---os.ipynb\n",
201-
"05-advanced-python\\05.03-comma-separated-values.ipynb\n",
202-
"05-advanced-python\\05.04-regular-expression.ipynb\n",
203-
"05-advanced-python\\05.05-datetime.ipynb\n",
204-
"05-advanced-python\\05.06-sql-databases.ipynb\n",
205-
"05-advanced-python\\05.07-object-relational-mappers.ipynb\n",
206-
"05-advanced-python\\05.08-functions.ipynb\n",
207-
"05-advanced-python\\05.09-iterators.ipynb\n",
208-
"05-advanced-python\\05.10-generators.ipynb\n",
209-
"05-advanced-python\\05.11-context-managers-and-the-with-statement.ipynb\n",
210-
"05-advanced-python\\05.12-decorators.ipynb\n",
211-
"05-advanced-python\\05.13-decorator-usage.ipynb\n",
212-
"05-advanced-python\\05.14-the-operator-functools-itertools-toolz-fn-funcy-module.ipynb\n",
213-
"05-advanced-python\\05.15-scope.ipynb\n",
214-
"05-advanced-python\\05.16-dynamic-code-execution.ipynb\n",
215-
"06-matplotlib\\06.01-pyplot-tutorial.ipynb\n",
216-
"06-matplotlib\\06.02-customizing-plots-with-style-sheets.ipynb\n",
217-
"06-matplotlib\\06.03-working-with-text---basic.ipynb\n",
218-
"06-matplotlib\\06.04-working-with-text---math-expression.ipynb\n",
219-
"06-matplotlib\\06.05-image-tutorial.ipynb\n",
220-
"06-matplotlib\\06.06-annotating-axes.ipynb\n",
221-
"06-matplotlib\\06.07-legend.ipynb\n",
222-
"06-matplotlib\\06.08-figures,-subplots,-axes-and-ticks.ipynb\n",
223-
"06-matplotlib\\06.09-do-not-trust-the-defaults.ipynb\n",
224-
"06-matplotlib\\06.10-different-plots.ipynb\n",
225-
"07-interfacing-with-other-languages\\07.01-introduction.ipynb\n",
226-
"07-interfacing-with-other-languages\\07.02-python-extension-modules.ipynb\n",
227-
"07-interfacing-with-other-languages\\07.03-cython-part-1.ipynb\n",
228-
"07-interfacing-with-other-languages\\07.04-cython-part-2.ipynb\n",
229-
"07-interfacing-with-other-languages\\07.05-cython-part-3.ipynb\n",
230-
"07-interfacing-with-other-languages\\07.06-cython-part-4.ipynb\n",
231-
"07-interfacing-with-other-languages\\07.07-profiling-with-annotations.ipynb\n",
232-
"07-interfacing-with-other-languages\\07.08-ctypes.ipynb\n",
233-
"08-object-oriented-programming\\08.01-oop-introduction.ipynb\n",
234-
"08-object-oriented-programming\\08.02-using-oop-model-a-forest-fire.ipynb\n",
235-
"08-object-oriented-programming\\08.03-what-is-a-object.ipynb\n",
236-
"08-object-oriented-programming\\08.04-writing-classes.ipynb\n",
237-
"08-object-oriented-programming\\08.05-special-method.ipynb\n",
238-
"08-object-oriented-programming\\08.06-properties.ipynb\n",
239-
"08-object-oriented-programming\\08.07-forest-fire-simulation.ipynb\n",
240-
"08-object-oriented-programming\\08.08-inheritance.ipynb\n",
241-
"08-object-oriented-programming\\08.09-super.ipynb\n",
242-
"08-object-oriented-programming\\08.10-refactoring-the-forest-fire-simutation.ipynb\n",
243-
"08-object-oriented-programming\\08.11-interfaces.ipynb\n",
244-
"08-object-oriented-programming\\08.12-public-private-special-in-python.ipynb\n",
245-
"08-object-oriented-programming\\08.13-multiple-inheritance.ipynb\n",
246-
"09-theano\\09.01-introduction-and-installation.ipynb\n",
247-
"09-theano\\09.02-theano-basics.ipynb\n",
248-
"09-theano\\09.03-gpu-on-windows.ipynb\n",
249-
"09-theano\\09.04-graph-structures.ipynb\n",
250-
"09-theano\\09.05-configuration-settings-and-compiling-modes.ipynb\n",
251-
"09-theano\\09.06-conditions-in-theano.ipynb\n",
252-
"09-theano\\09.07-loop-with-scan.ipynb\n",
253-
"09-theano\\09.08-linear-regression.ipynb\n",
254-
"09-theano\\09.09-logistic-regression-.ipynb\n",
255-
"09-theano\\09.10-softmax-on-mnist.ipynb\n",
256-
"09-theano\\09.11-net-on-mnist.ipynb\n",
257-
"09-theano\\09.12-random-streams.ipynb\n",
258-
"09-theano\\09.13-modern-net-on-mnist.ipynb\n",
259-
"09-theano\\09.14-convolutional-net-on-mnist.ipynb\n",
260-
"09-theano\\09.15-tensor-basics.ipynb\n",
261-
"09-theano\\09.16-tensor-indexing.ipynb\n",
262-
"09-theano\\09.17-tensor-operator-and-elementwise-operations.ipynb\n",
263-
"09-theano\\09.18-tensor-nnet-.ipynb\n",
264-
"09-theano\\09.19-tensor-conv.ipynb\n",
265-
"10-something-interesting\\10.01-maps-using-basemap.ipynb\n",
266-
"10-something-interesting\\10.02-maps-using-cartopy.ipynb\n",
267-
"10-something-interesting\\10.03-nba-data.ipynb\n",
268-
"10-something-interesting\\10.04-louis-cha's-kungfu-world.ipynb\n",
269-
"11-useful-tools\\11.01-pprint.ipynb\n",
270-
"11-useful-tools\\11.02-pickle-and-cPickle.ipynb\n",
271-
"11-useful-tools\\11.03-json.ipynb\n",
272-
"11-useful-tools\\11.04-glob.ipynb\n",
273-
"11-useful-tools\\11.05-shutil.ipynb\n",
274-
"11-useful-tools\\11.06-gzip,-zipfile,-tarfile.ipynb\n",
275-
"11-useful-tools\\11.07-logging.ipynb\n",
276-
"11-useful-tools\\11.08-string.ipynb\n",
277-
"11-useful-tools\\11.09-collections.ipynb\n",
278-
"11-useful-tools\\11.10-requests.ipynb\n",
279-
"12-pandas\\12.01-ten-minutes-to-pandas.ipynb\n",
280-
"12-pandas\\12.02-series-in-pandas.ipynb\n",
281-
"12-pandas\\12.03-dataframe-in-pandas.ipynb\n"
125+
"01-python-tools/01.01-python-overview.ipynb\n",
126+
"01-python-tools/01.02-ipython-interpreter.ipynb\n",
127+
"01-python-tools/01.03-ipython-notebook.ipynb\n",
128+
"01-python-tools/01.04-use-anaconda.ipynb\n",
129+
"02-python-essentials/02.01-a-tour-of-python.ipynb\n",
130+
"02-python-essentials/02.02-python-data-types.ipynb\n",
131+
"02-python-essentials/02.03-numbers.ipynb\n",
132+
"02-python-essentials/02.04-strings.ipynb\n",
133+
"02-python-essentials/02.05-indexing-and-slicing.ipynb\n",
134+
"02-python-essentials/02.06-lists.ipynb\n",
135+
"02-python-essentials/02.07-mutable-and-immutable-data-types.ipynb\n",
136+
"02-python-essentials/02.08-tuples.ipynb\n",
137+
"02-python-essentials/02.09-speed-comparison-between-list-&-tuple.ipynb\n",
138+
"02-python-essentials/02.10-dictionaries.ipynb\n",
139+
"02-python-essentials/02.11-sets.ipynb\n",
140+
"02-python-essentials/02.12-frozen-sets.ipynb\n",
141+
"02-python-essentials/02.13-how-python-assignment-works.ipynb\n",
142+
"02-python-essentials/02.14-if-statement.ipynb\n",
143+
"02-python-essentials/02.15-loops.ipynb\n",
144+
"02-python-essentials/02.16-list-comprehension.ipynb\n",
145+
"02-python-essentials/02.17-functions.ipynb\n",
146+
"02-python-essentials/02.18-modules-and-packages.ipynb\n",
147+
"02-python-essentials/02.19-exceptions.ipynb\n",
148+
"02-python-essentials/02.20-warnings.ipynb\n",
149+
"02-python-essentials/02.21-file-IO.ipynb\n",
150+
"03-numpy/03.01-numpy-overview.ipynb\n",
151+
"03-numpy/03.02-matplotlib-basics.ipynb\n",
152+
"03-numpy/03.03-numpy-arrays.ipynb\n",
153+
"03-numpy/03.04-array-types.ipynb\n",
154+
"03-numpy/03.05-array-calculation-method.ipynb\n",
155+
"03-numpy/03.06-sorting-numpy-arrays.ipynb\n",
156+
"03-numpy/03.07-array-shapes.ipynb\n",
157+
"03-numpy/03.08-diagonals.ipynb\n",
158+
"03-numpy/03.09-data-to-&-from-string.ipynb\n",
159+
"03-numpy/03.10-array-attribute-&-method-overview-.ipynb\n",
160+
"03-numpy/03.11-array-creation-functions.ipynb\n",
161+
"03-numpy/03.12-matrix-object.ipynb\n",
162+
"03-numpy/03.13-general-functions.ipynb\n",
163+
"03-numpy/03.14-vectorizing-functions.ipynb\n",
164+
"03-numpy/03.15-binary-operators.ipynb\n",
165+
"03-numpy/03.16-universal-functions.ipynb\n",
166+
"03-numpy/03.17-choose.ipynb\n",
167+
"03-numpy/03.18-array-broadcasting.ipynb\n",
168+
"03-numpy/03.19-reading-and-writing-arrays.ipynb\n",
169+
"03-numpy/03.20-structured-arrays.ipynb\n",
170+
"03-numpy/03.21-record-arrays.ipynb\n",
171+
"03-numpy/03.22-memory-maps.ipynb\n",
172+
"03-numpy/03.23-from-matlab-to-numpy.ipynb\n",
173+
"04-scipy/04.01-scienticfic-python-overview.ipynb\n",
174+
"04-scipy/04.02-interpolation-with-scipy.ipynb\n",
175+
"04-scipy/04.03-statistics-with-scipy.ipynb\n",
176+
"04-scipy/04.04-curve-fitting.ipynb\n",
177+
"04-scipy/04.05-minimization-in-python.ipynb\n",
178+
"04-scipy/04.06-integration-in-python.ipynb\n",
179+
"04-scipy/04.07-ODEs.ipynb\n",
180+
"04-scipy/04.08-sparse-matrix.ipynb\n",
181+
"04-scipy/04.09-linear-algbra.ipynb\n",
182+
"04-scipy/04.10-sparse-linear-algebra.ipynb\n",
183+
"05-advanced-python/05.01-overview-of-the-sys-module.ipynb\n",
184+
"05-advanced-python/05.02-interacting-with-the-OS---os.ipynb\n",
185+
"05-advanced-python/05.03-comma-separated-values.ipynb\n",
186+
"05-advanced-python/05.04-regular-expression.ipynb\n",
187+
"05-advanced-python/05.05-datetime.ipynb\n",
188+
"05-advanced-python/05.06-sql-databases.ipynb\n",
189+
"05-advanced-python/05.07-object-relational-mappers.ipynb\n",
190+
"05-advanced-python/05.08-functions.ipynb\n",
191+
"05-advanced-python/05.09-iterators.ipynb\n",
192+
"05-advanced-python/05.10-generators.ipynb\n",
193+
"05-advanced-python/05.11-context-managers-and-the-with-statement.ipynb\n",
194+
"05-advanced-python/05.12-decorators.ipynb\n",
195+
"05-advanced-python/05.13-decorator-usage.ipynb\n",
196+
"05-advanced-python/05.14-the-operator-functools-itertools-toolz-fn-funcy-module.ipynb\n",
197+
"05-advanced-python/05.15-scope.ipynb\n",
198+
"05-advanced-python/05.16-dynamic-code-execution.ipynb\n",
199+
"06-matplotlib/06.01-pyplot-tutorial.ipynb\n",
200+
"06-matplotlib/06.02-customizing-plots-with-style-sheets.ipynb\n",
201+
"06-matplotlib/06.03-working-with-text---basic.ipynb\n",
202+
"06-matplotlib/06.04-working-with-text---math-expression.ipynb\n",
203+
"06-matplotlib/06.05-image-tutorial.ipynb\n",
204+
"06-matplotlib/06.06-annotating-axes.ipynb\n",
205+
"06-matplotlib/06.07-legend.ipynb\n",
206+
"06-matplotlib/06.08-figures,-subplots,-axes-and-ticks.ipynb\n",
207+
"06-matplotlib/06.09-do-not-trust-the-defaults.ipynb\n",
208+
"06-matplotlib/06.10-different-plots.ipynb\n",
209+
"07-interfacing-with-other-languages/07.01-introduction.ipynb\n",
210+
"07-interfacing-with-other-languages/07.02-python-extension-modules.ipynb\n",
211+
"07-interfacing-with-other-languages/07.03-cython-part-1.ipynb\n",
212+
"07-interfacing-with-other-languages/07.04-cython-part-2.ipynb\n",
213+
"07-interfacing-with-other-languages/07.05-cython-part-3.ipynb\n",
214+
"07-interfacing-with-other-languages/07.06-cython-part-4.ipynb\n",
215+
"07-interfacing-with-other-languages/07.07-profiling-with-annotations.ipynb\n",
216+
"07-interfacing-with-other-languages/07.08-ctypes.ipynb\n",
217+
"08-object-oriented-programming/08.01-oop-introduction.ipynb\n",
218+
"08-object-oriented-programming/08.02-using-oop-model-a-forest-fire.ipynb\n",
219+
"08-object-oriented-programming/08.03-what-is-a-object.ipynb\n",
220+
"08-object-oriented-programming/08.04-writing-classes.ipynb\n",
221+
"08-object-oriented-programming/08.05-special-method.ipynb\n",
222+
"08-object-oriented-programming/08.06-properties.ipynb\n",
223+
"08-object-oriented-programming/08.07-forest-fire-simulation.ipynb\n",
224+
"08-object-oriented-programming/08.08-inheritance.ipynb\n",
225+
"08-object-oriented-programming/08.09-super.ipynb\n",
226+
"08-object-oriented-programming/08.10-refactoring-the-forest-fire-simutation.ipynb\n",
227+
"08-object-oriented-programming/08.11-interfaces.ipynb\n",
228+
"08-object-oriented-programming/08.12-public-private-special-in-python.ipynb\n",
229+
"08-object-oriented-programming/08.13-multiple-inheritance.ipynb\n",
230+
"09-theano/09.01-introduction-and-installation.ipynb\n",
231+
"09-theano/09.02-theano-basics.ipynb\n",
232+
"09-theano/09.03-gpu-on-windows.ipynb\n",
233+
"09-theano/09.04-graph-structures.ipynb\n",
234+
"09-theano/09.05-configuration-settings-and-compiling-modes.ipynb\n",
235+
"09-theano/09.06-conditions-in-theano.ipynb\n",
236+
"09-theano/09.07-loop-with-scan.ipynb\n",
237+
"09-theano/09.08-linear-regression.ipynb\n",
238+
"09-theano/09.09-logistic-regression-.ipynb\n",
239+
"09-theano/09.10-softmax-on-mnist.ipynb\n",
240+
"09-theano/09.11-net-on-mnist.ipynb\n",
241+
"09-theano/09.12-random-streams.ipynb\n",
242+
"09-theano/09.13-modern-net-on-mnist.ipynb\n",
243+
"09-theano/09.14-convolutional-net-on-mnist.ipynb\n",
244+
"09-theano/09.15-tensor-basics.ipynb\n",
245+
"09-theano/09.16-tensor-indexing.ipynb\n",
246+
"09-theano/09.17-tensor-operator-and-elementwise-operations.ipynb\n",
247+
"09-theano/09.18-tensor-nnet-.ipynb\n",
248+
"09-theano/09.19-tensor-conv.ipynb\n",
249+
"10-something-interesting/10.01-maps-using-basemap.ipynb\n",
250+
"10-something-interesting/10.02-maps-using-cartopy.ipynb\n",
251+
"10-something-interesting/10.03-nba-data.ipynb\n",
252+
"10-something-interesting/10.04-louis-cha's-kungfu-world.ipynb\n",
253+
"11-useful-tools/11.01-pprint.ipynb\n",
254+
"11-useful-tools/11.02-pickle-and-cPickle.ipynb\n",
255+
"11-useful-tools/11.03-json.ipynb\n",
256+
"11-useful-tools/11.04-glob.ipynb\n",
257+
"11-useful-tools/11.05-shutil.ipynb\n",
258+
"11-useful-tools/11.06-gzip,-zipfile,-tarfile.ipynb\n",
259+
"11-useful-tools/11.07-logging.ipynb\n",
260+
"11-useful-tools/11.08-string.ipynb\n",
261+
"11-useful-tools/11.09-collections.ipynb\n",
262+
"11-useful-tools/11.10-requests.ipynb\n",
263+
"12-pandas/12.01-ten-minutes-to-pandas.ipynb\n",
264+
"12-pandas/12.02-series-in-pandas.ipynb\n",
265+
"12-pandas/12.03-dataframe-in-pandas.ipynb\n"
282266
]
283267
}
284268
],
@@ -296,9 +280,7 @@
296280
{
297281
"cell_type": "code",
298282
"execution_count": 7,
299-
"metadata": {
300-
"collapsed": false
301-
},
283+
"metadata": {},
302284
"outputs": [],
303285
"source": [
304286
"with open('index.md') as f:\n",
@@ -324,9 +306,9 @@
324306
"name": "python",
325307
"nbconvert_exporter": "python",
326308
"pygments_lexer": "ipython2",
327-
"version": "2.7.11"
309+
"version": "2.7.14"
328310
}
329311
},
330312
"nbformat": 4,
331-
"nbformat_minor": 0
313+
"nbformat_minor": 1
332314
}

0 commit comments

Comments
 (0)