Skip to content

Commit 08f55bf

Browse files
committed
Updated website (automated commit)
1 parent 506bb82 commit 08f55bf

40 files changed

+837
-126
lines changed

_images/ipython-book.jpg

64.8 KB
Loading

_images/ipython-cookbook.jpg

43.4 KB
Loading

_sources/books.txt

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
=====
2+
Books
3+
=====
4+
5+
IPython Cookbook
6+
----------------
7+
8+
.. image:: _static/ipython-cookbook.jpg
9+
:width: 200px
10+
:alt: IPython Cookbook
11+
:target: _static/ipython-cookbook.jpg
12+
13+
* `IPython Interactive Computing and Visualization Cookbook <http://ipython-books.github.io/cookbook/>`_
14+
* by `Cyrille Rossant <http://cyrille.rossant.net>`_
15+
* 512 pages
16+
* Packt Publishing
17+
* September 25 2014
18+
19+
This is an advanced-level guide to IPython for data science, and the sequel of
20+
the IPython minibook.
21+
22+
IPython Minibook
23+
----------------
24+
25+
.. image:: _static/ipython-book.jpg
26+
:width: 200px
27+
:alt: IPython Minibook
28+
:target: _static/ipython-book.jpg
29+
30+
* `Learning IPython for Interactive Computing and Data Visualization <http://ipython-books.github.io/minibook/>`_
31+
* by `Cyrille Rossant <http://cyrille.rossant.net>`_
32+
* 134 pages
33+
* Packt Publishing
34+
* April 25 2013
35+
36+
This is a beginner-level introduction to IPython for data analysis and numerical computing,
37+
covering NumPy, pandas, SciPy, and matplotlib.

_sources/index.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,11 @@ Python 2.6 and 3.2.
6969
Announcements
7070
=============
7171

72+
- **Book**: Cyrille Rossant has published the `IPython Interactive Computing and Visualization Cookbook <books.html>`_, an advanced-level guide to IPython for data science, and the sequel of his previous book on IPython. We thank Packt Publishing for donating a portion of the proceeds from this book to support IPython's development.
73+
7274
- **IPython 2.2**: A security and bugfix release for IPython 2.x, released 6th
7375
August 2014.
76+
7477
- **IPython 2.0**: We are proud to announce the availability of IPython 2.0,
7578
a major new release including HTML widgets and multi-directory navigation.
7679
`Install <install.html>`__ it now, or read about the changes in
@@ -93,7 +96,7 @@ Announcements
9396

9497
- **Book**: Cyrille Rossant has published the first IPython-focused book:
9598
`Learning IPython for Interactive Computing and Data Visualization
96-
<http://www.packtpub.com/learning-ipython-for-interactive-computing-and-data-visualization/book>`_,
99+
<books.html>`_,
97100
for which `Matthias Bussonnier <https://github.com/Carreau>`_ was a technical
98101
reviewer. We thank Packt Publishing for donating a portion of the proceeds
99102
from this book to support IPython's development.

_sources/install.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ If you already have Python installed and are familiar with installing packages,
1616

1717
Or if you want to also get the dependencies for the IPython notebook::
1818

19-
pip install ipython[notebook]
19+
pip install "ipython[notebook]"
2020

2121
I am getting started with Python
2222
--------------------------------

_sources/news.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22
News
33
====
44

5+
Release of the IPython Cookbook
6+
-------------------------------
7+
8+
On September 25 2014, Cyrille Rossant published the
9+
`IPython Interactive Computing and Visualization Cookbook <books.html>`_,
10+
an advanced-level guide to IPython for data science,
11+
and the sequel of his previous book on IPython.
12+
We thank Packt Publishing for donating a portion of the proceeds from
13+
this book to support IPython's development.
14+
515
IPython 2.2
616
-----------
717

_static/basic.css

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Sphinx stylesheet -- basic theme.
66
*
7-
* :copyright: Copyright 2007-2014 by the Sphinx team, see AUTHORS.
7+
* :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.
99
*
1010
*/
@@ -89,7 +89,6 @@ div.sphinxsidebar #searchbox input[type="submit"] {
8989

9090
img {
9191
border: 0;
92-
max-width: 100%;
9392
}
9493

9594
/* -- search page ----------------------------------------------------------- */
@@ -402,6 +401,10 @@ dl.glossary dt {
402401
margin: 0;
403402
}
404403

404+
.refcount {
405+
color: #060;
406+
}
407+
405408
.optional {
406409
font-size: 1.3em;
407410
}

_static/doctools.js

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Sphinx JavaScript utilities for all documentation.
66
*
7-
* :copyright: Copyright 2007-2014 by the Sphinx team, see AUTHORS.
7+
* :copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.
99
*
1010
*/
@@ -32,7 +32,7 @@ if (!window.console || !console.firebug) {
3232
*/
3333
jQuery.urldecode = function(x) {
3434
return decodeURIComponent(x).replace(/\+/g, ' ');
35-
};
35+
}
3636

3737
/**
3838
* small helper function to urlencode strings
@@ -61,6 +61,18 @@ jQuery.getQueryParameters = function(s) {
6161
return result;
6262
};
6363

64+
/**
65+
* small function to check if an array contains
66+
* a given item.
67+
*/
68+
jQuery.contains = function(arr, item) {
69+
for (var i = 0; i < arr.length; i++) {
70+
if (arr[i] == item)
71+
return true;
72+
}
73+
return false;
74+
};
75+
6476
/**
6577
* highlight a given string on a jquery object by wrapping it in
6678
* span elements with the given class name.
@@ -168,9 +180,6 @@ var Documentation = {
168180
var terms = (params.highlight) ? params.highlight[0].split(/\s+/) : [];
169181
if (terms.length) {
170182
var body = $('div.body');
171-
if (!body.length) {
172-
body = $('body');
173-
}
174183
window.setTimeout(function() {
175184
$.each(terms, function() {
176185
body.highlightText(this.toLowerCase(), 'highlighted');

_static/fancybox/.gitattributes

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
3+
4+
# Denote all files that are truly binary and should not be modified.
5+
*.png binary
6+
*.jpg binary
7+
*.gif binary

_static/fancybox/jquery.fancybox.js

100644100755
File mode changed.

0 commit comments

Comments
 (0)