Skip to content

Commit f24268a

Browse files
TravisBotTravisBot
authored andcommitted
Updated website (automated commit) – Thursday, 17. November 2016 10:43PM
1 parent 1990126 commit f24268a

27 files changed

+111
-82
lines changed

_sources/books.txt

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,21 @@
22
Books
33
=====
44

5+
56
Mastering IPython 4.0
67
---------------------
78

8-
.. image:: _static/mastering_ipython_40.png
9+
.. image:: _static/mastering-ipython-book.png
910
:width: 200px
10-
:alt: Cover of "Mastering IPtyhon 4.9"
11-
:target: _static/mastering_ipython_40.png
11+
:alt: Mastering IPython
12+
:target: _static/mastering-ipython-book.png
1213

1314
* `Mastering IPython 4.0 <https://www.packtpub.com/big-data-and-business-intelligence/mastering-ipython-40>`_
14-
* by Thomas Bitterman
15+
* by `Thomas Bitterman <https://www.packtpub.com/books/info/authors/thomas-bitterman>`_
16+
* 382 pages
1517
* Packt Publishing
16-
* Code Available under MIT Liscence `on GitHub PacktPublishing Organisation <https://github.com/PacktPublishing/Mastering-IPython-4>`_
17-
* Published May 2016
18+
* May 2016
19+
* Code available under MIT License `on GitHub <https://github.com/PacktPublishing/Mastering-IPython-4>`_
1820

1921
This book will get IPython developers up to date with the latest advancements
2022
in IPython and dive deep into interactive computing with IPython. This an
@@ -63,6 +65,7 @@ IPython Minibook
6365

6466
This book is a beginner-level introduction to Python for data analysis, covering IPython, the Jupyter Notebook, pandas, NumPy, matplotlib, and many other libraries. There is an introduction to the Python programming language for complete beginners. There are also contents for more advanced users, like parallel computing with IPython and high-performance computing with Numba and Cython.
6567

68+
6669
Get your Book on this page
6770
--------------------------
6871

@@ -81,3 +84,4 @@ Besides, we recommend non-copyleft license such as CC-0.
8184
We reserve the right to refuse or remove any publication at our discretion.
8285

8386
You can get more information by reading our :ref:`books_policy`.
87+

books.html

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -213,11 +213,12 @@ <h3>Book</h3>
213213
window.onload = function() {
214214
var x = Math.random();
215215
var img;
216-
if (x < 0.333) {
216+
if (x < 0.167) {
217217
url = "_static/ipython-book.jpg";
218-
}
219-
else {
218+
} else if (x < 0.5) {
220219
url = "_static/ipython-cookbook.jpg";
220+
} else {
221+
url = "_static/mastering-ipython-book.png";
221222
}
222223
$("#sidebar-book-cover").attr("src", url);
223224
}
@@ -268,13 +269,14 @@ <h4>Support IPython</h4>
268269
<h1>Books<a class="headerlink" href="#books" title="Permalink to this headline"></a></h1>
269270
<div class="section" id="mastering-ipython-4-0">
270271
<h2>Mastering IPython 4.0<a class="headerlink" href="#mastering-ipython-4-0" title="Permalink to this headline"></a></h2>
271-
<a class="reference external image-reference" href="_static/mastering_ipython_40.png"><img alt="Cover of &quot;Mastering IPtyhon 4.9&quot;" src="_images/mastering_ipython_40.png" style="width: 200px;" /></a>
272+
<a class="reference external image-reference" href="_static/mastering-ipython-book.png"><img alt="Mastering IPython" src="_images/mastering-ipython-book.png" style="width: 200px;" /></a>
272273
<ul class="simple">
273274
<li><a class="reference external" href="https://www.packtpub.com/big-data-and-business-intelligence/mastering-ipython-40">Mastering IPython 4.0</a></li>
274-
<li>by Thomas Bitterman</li>
275+
<li>by <a class="reference external" href="https://www.packtpub.com/books/info/authors/thomas-bitterman">Thomas Bitterman</a></li>
276+
<li>382 pages</li>
275277
<li>Packt Publishing</li>
276-
<li>Code Available under MIT Liscence <a class="reference external" href="https://github.com/PacktPublishing/Mastering-IPython-4">on GitHub PacktPublishing Organisation</a></li>
277-
<li>Published May 2016</li>
278+
<li>May 2016</li>
279+
<li>Code available under MIT License <a class="reference external" href="https://github.com/PacktPublishing/Mastering-IPython-4">on GitHub</a></li>
278280
</ul>
279281
<p>This book will get IPython developers up to date with the latest advancements
280282
in IPython and dive deep into interactive computing with IPython. This an

books_policy.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -211,11 +211,12 @@ <h3>Book</h3>
211211
window.onload = function() {
212212
var x = Math.random();
213213
var img;
214-
if (x < 0.333) {
214+
if (x < 0.167) {
215215
url = "_static/ipython-book.jpg";
216-
}
217-
else {
216+
} else if (x < 0.5) {
218217
url = "_static/ipython-cookbook.jpg";
218+
} else {
219+
url = "_static/mastering-ipython-book.png";
219220
}
220221
$("#sidebar-book-cover").attr("src", url);
221222
}

citing.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -213,11 +213,12 @@ <h3>Book</h3>
213213
window.onload = function() {
214214
var x = Math.random();
215215
var img;
216-
if (x < 0.333) {
216+
if (x < 0.167) {
217217
url = "_static/ipython-book.jpg";
218-
}
219-
else {
218+
} else if (x < 0.5) {
220219
url = "_static/ipython-cookbook.jpg";
220+
} else {
221+
url = "_static/mastering-ipython-book.png";
221222
}
222223
$("#sidebar-book-cover").attr("src", url);
223224
}

documentation.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -213,11 +213,12 @@ <h3>Book</h3>
213213
window.onload = function() {
214214
var x = Math.random();
215215
var img;
216-
if (x < 0.333) {
216+
if (x < 0.167) {
217217
url = "_static/ipython-book.jpg";
218-
}
219-
else {
218+
} else if (x < 0.5) {
220219
url = "_static/ipython-cookbook.jpg";
220+
} else {
221+
url = "_static/mastering-ipython-book.png";
221222
}
222223
$("#sidebar-book-cover").attr("src", url);
223224
}

donate.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -213,11 +213,12 @@ <h3>Book</h3>
213213
window.onload = function() {
214214
var x = Math.random();
215215
var img;
216-
if (x < 0.333) {
216+
if (x < 0.167) {
217217
url = "_static/ipython-book.jpg";
218-
}
219-
else {
218+
} else if (x < 0.5) {
220219
url = "_static/ipython-cookbook.jpg";
220+
} else {
221+
url = "_static/mastering-ipython-book.png";
221222
}
222223
$("#sidebar-book-cover").attr("src", url);
223224
}

faq.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -213,11 +213,12 @@ <h3>Book</h3>
213213
window.onload = function() {
214214
var x = Math.random();
215215
var img;
216-
if (x < 0.333) {
216+
if (x < 0.167) {
217217
url = "_static/ipython-book.jpg";
218-
}
219-
else {
218+
} else if (x < 0.5) {
220219
url = "_static/ipython-cookbook.jpg";
220+
} else {
221+
url = "_static/mastering-ipython-book.png";
221222
}
222223
$("#sidebar-book-cover").attr("src", url);
223224
}

index.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -212,11 +212,12 @@ <h3>Book</h3>
212212
window.onload = function() {
213213
var x = Math.random();
214214
var img;
215-
if (x < 0.333) {
215+
if (x < 0.167) {
216216
url = "_static/ipython-book.jpg";
217-
}
218-
else {
217+
} else if (x < 0.5) {
219218
url = "_static/ipython-cookbook.jpg";
219+
} else {
220+
url = "_static/mastering-ipython-book.png";
220221
}
221222
$("#sidebar-book-cover").attr("src", url);
222223
}

0 commit comments

Comments
 (0)