diff --git a/examples/Notebook/Importing Notebooks.ipynb b/examples/IPython Kernel/Importing Notebooks.ipynb similarity index 100% rename from examples/Notebook/Importing Notebooks.ipynb rename to examples/IPython Kernel/Importing Notebooks.ipynb diff --git a/examples/IPython Kernel/Index.ipynb b/examples/IPython Kernel/Index.ipynb index fe8419a..c494bd5 100644 --- a/examples/IPython Kernel/Index.ipynb +++ b/examples/IPython Kernel/Index.ipynb @@ -61,7 +61,8 @@ "* [Background Jobs](Background Jobs.ipynb)\n", "* [Trapezoid Rule](Trapezoid Rule.ipynb)\n", "* [SymPy](SymPy.ipynb)\n", - "* [Raw Input in the Notebook](Raw Input in the Notebook.ipynb)" + "* [Raw Input in the Notebook](Raw Input in the Notebook.ipynb)\n", + "* [Importing Notebooks](Importing Notebooks.ipynb)" ] }, { @@ -190,7 +191,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.4.2" + "version": "3.4.3" } }, "nbformat": 4, diff --git a/examples/Notebook/nbpackage/__init__.py b/examples/IPython Kernel/nbpackage/__init__.py similarity index 100% rename from examples/Notebook/nbpackage/__init__.py rename to examples/IPython Kernel/nbpackage/__init__.py diff --git a/examples/Notebook/nbpackage/mynotebook.ipynb b/examples/IPython Kernel/nbpackage/mynotebook.ipynb similarity index 100% rename from examples/Notebook/nbpackage/mynotebook.ipynb rename to examples/IPython Kernel/nbpackage/mynotebook.ipynb diff --git a/examples/Notebook/nbpackage/nbs/__init__.py b/examples/IPython Kernel/nbpackage/nbs/__init__.py similarity index 100% rename from examples/Notebook/nbpackage/nbs/__init__.py rename to examples/IPython Kernel/nbpackage/nbs/__init__.py diff --git a/examples/Notebook/nbpackage/nbs/other.ipynb b/examples/IPython Kernel/nbpackage/nbs/other.ipynb similarity index 100% rename from examples/Notebook/nbpackage/nbs/other.ipynb rename to examples/IPython Kernel/nbpackage/nbs/other.ipynb diff --git a/examples/Index.ipynb b/examples/Index.ipynb index 2f71bf0..0e463d4 100644 --- a/examples/Index.ipynb +++ b/examples/Index.ipynb @@ -33,10 +33,6 @@ "metadata": {}, "source": [ "* [IPython Kernel](IPython Kernel/Index.ipynb): IPython's core syntax and command line features available in all frontends\n", - "* [Notebook](Notebook/Index.ipynb): The IPython Notebook frontend\n", - "* [Interactive Widgets](Interactive Widgets/Index.ipynb): Interactive JavaScript/HTML widgets and `interact`\n", - "* [Parallel Computing](Parallel Computing/Index.ipynb): IPython's library for interactive parallel computing\n", - "* [Customization](Customization/Index.ipynb): How to configure IPython and customize it with magics, extensions, etc.\n", "* [Embedding](Embedding/Index.ipynb): Embedding and reusing IPython's components into other applications\n" ] } @@ -57,7 +53,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.4.2" + "version": "3.4.3" } }, "nbformat": 4, diff --git a/examples/Interactive Widgets/Beat Frequencies.ipynb b/examples/Interactive Widgets/Beat Frequencies.ipynb deleted file mode 100644 index dfbde91..0000000 --- a/examples/Interactive Widgets/Beat Frequencies.ipynb +++ /dev/null @@ -1,120 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Exploring Beat Frequencies using the `Audio` Object" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "This example uses the `Audio` object and Matplotlib to explore the phenomenon of beat frequencies." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline\n", - "import matplotlib.pyplot as plt\n", - "import numpy as np" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from IPython.html.widgets import interactive\n", - "from IPython.display import Audio, display\n", - "import numpy as np" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "def beat_freq(f1=220.0, f2=224.0):\n", - " max_time = 3\n", - " rate = 8000\n", - " times = np.linspace(0,max_time,rate*max_time)\n", - " signal = np.sin(2*np.pi*f1*times) + np.sin(2*np.pi*f2*times)\n", - " print(f1, f2, abs(f1-f2))\n", - " display(Audio(data=signal, rate=rate))\n", - " return signal" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "v = interactive(beat_freq, f1=(200.0,300.0), f2=(200.0,300.0))\n", - "display(v)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "v.kwargs" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "f1, f2 = v.children\n", - "f1.value = 255\n", - "f2.value = 260\n", - "plt.plot(v.result[0:6000])" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.4.0" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} diff --git a/examples/Interactive Widgets/Custom Widget - Hello World.ipynb b/examples/Interactive Widgets/Custom Widget - Hello World.ipynb deleted file mode 100644 index 1cf412d..0000000 --- a/examples/Interactive Widgets/Custom Widget - Hello World.ipynb +++ /dev/null @@ -1,793 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "[Index](Index.ipynb) - [Back](Widget Styling.ipynb)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from __future__ import print_function # For py 2.7 compat" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "# Building a Custom Widget" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The widget framework is built **on top of the Comm framework** (short for communication). The Comm framework is a framework that **allows you send/receive JSON messages** to/from the front-end (as seen below).\n", - "\n", - "![Widget layer](images/WidgetArch.png)\n", - "\n", - "To create a custom widget, you need to **define the widget both in the back-end and in the front-end**. " - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "# Building a Custom Widget" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "To get started, you'll create a **simple hello world widget**. Later you'll build on this foundation to make more complex widgets." - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "## Back-end (Python)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### DOMWidget and Widget" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "To define a widget, you must inherit from the **Widget or DOMWidget** base class. If you intend for your widget to be **displayed in the IPython notebook**, you'll need to **inherit from the DOMWidget**. The DOMWidget class itself inherits from the Widget class. The Widget class is useful for cases in which the **Widget is not meant to be displayed directly in the notebook**, but **instead as a child of another rendering environment**. For example, if you wanted to create a three.js widget (a popular WebGL library), you would implement the rendering window as a DOMWidget and any 3D objects or lights meant to be rendered in that window as Widgets." - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "### _view_name" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Inheriting from the DOMWidget does not tell the widget framework what front-end widget to associate with your back-end widget. Instead, you must tell it yourself by defining a **specially named Traitlet, `_view_name`** (as seen below)." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from IPython.html import widgets\n", - "from traitlets import Unicode\n", - "\n", - "class HelloWidget(widgets.DOMWidget):\n", - " _view_name = Unicode('HelloView', sync=True)" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "### sync=True traitlets" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "**Traitlets is** an IPython library for defining **type-safe properties** on configurable objects. For this tutorial you do not need to worry about the *configurable* piece of the traitlets machinery. The **`sync=True` keyword argument** tells the widget framework to **handle synchronizing that value to the front-end**. Without `sync=True`, the front-end would have no knowledge of `_view_name`." - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "### Other traitlet types" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Unicode, used for _view_name, is not the only Traitlet type, there are many more some of which are listed below: \n", - "\n", - "- Any\n", - "- Bool\n", - "- Bytes\n", - "- CBool\n", - "- CBytes\n", - "- CComplex\n", - "- CFloat\n", - "- CInt\n", - "- CLong\n", - "- CRegExp\n", - "- CUnicode\n", - "- CaselessStrEnum\n", - "- Complex\n", - "- Dict\n", - "- DottedObjectName\n", - "- Enum\n", - "- Float\n", - "- FunctionType\n", - "- Instance\n", - "- InstanceType\n", - "- Int\n", - "- List\n", - "- Long\n", - "- Set\n", - "- TCPAddress\n", - "- Tuple\n", - "- Type\n", - "- Unicode\n", - "- Union\n", - "\n", - "\n", - "**Not all of these traitlets can be synchronized** across the network, **only the JSON-able** traits and **Widget instances** will be synchronized." - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "## Front-end (JavaScript)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Models and views" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The IPython widget framework front-end relies heavily on [Backbone.js](http://backbonejs.org/). **Backbone.js is an MVC (model view controller) framework**. Widgets defined in the back-end are automatically **synchronized with generic Backbone.js models** in the front-end. The traitlets are added to the front-end instance **automatically on first state push**. The **`_view_name` trait** that you defined earlier is used by the widget framework to create the corresponding Backbone.js view and **link that view to the model**." - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "### Import the WidgetManager" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You first need to **import the `widget` and `manager` modules**. You will use the manager later to register your view by name (the same name you used in the back-end). To import the modules, use the `require` method of [require.js](http://requirejs.org/) (as seen below).\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%%javascript\n", - "require([\"widgets/js/widget\", \"widgets/js/manager\"], function(widget, manager){\n", - " \n", - "});" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "### Define the view" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Next define your widget view class. **Inherit from the `DOMWidgetView`** by using the `.extend` method. Register the view class with the widget manager by calling **`.register_widget_view`**. The **first parameter is the widget view name** (`_view_name` that you defined earlier in Python) and the **second is a handle to the class type**." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%%javascript\n", - "require([\"widgets/js/widget\", \"widgets/js/manager\"], function(widget, manager){\n", - " \n", - " // Define the HelloView\n", - " var HelloView = widget.DOMWidgetView.extend({\n", - " \n", - " });\n", - " \n", - " // Register the HelloView with the widget manager.\n", - " manager.WidgetManager.register_widget_view('HelloView', HelloView);\n", - "});" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "### Render method" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Lastly, **override the base `render` method** of the view to define custom rendering logic. A handle to the widget's default div element can be acquired via **`this.$el`**. The `$el` property is a **[jQuery](http://jquery.com/) object handle** (which can be thought of as a supercharged version of the normal DOM element's handle)." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%%javascript\n", - "require([\"widgets/js/widget\", \"widgets/js/manager\"], function(widget, manager){\n", - " \n", - " var HelloView = widget.DOMWidgetView.extend({\n", - " \n", - " // Render the view.\n", - " render: function(){ \n", - " this.$el.text('Hello World!'); \n", - " },\n", - " });\n", - " \n", - " manager.WidgetManager.register_widget_view('HelloView', HelloView);\n", - "});" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "## Test" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You should be able to display your widget just like any other widget now." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "HelloWidget()" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "## Making the widget stateful" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "There is not much that you can do with the above example that you can't do with the IPython display framework. To change this, you will make the widget stateful. Instead of displaying a static \"hello world\" message, it will **display a string set by the back-end**. First you need to **add a traitlet in the back-end**. Use the name of **`value` to stay consistent** with the rest of the widget framework and to **allow your widget to be used with interact**." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "class HelloWidget(widgets.DOMWidget):\n", - " _view_name = Unicode('HelloView', sync=True)\n", - " value = Unicode('Hello World!', sync=True)" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "### Accessing the model from the view" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "To access the model associate with a view instance, use the **`model` property** of the view. **`get` and `set`** methods are used to interact with the Backbone model. **`get` is trivial**, however you have to **be careful when using `set`**. **After calling the model `set`** you need call the **view's `touch` method**. This associates the `set` operation with a particular view so **output will be routed to the correct cell**. The model also has a **`on` method** which allows you to listen to events triggered by the model (like value changes)." - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "### Rendering model contents" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "By **replacing the string literal with a call to `model.get`**, the view will now display the **value of the back-end upon display**. However, it will not update itself to a new value when the value changes." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%%javascript\n", - "require([\"widgets/js/widget\", \"widgets/js/manager\"], function(widget, manager){\n", - " \n", - " var HelloView = widget.DOMWidgetView.extend({\n", - " \n", - " render: function(){ \n", - " this.$el.text(this.model.get('value')); \n", - " },\n", - " });\n", - " \n", - " manager.WidgetManager.register_widget_view('HelloView', HelloView);\n", - "});" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "### Dynamic updates" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "To get the view to **update itself dynamically**, register a function to update the view's value when the model's `value` property changes. This can be done using the **`model.on` method**. The `on` method takes three parameters, an event name, callback handle, and callback context. The Backbone **event named `change`** will fire whenever the model changes. By **appending `:value`** to it, you tell Backbone to only listen to the change event of the `value` property (as seen below)." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%%javascript\n", - "require([\"widgets/js/widget\", \"widgets/js/manager\"], function(widget, manager){\n", - " \n", - " var HelloView = widget.DOMWidgetView.extend({\n", - " \n", - " render: function(){ \n", - " this.value_changed();\n", - " this.model.on('change:value', this.value_changed, this);\n", - " },\n", - " \n", - " value_changed: function() {\n", - " this.$el.text(this.model.get('value')); \n", - " },\n", - " });\n", - " \n", - " manager.WidgetManager.register_widget_view('HelloView', HelloView);\n", - "});" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "## Test" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "w = HelloWidget()\n", - "w" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "w.value = 'test'" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "# Finishing" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Bidirectional communication" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The examples above dump the value directly into the DOM. There is no way for you to interact with this dumped data in the front-end. To create an example that **accepts input**, you will have to do something more than blindly dumping the contents of value into the DOM. In this part of the tutorial, you will **use a jQuery spinner** to display and accept input in the front-end. IPython currently lacks a spinner implementation so this widget will be unique." - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "### Update the Python code" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You will need to change the type of the **value traitlet to `Int`**. It also makes sense to **change the name of the widget** to something more appropriate, like `SpinnerWidget`." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from traitlets import CInt\n", - "class SpinnerWidget(widgets.DOMWidget):\n", - " _view_name = Unicode('SpinnerView', sync=True)\n", - " value = CInt(0, sync=True)" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "### Updating the Javascript code" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The [jQuery docs for the spinner control](https://jqueryui.com/spinner/) say to use **`.spinner` to create a spinner** in an element. Calling **`.spinner` on `$el` will create a spinner inside `$el`**. Make sure to **update the widget name here too** so it's the same as `_view_name` in the back-end." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%%javascript\n", - "require([\"widgets/js/widget\", \"widgets/js/manager\"], function(widget, manager){\n", - " \n", - " var SpinnerView = widget.DOMWidgetView.extend({\n", - " \n", - " render: function(){ \n", - " \n", - " // jQuery code to create a spinner and append it to $el\n", - " this.$input = $('');\n", - " this.$el.append(this.$input);\n", - " this.$spinner = this.$input.spinner({\n", - " change: function( event, ui ) {}\n", - " });\n", - " \n", - " this.value_changed();\n", - " this.model.on('change:value', this.value_changed, this);\n", - " },\n", - " \n", - " value_changed: function() {\n", - " \n", - " },\n", - " });\n", - " \n", - " manager.WidgetManager.register_widget_view('SpinnerView', SpinnerView);\n", - "});" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "### Getting and setting the value" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "To **set the value of the spinner on update from the back-end**, you need to use **jQuery's `spinner` API**. `spinner.spinner('value', new)` will set the value of the spinner. Add that code to the **`value_changed` method** to make the spinner **update with the value stored in the back-end((. Using jQuery's spinner API, you can add a function to handle the **spinner `change` event** by passing it in when constructing the spinner. Inside the `change` event, call **`model.set`** to set the value and then **`touch`** to inform the framework that this view was the view that caused the change to the model. **Note: The `var that = this;` is a JavaScript trick to pass the current context into closures.**" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%%javascript\n", - "require([\"widgets/js/widget\", \"widgets/js/manager\"], function(widget, manager){\n", - " \n", - " var SpinnerView = widget.DOMWidgetView.extend({\n", - " \n", - " render: function(){ \n", - "\n", - " var that = this;\n", - " this.$input = $('');\n", - " this.$el.append(this.$input);\n", - " this.$spinner = this.$input.spinner({\n", - " change: function( event, ui ) {\n", - " that.handle_spin();\n", - " },\n", - " spin: function( event, ui ) {\n", - " that.handle_spin();\n", - " }\n", - " });\n", - " \n", - " this.value_changed();\n", - " this.model.on('change:value', this.value_changed, this);\n", - " },\n", - " \n", - " value_changed: function() {\n", - " this.$spinner.spinner('value', this.model.get('value'));\n", - " },\n", - " \n", - " handle_spin: function() {\n", - " this.model.set('value', this.$spinner.spinner('value'));\n", - " this.touch();\n", - " },\n", - " });\n", - " \n", - " manager.WidgetManager.register_widget_view('SpinnerView', SpinnerView);\n", - "});" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "## Test" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "w = SpinnerWidget(value=5)\n", - "w" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "w.value" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "w.value = 20" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Trying to **use the spinner with another widget**." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from IPython.display import display\n", - "w1 = SpinnerWidget(value=0)\n", - "w2 = widgets.IntSlider()\n", - "display(w1,w2)\n", - "\n", - "from traitlets import link\n", - "mylink = link((w1, 'value'), (w2, 'value'))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "[Index](Index.ipynb) - [Back](Widget Styling.ipynb)" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.4.0" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} diff --git a/examples/Interactive Widgets/Date Picker Widget.ipynb b/examples/Interactive Widgets/Date Picker Widget.ipynb deleted file mode 100644 index df8ca10..0000000 --- a/examples/Interactive Widgets/Date Picker Widget.ipynb +++ /dev/null @@ -1,838 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Before reading, make sure to review\n", - "\n", - "- [MVC prgramming](http://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller)\n", - "- [Backbone.js](https://www.codeschool.com/courses/anatomy-of-backbonejs)\n", - "- [The widget IPEP](https://github.com/ipython/ipython/wiki/IPEP-23%3A-Backbone.js-Widgets)\n", - "- [The original widget PR discussion](https://github.com/ipython/ipython/pull/4374)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from __future__ import print_function # For py 2.7 compat\n", - "\n", - "from IPython.html import widgets # Widget definitions\n", - "from IPython.display import display # Used to display widgets in the notebook\n", - "from traitlets import Unicode # Used to declare attributes of our widget" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Abstract" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "This notebook implements a custom date picker widget,\n", - "in order to demonstrate the widget creation process.\n", - "\n", - "To create a custom widget, both Python and JavaScript code is required." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Section 1 - Basics" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Python" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "When starting a project like this, it is often easiest to make a simple base implementation,\n", - "to verify that the underlying framework is working as expected.\n", - "To start, we will create an empty widget and make sure that it can be rendered.\n", - "The first step is to define the widget in Python." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "class DateWidget(widgets.DOMWidget):\n", - " _view_name = Unicode('DatePickerView', sync=True)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Our widget inherits from `widgets.DOMWidget` since it is intended that it will be displayed in the notebook directly.\n", - "The `_view_name` trait is special; the widget framework will read the `_view_name` trait to determine what Backbone view the widget is associated with.\n", - "**Using `sync=True` is very important** because it tells the widget framework that that specific traitlet should be synced between the front- and back-ends." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## JavaScript" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "In the IPython notebook [require.js](http://requirejs.org/) is used to load JavaScript dependencies.\n", - "All IPython widget code depends on `widgets/js/widget.js`,\n", - "where the base widget model and base view are defined.\n", - "We use require.js to load this file:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%%javascript\n", - "\n", - "require([\"widgets/js/widget\"], function(WidgetManager){\n", - "\n", - "});" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Now we need to define a view that can be used to represent the model.\n", - "To do this, the `IPython.DOMWidgetView` is extended.\n", - "**A render function must be defined**.\n", - "The render function is used to render a widget view instance to the DOM.\n", - "For now, the render function renders a div that contains the text *Hello World!*\n", - "Lastly, the view needs to be registered with the widget manager, for which we need to load another module.\n", - "\n", - "**Final JavaScript code below:**" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%%javascript\n", - "\n", - "require([\"widgets/js/widget\", \"widgets/js/manager\"], function(widget, manager){\n", - " \n", - " // Define the DatePickerView\n", - " var DatePickerView = widget.DOMWidgetView.extend({\n", - " render: function(){ this.$el.text('Hello World!'); },\n", - " });\n", - " \n", - " // Register the DatePickerView with the widget manager.\n", - " manager.WidgetManager.register_widget_view('DatePickerView', DatePickerView);\n", - "});" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Test" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "To test what we have so far, create the widget, just like you would the builtin widgets:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "DateWidget()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Section 2 - Something useful" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Python" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "In the last section we created a simple widget that displayed *Hello World!*\n", - "To make an actual date widget, we need to add a property that will be synced between the Python model and the JavaScript model.\n", - "The new attribute must be a traitlet, so the widget machinery can handle it.\n", - "The traitlet must be constructed with a `sync=True` keyword argument, to tell the widget machinery knows to synchronize it with the front-end.\n", - "Adding this to the code from the last section:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "class DateWidget(widgets.DOMWidget):\n", - " _view_name = Unicode('DatePickerView', sync=True)\n", - " value = Unicode(sync=True)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## JavaScript" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "In the JavaScript, there is no need to define counterparts to the traitlets.\n", - "When the JavaScript model is created for the first time,\n", - "it copies all of the traitlet `sync=True` attributes from the Python model.\n", - "We need to replace *Hello World!* with an actual HTML date picker widget." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%%javascript\n", - "\n", - "require([\"widgets/js/widget\", \"widgets/js/manager\"], function(widget, manager){\n", - " \n", - " // Define the DatePickerView\n", - " var DatePickerView = widget.DOMWidgetView.extend({\n", - " render: function(){\n", - " \n", - " // Create the date picker control.\n", - " this.$date = $('')\n", - " .attr('type', 'date')\n", - " .appendTo(this.$el);\n", - " },\n", - " });\n", - " \n", - " // Register the DatePickerView with the widget manager.\n", - " manager.WidgetManager.register_widget_view('DatePickerView', DatePickerView);\n", - "});" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "In order to get the HTML date picker to update itself with the value set in the back-end, we need to implement an `update()` method." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%%javascript\n", - "\n", - "require([\"widgets/js/widget\", \"widgets/js/manager\"], function(widget, manager){\n", - " \n", - " // Define the DatePickerView\n", - " var DatePickerView = widget.DOMWidgetView.extend({\n", - " render: function(){\n", - " \n", - " // Create the date picker control.\n", - " this.$date = $('')\n", - " .attr('type', 'date')\n", - " .appendTo(this.$el);\n", - " },\n", - " \n", - " update: function() {\n", - " \n", - " // Set the value of the date control and then call base.\n", - " this.$date.val(this.model.get('value')); // ISO format \"YYYY-MM-DDTHH:mm:ss.sssZ\" is required\n", - " return DatePickerView.__super__.update.apply(this);\n", - " },\n", - " });\n", - " \n", - " // Register the DatePickerView with the widget manager.\n", - " manager.WidgetManager.register_widget_view('DatePickerView', DatePickerView);\n", - "});" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "To get the changed value from the frontend to publish itself to the backend,\n", - "we need to listen to the change event triggered by the HTM date control and set the value in the model.\n", - "After the date change event fires and the new value is set in the model,\n", - "it is very important that we call `this.touch()` to let the widget machinery know which view changed the model.\n", - "This is important because the widget machinery needs to know which cell to route the message callbacks to.\n", - "\n", - "**Final JavaScript code below:**" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%%javascript\n", - "\n", - "\n", - "require([\"widgets/js/widget\", \"widgets/js/manager\"], function(widget, manager){\n", - " \n", - " // Define the DatePickerView\n", - " var DatePickerView = widget.DOMWidgetView.extend({\n", - " render: function(){\n", - " \n", - " // Create the date picker control.\n", - " this.$date = $('')\n", - " .attr('type', 'date')\n", - " .appendTo(this.$el);\n", - " },\n", - " \n", - " update: function() {\n", - " \n", - " // Set the value of the date control and then call base.\n", - " this.$date.val(this.model.get('value')); // ISO format \"YYYY-MM-DDTHH:mm:ss.sssZ\" is required\n", - " return DatePickerView.__super__.update.apply(this);\n", - " },\n", - " \n", - " // Tell Backbone to listen to the change event of input controls (which the HTML date picker is)\n", - " events: {\"change\": \"handle_date_change\"},\n", - " \n", - " // Callback for when the date is changed.\n", - " handle_date_change: function(event) {\n", - " this.model.set('value', this.$date.val());\n", - " this.touch();\n", - " },\n", - " });\n", - " \n", - " // Register the DatePickerView with the widget manager.\n", - " manager.WidgetManager.register_widget_view('DatePickerView', DatePickerView);\n", - "});" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Test" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "To test, create the widget the same way that the other widgets are created." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "my_widget = DateWidget()\n", - "display(my_widget)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Display the widget again to make sure that both views remain in sync." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "my_widget" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Read the date from Python" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "my_widget.value" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Set the date from Python" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "my_widget.value = \"1998-12-01\" # December 1st, 1998" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Section 3 - Extra credit" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The 3rd party `dateutil` library is required to continue. https://pypi.python.org/pypi/python-dateutil" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# Import the dateutil library to parse date strings.\n", - "from dateutil import parser" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "In the last section we created a fully working date picker widget.\n", - "Now we will add custom validation and support for labels.\n", - "So far, only the ISO date format \"YYYY-MM-DD\" is supported.\n", - "Now, we will add support for all of the date formats recognized by the Python dateutil library." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Python" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The standard property name used for widget labels is `description`.\n", - "In the code block below, `description` has been added to the Python widget." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "class DateWidget(widgets.DOMWidget):\n", - " _view_name = Unicode('DatePickerView', sync=True)\n", - " value = Unicode(sync=True)\n", - " description = Unicode(sync=True)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The traitlet machinery searches the class that the trait is defined in for methods with \"`_changed`\" suffixed onto their names. Any method with the format \"`_X_changed`\" will be called when \"`X`\" is modified.\n", - "We can take advantage of this to perform validation and parsing of different date string formats.\n", - "Below, a method that listens to value has been added to the DateWidget." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "class DateWidget(widgets.DOMWidget):\n", - " _view_name = Unicode('DatePickerView', sync=True)\n", - " value = Unicode(sync=True)\n", - " description = Unicode(sync=True)\n", - "\n", - " # This function automatically gets called by the traitlet machinery when\n", - " # value is modified because of this function's name.\n", - " def _value_changed(self, name, old_value, new_value):\n", - " pass" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Now the function parses the date string,\n", - "and only sets the value in the correct format." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "class DateWidget(widgets.DOMWidget):\n", - " _view_name = Unicode('DatePickerView', sync=True)\n", - " value = Unicode(sync=True)\n", - " description = Unicode(sync=True)\n", - " \n", - " # This function automatically gets called by the traitlet machinery when\n", - " # value is modified because of this function's name.\n", - " def _value_changed(self, name, old_value, new_value):\n", - " \n", - " # Parse the date time value.\n", - " try:\n", - " parsed_date = parser.parse(new_value)\n", - " parsed_date_string = parsed_date.strftime(\"%Y-%m-%d\")\n", - " except:\n", - " parsed_date_string = ''\n", - " \n", - " # Set the parsed date string if the current date string is different.\n", - " if self.value != parsed_date_string:\n", - " self.value = parsed_date_string" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Finally, a `CallbackDispatcher` is added so the user can perform custom validation.\n", - "If any one of the callbacks registered with the dispatcher returns False,\n", - "the new date is not set.\n", - "\n", - "**Final Python code below:**" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "class DateWidget(widgets.DOMWidget):\n", - " _view_name = Unicode('DatePickerView', sync=True)\n", - " value = Unicode(sync=True)\n", - " description = Unicode(sync=True)\n", - " \n", - " def __init__(self, **kwargs):\n", - " super(DateWidget, self).__init__(**kwargs)\n", - " \n", - " self.validate = widgets.CallbackDispatcher()\n", - " \n", - " # This function automatically gets called by the traitlet machinery when\n", - " # value is modified because of this function's name.\n", - " def _value_changed(self, name, old_value, new_value):\n", - " \n", - " # Parse the date time value.\n", - " try:\n", - " parsed_date = parser.parse(new_value)\n", - " parsed_date_string = parsed_date.strftime(\"%Y-%m-%d\")\n", - " except:\n", - " parsed_date_string = ''\n", - " \n", - " # Set the parsed date string if the current date string is different.\n", - " if old_value != new_value:\n", - " valid = self.validate(parsed_date)\n", - " if valid in (None, True):\n", - " self.value = parsed_date_string\n", - " else:\n", - " self.value = old_value\n", - " self.send_state() # The traitlet event won't fire since the value isn't changing.\n", - " # We need to force the back-end to send the front-end the state\n", - " # to make sure that the date control date doesn't change." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## JavaScript" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Using the Javascript code from the last section,\n", - "we add a label to the date time object.\n", - "The label is a div with the `widget-hlabel` class applied to it.\n", - "`widget-hlabel` is a class provided by the widget framework that applies special styling to a div to make it look like the rest of the horizontal labels used with the built-in widgets.\n", - "Similar to the `widget-hlabel` class is the `widget-hbox-single` class.\n", - "The `widget-hbox-single` class applies special styling to widget containers that store a single line horizontal widget.\n", - "\n", - "We hide the label if the description value is blank." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%%javascript\n", - "\n", - "require([\"widgets/js/widget\", \"widgets/js/manager\"], function(widget, manager){\n", - " \n", - " // Define the DatePickerView\n", - " var DatePickerView = widget.DOMWidgetView.extend({\n", - " render: function(){\n", - " this.$el.addClass('widget-hbox-single'); /* Apply this class to the widget container to make\n", - " it fit with the other built in widgets.*/\n", - " // Create a label.\n", - " this.$label = $('
')\n", - " .addClass('widget-hlabel')\n", - " .appendTo(this.$el)\n", - " .hide(); // Hide the label by default.\n", - " \n", - " // Create the date picker control.\n", - " this.$date = $('')\n", - " .attr('type', 'date')\n", - " .appendTo(this.$el);\n", - " },\n", - " \n", - " update: function() {\n", - " \n", - " // Set the value of the date control and then call base.\n", - " this.$date.val(this.model.get('value')); // ISO format \"YYYY-MM-DDTHH:mm:ss.sssZ\" is required\n", - " \n", - " // Hide or show the label depending on the existance of a description.\n", - " var description = this.model.get('description');\n", - " if (description == undefined || description == '') {\n", - " this.$label.hide();\n", - " } else {\n", - " this.$label.show();\n", - " this.$label.text(description);\n", - " }\n", - " \n", - " return DatePickerView.__super__.update.apply(this);\n", - " },\n", - " \n", - " // Tell Backbone to listen to the change event of input controls (which the HTML date picker is)\n", - " events: {\"change\": \"handle_date_change\"},\n", - " \n", - " // Callback for when the date is changed.\n", - " handle_date_change: function(event) {\n", - " this.model.set('value', this.$date.val());\n", - " this.touch();\n", - " },\n", - " });\n", - " \n", - " // Register the DatePickerView with the widget manager.\n", - " manager.WidgetManager.register_widget_view('DatePickerView', DatePickerView);\n", - "});" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Test" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "To test the drawing of the label we create the widget like normal but supply the additional description property a value." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# Add some additional widgets for aesthetic purpose\n", - "display(widgets.Text(description=\"First:\"))\n", - "display(widgets.Text(description=\"Last:\"))\n", - "\n", - "my_widget = DateWidget()\n", - "display(my_widget)\n", - "my_widget.description=\"DOB:\"" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Now we will try to create a widget that only accepts dates in the year 2014. We render the widget without a description to verify that it can still render without a label." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "my_widget = DateWidget()\n", - "display(my_widget)\n", - "\n", - "def require_2014(date):\n", - " return not date is None and date.year == 2014\n", - "my_widget.validate.register_callback(require_2014)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# Try setting a valid date\n", - "my_widget.value = \"December 2, 2014\"" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# Try setting an invalid date\n", - "my_widget.value = \"June 12, 1999\"" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "my_widget.value" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [] - } - ], - "metadata": { - "cell_tags": [ - [ - "", - null - ] - ], - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.4.2" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} diff --git a/examples/Interactive Widgets/Exploring Graphs.ipynb b/examples/Interactive Widgets/Exploring Graphs.ipynb deleted file mode 100644 index 3a87a31..0000000 --- a/examples/Interactive Widgets/Exploring Graphs.ipynb +++ /dev/null @@ -1,117 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Explore Random Graphs Using NetworkX" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "In this example, we build a simple UI for exploring random graphs with [NetworkX](http://networkx.github.io/)." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from IPython.html.widgets import interact" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline\n", - "import matplotlib.pyplot as plt" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import networkx as nx" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# wrap a few graph generation functions so they have the same signature\n", - "\n", - "def random_lobster(n, m, k, p):\n", - " return nx.random_lobster(n, p, p / m)\n", - "\n", - "def powerlaw_cluster(n, m, k, p):\n", - " return nx.powerlaw_cluster_graph(n, m, p)\n", - "\n", - "def erdos_renyi(n, m, k, p):\n", - " return nx.erdos_renyi_graph(n, p)\n", - "\n", - "def newman_watts_strogatz(n, m, k, p):\n", - " return nx.newman_watts_strogatz_graph(n, k, p)\n", - "\n", - "def plot_random_graph(n, m, k, p, generator):\n", - " g = generator(n, m, k, p)\n", - " nx.draw(g)\n", - " plt.show()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "interact(plot_random_graph, n=(2,30), m=(1,10), k=(1,10), p=(0.0, 1.0, 0.001),\n", - " generator={'lobster': random_lobster,\n", - " 'power law': powerlaw_cluster,\n", - " 'Newman-Watts-Strogatz': newman_watts_strogatz,\n", - " u'Erdős-Rényi': erdos_renyi,\n", - " });" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.4.0" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} diff --git a/examples/Interactive Widgets/Export As (nbconvert).html b/examples/Interactive Widgets/Export As (nbconvert).html deleted file mode 100644 index ea4cd6c..0000000 --- a/examples/Interactive Widgets/Export As (nbconvert).html +++ /dev/null @@ -1,11882 +0,0 @@ - - - - - -Notebook - - - - - - - - - - - - - - - - - - - - - - -
-
- -
-
-
In [26]:
-
-
-
# Widget related imports
-from IPython.html import widgets
-from IPython.display import display, clear_output, Javascript
-from traitlets import Unicode
-
-# nbconvert related imports
-from IPython.nbconvert import get_export_names, export_by_name
-from IPython.nbconvert.writers import FilesWriter
-from IPython.nbformat import read, NO_CONVERT
-from IPython.nbconvert.utils.exceptions import ConversionException
-
- -
-
-
- -
-
-
-
-
-
-

Create a text Widget without displaying it. The widget will be used to store the notebook's name which is otherwise only available in the front-end.

- -
-
-
-
-
-
In [17]:
-
-
-
notebook_name = widgets.Text()
-
- -
-
-
- -
-
-
-
-
-
-

Get the current notebook's name by pushing JavaScript to the browser that sets the notebook name in a string widget.

- -
-
-
-
-
-
In [18]:
-
-
-
js = """IPython.notebook.kernel.widget_manager.get_model('%s').then(function(model) {
-    model.set('value', IPython.notebook.notebook_name);
-    model.save();
-});
-""" % notebook_name.model_id
-display(Javascript(data=js))
-
- -
-
-
- -
-
- - -
- - -
-
<IPython.core.display.Javascript object>
-
- -
- -
-
- -
-
-
-
In [19]:
-
-
-
filename = notebook_name.value
-filename
-
- -
-
-
- -
-
- - -
Out[19]:
- - -
-
'Export As (nbconvert).ipynb'
-
- -
- -
-
- -
-
-
-
-
-
-

Create the widget that will allow the user to Export the current notebook.

- -
-
-
-
-
-
In [20]:
-
-
-
exporter_names = widgets.Dropdown(options=get_export_names(), value='html')
-export_button = widgets.Button(description="Export")
-download_link = widgets.HTML(visible=False)
-
- -
-
-
- -
-
-
-
-
-
-

Export the notebook when the export button is clicked.

- -
-
-
-
-
-
In [29]:
-
-
-
file_writer = FilesWriter()
-
-def export(name, nb):
-    
-    # Get a unique key for the notebook and set it in the resources object.
-    notebook_name = name[:name.rfind('.')]
-    resources = {}
-    resources['unique_key'] = notebook_name
-    resources['output_files_dir'] = '%s_files' % notebook_name
-
-    # Try to export
-    try:
-        output, resources = export_by_name(exporter_names.value, nb)
-    except ConversionException as e:
-        download_link.value = "<br>Could not export notebook!"
-    else:
-        write_results = file_writer.write(output, resources, notebook_name=notebook_name)
-    
-        download_link.value = "<br>Results: <a href='files/{filename}'><i>\"{filename}\"</i></a>".format(filename=write_results)
-        download_link.visible = True
-        
-def handle_export(widget):
-    with open(filename, 'r') as f:
-        export(filename, read(f, NO_CONVERT))
-        
-export_button.on_click(handle_export)
-
- -
-
-
- -
-
-
-
-
-
-

Display the controls.

- -
-
-
-
-
-
In [30]:
-
-
-
display(exporter_names, export_button, download_link)
-
- -
-
-
- -
-
- - -
-
-
----------------------------------------------------------------------------
-TypeError                                 Traceback (most recent call last)
-<ipython-input-21-6a4d11e868fe> in handle_export(widget)
-     22 def handle_export(widget):
-     23     with open(filename, 'r') as f:
----> 24         export(filename, read(f, 'json'))
-     25 export_button.on_click(handle_export)
-
-/home/jon/ipython/IPython/nbformat/__init__.py in read(fp, as_version, **kwargs)
-    131             return read(f, as_version, **kwargs)
-    132 
---> 133     return reads(fp.read(), as_version, **kwargs)
-    134 
-    135 
-
-/home/jon/ipython/IPython/nbformat/__init__.py in reads(s, as_version, **kwargs)
-     67     nb = reader.reads(s, **kwargs)
-     68     if as_version is not NO_CONVERT:
----> 69         nb = convert(nb, as_version)
-     70     try:
-     71         validate(nb)
-
-/home/jon/ipython/IPython/nbformat/converter.py in convert(nb, to_version)
-     52     else:
-     53         raise ValueError("Cannot convert notebook to v%d because that " \
----> 54                         "version doesn't exist" % (to_version))
-
-TypeError: %d format: a number is required, not str
-
-
- -
-
-
----------------------------------------------------------------------------
-TypeError                                 Traceback (most recent call last)
-<ipython-input-23-549800f6d03d> in handle_export(widget)
-     22 def handle_export(widget):
-     23     with open(filename, 'r') as f:
----> 24         export(filename, read(f, 'json', 4))
-     25 
-     26 export_button.on_click(handle_export)
-
-TypeError: read() takes 2 positional arguments but 3 were given
-
-
- -
-
-
----------------------------------------------------------------------------
-TypeError                                 Traceback (most recent call last)
-<ipython-input-24-549800f6d03d> in handle_export(widget)
-     22 def handle_export(widget):
-     23     with open(filename, 'r') as f:
----> 24         export(filename, read(f, 'json', 4))
-     25 
-     26 export_button.on_click(handle_export)
-
-TypeError: read() takes 2 positional arguments but 3 were given
-
-
- -
-
-
----------------------------------------------------------------------------
-TypeError                                 Traceback (most recent call last)
-<ipython-input-27-e5e414ef9f49> in handle_export(widget)
-     22 def handle_export(widget):
-     23     with open(filename, 'r') as f:
----> 24         export(filename, read(f))
-     25 
-     26 export_button.on_click(handle_export)
-
-TypeError: read() missing 1 required positional argument: 'as_version'
-
-
- -
-
- -
-
-
-
In [ ]:
-
-
-
 
-
- -
-
-
- -
-
-
- - diff --git a/examples/Interactive Widgets/Export As (nbconvert).ipynb b/examples/Interactive Widgets/Export As (nbconvert).ipynb deleted file mode 100644 index 7bd8b89..0000000 --- a/examples/Interactive Widgets/Export As (nbconvert).ipynb +++ /dev/null @@ -1,186 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# Widget related imports\n", - "from IPython.html import widgets\n", - "from IPython.display import display, clear_output, Javascript\n", - "from traitlets import Unicode\n", - "\n", - "# nbconvert related imports\n", - "from IPython.nbconvert import get_export_names, export_by_name\n", - "from IPython.nbconvert.writers import FilesWriter\n", - "from IPython.nbformat import read, NO_CONVERT\n", - "from IPython.nbconvert.utils.exceptions import ConversionException" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "This notebook shows a really roundabout way to get the name of the notebook file using widgets. The true purpose of this demo is to demonstrate how Javascript and Python widget models are related by `id`." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Create a text Widget without displaying it. The widget will be used to store the notebook's name which is otherwise only available in the front-end." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "notebook_name = widgets.Text()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Get the current notebook's name by pushing JavaScript to the browser that sets the notebook name in a string widget." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "js = \"\"\"IPython.notebook.kernel.widget_manager.get_model('%s').then(function(model) {\n", - " model.set('value', IPython.notebook.notebook_name);\n", - " model.save();\n", - "});\n", - "\"\"\" % notebook_name.model_id\n", - "display(Javascript(data=js))" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "filename = notebook_name.value\n", - "filename" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Create the widget that will allow the user to Export the current notebook." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "exporter_names = widgets.Dropdown(options=get_export_names(), value='html')\n", - "export_button = widgets.Button(description=\"Export\")\n", - "download_link = widgets.HTML(visible=False)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Export the notebook when the export button is clicked." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "file_writer = FilesWriter()\n", - "\n", - "def export(name, nb):\n", - " \n", - " # Get a unique key for the notebook and set it in the resources object.\n", - " notebook_name = name[:name.rfind('.')]\n", - " resources = {}\n", - " resources['unique_key'] = notebook_name\n", - " resources['output_files_dir'] = '%s_files' % notebook_name\n", - "\n", - " # Try to export\n", - " try:\n", - " output, resources = export_by_name(exporter_names.value, nb)\n", - " except ConversionException as e:\n", - " download_link.value = \"
Could not export notebook!\"\n", - " else:\n", - " write_results = file_writer.write(output, resources, notebook_name=notebook_name)\n", - " \n", - " download_link.value = \"
Results: \\\"{filename}\\\"\".format(filename=write_results)\n", - " download_link.visible = True\n", - " \n", - "def handle_export(widget):\n", - " with open(filename, 'r') as f:\n", - " export(filename, read(f, NO_CONVERT))\n", - " \n", - "export_button.on_click(handle_export)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Display the controls." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "display(exporter_names, export_button, download_link)" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.4.0" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} diff --git a/examples/Interactive Widgets/Factoring.ipynb b/examples/Interactive Widgets/Factoring.ipynb deleted file mode 100644 index 9723712..0000000 --- a/examples/Interactive Widgets/Factoring.ipynb +++ /dev/null @@ -1,115 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Factoring Polynomials with SymPy" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Here is an example that uses [SymPy](http://sympy.org/en/index.html) to factor polynomials." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from IPython.html.widgets import interact\n", - "from IPython.display import display" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from sympy import Symbol, Eq, factor, init_printing\n", - "init_printing(use_latex='mathjax')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "x = Symbol('x')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "def factorit(n):\n", - " display(Eq(x**n-1, factor(x**n-1)))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Notice how the output of the `factorit` function is properly formatted LaTeX." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "factorit(12)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "interact(factorit, n=(2,40));" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.4.0" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} diff --git a/examples/Interactive Widgets/File Upload Widget.ipynb b/examples/Interactive Widgets/File Upload Widget.ipynb deleted file mode 100644 index 29a0d29..0000000 --- a/examples/Interactive Widgets/File Upload Widget.ipynb +++ /dev/null @@ -1,187 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import base64\n", - "from __future__ import print_function # py 2.7 compat.\n", - "from IPython.html import widgets # Widget definitions.\n", - "from traitlets import Unicode # Traitlet needed to add synced attributes to the widget." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "This is a custom widget that allows the user to upload file data to the notebook server. The file data is sent via a statefull `value` attribute of the widget. The widget has an upload failed event that fires in the front-end and is echoed to the back-end using a custom msg." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "class FileWidget(widgets.DOMWidget):\n", - " _view_name = Unicode('FilePickerView', sync=True)\n", - " value = Unicode(sync=True)\n", - " filename = Unicode(sync=True)\n", - " \n", - " def __init__(self, **kwargs):\n", - " \"\"\"Constructor\"\"\"\n", - " widgets.DOMWidget.__init__(self, **kwargs) # Call the base.\n", - " \n", - " # Allow the user to register error callbacks with the following signatures:\n", - " # callback()\n", - " # callback(sender)\n", - " self.errors = widgets.CallbackDispatcher(accepted_nargs=[0, 1])\n", - " \n", - " # Listen for custom msgs\n", - " self.on_msg(self._handle_custom_msg)\n", - "\n", - " def _handle_custom_msg(self, content):\n", - " \"\"\"Handle a msg from the front-end.\n", - "\n", - " Parameters\n", - " ----------\n", - " content: dict\n", - " Content of the msg.\"\"\"\n", - " if 'event' in content and content['event'] == 'error':\n", - " self.errors()\n", - " self.errors(self)\n", - " " - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%%javascript\n", - "\n", - "require([\"widgets/js/widget\", \"widgets/js/manager\"], function(widget, manager){\n", - "\n", - " var FilePickerView = widget.DOMWidgetView.extend({\n", - " render: function(){\n", - " // Render the view.\n", - " this.setElement($('')\n", - " .attr('type', 'file'));\n", - " },\n", - " \n", - " events: {\n", - " // List of events and their handlers.\n", - " 'change': 'handle_file_change',\n", - " },\n", - " \n", - " handle_file_change: function(evt) { \n", - " // Handle when the user has changed the file.\n", - " \n", - " // Retrieve the first (and only!) File from the FileList object\n", - " var file = evt.target.files[0];\n", - " if (file) {\n", - "\n", - " // Read the file's textual content and set value to those contents.\n", - " var that = this;\n", - " var file_reader = new FileReader();\n", - " file_reader.onload = function(e) {\n", - " that.model.set('value', e.target.result);\n", - " that.touch();\n", - " }\n", - " file_reader.readAsText(file);\n", - " } else {\n", - "\n", - " // The file couldn't be opened. Send an error msg to the\n", - " // back-end.\n", - " this.send({ 'event': 'error' });\n", - " }\n", - "\n", - " // Set the filename of the file.\n", - " this.model.set('filename', file.name);\n", - " this.touch();\n", - " },\n", - " });\n", - " \n", - " // Register the DatePickerView with the widget manager.\n", - " manager.WidgetManager.register_widget_view('FilePickerView', FilePickerView);\n", - "});" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The following shows how the file widget can be used." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "file_widget = FileWidget()\n", - "\n", - "# Register an event to echo the filename when it has been changed.\n", - "def file_loading():\n", - " print(\"Loading %s\" % file_widget.filename)\n", - "file_widget.on_trait_change(file_loading, 'filename')\n", - "\n", - "# Register an event to echo the filename and contents when a file\n", - "# has been uploaded.\n", - "def file_loaded():\n", - " print(\"Loaded, file contents: %s\" % file_widget.value)\n", - "file_widget.on_trait_change(file_loaded, 'value')\n", - "\n", - "# Register an event to print an error message when a file could not\n", - "# be opened. Since the error messages are not handled through\n", - "# traitlets but instead handled through custom msgs, the registration\n", - "# of the handler is different than the two examples above. Instead\n", - "# the API provided by the CallbackDispatcher must be used.\n", - "def file_failed():\n", - " print(\"Could not load file contents of %s\" % file_widget.filename)\n", - "file_widget.errors.register_callback(file_failed)\n", - "\n", - "file_widget" - ] - } - ], - "metadata": { - "cell_tags": [ - [ - "", - null - ] - ], - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.4.0" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} diff --git a/examples/Interactive Widgets/Image Browser.ipynb b/examples/Interactive Widgets/Image Browser.ipynb deleted file mode 100644 index 779ad46..0000000 --- a/examples/Interactive Widgets/Image Browser.ipynb +++ /dev/null @@ -1,119 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Image Browser" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "This example shows how to browse through a set of images with a slider." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline\n", - "import matplotlib.pyplot as plt" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from IPython.html.widgets import interact" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from sklearn import datasets" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "We will use the digits dataset from [scikit-learn](http://scikit-learn.org/stable/)." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "digits = datasets.load_digits()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "def browse_images(digits):\n", - " n = len(digits.images)\n", - " def view_image(i):\n", - " plt.imshow(digits.images[i], cmap=plt.cm.gray_r, interpolation='nearest')\n", - " plt.title('Training: %s' % digits.target[i])\n", - " plt.show()\n", - " interact(view_image, i=(0,n-1))" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "browse_images(digits)" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.4.0" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} diff --git a/examples/Interactive Widgets/Image Processing.ipynb b/examples/Interactive Widgets/Image Processing.ipynb deleted file mode 100644 index 356e320..0000000 --- a/examples/Interactive Widgets/Image Processing.ipynb +++ /dev/null @@ -1,162 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Image Manipulation with skimage" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "This example builds a simple UI for performing basic image manipulation with [scikit-image](http://scikit-image.org/)." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from IPython.html.widgets import interact, interactive, fixed\n", - "from IPython.display import display" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import skimage\n", - "from skimage import data, filter, io" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "i = data.coffee()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "io.Image(i)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "def edit_image(image, sigma=0.1, r=1.0, g=1.0, b=1.0):\n", - " new_image = filter.gaussian_filter(image, sigma=sigma, multichannel=True)\n", - " new_image[:,:,0] = r*new_image[:,:,0]\n", - " new_image[:,:,1] = g*new_image[:,:,1]\n", - " new_image[:,:,2] = b*new_image[:,:,2]\n", - " new_image = io.Image(new_image)\n", - " display(new_image)\n", - " return new_image" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "lims = (0.0,1.0,0.01)\n", - "w = interactive(edit_image, image=fixed(i), sigma=(0.0,10.0,0.1), r=lims, g=lims, b=lims)\n", - "display(w)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "w.result" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Python 3 only: Function annotations" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "In Python 3, you can use the new function annotation syntax to describe widgets for interact:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "lims = (0.0,1.0,0.01)\n", - "\n", - "@interact\n", - "def edit_image(image: fixed(i), sigma:(0.0,10.0,0.1)=0.1, r:lims=1.0, g:lims=1.0, b:lims=1.0):\n", - " new_image = filter.gaussian_filter(image, sigma=sigma, multichannel=True)\n", - " new_image[:,:,0] = r*new_image[:,:,0]\n", - " new_image[:,:,1] = g*new_image[:,:,1]\n", - " new_image[:,:,2] = b*new_image[:,:,2]\n", - " new_image = io.Image(new_image)\n", - " display(new_image)\n", - " return new_image" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.4.0" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} diff --git a/examples/Interactive Widgets/Index.ipynb b/examples/Interactive Widgets/Index.ipynb deleted file mode 100644 index d4da12c..0000000 --- a/examples/Interactive Widgets/Index.ipynb +++ /dev/null @@ -1,108 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Back to the main [Index](../Index.ipynb)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Interactive Widgets" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "IPython includes an architecture for interactive widgets that tie together Python code running in the kernel and JavaScript/HTML/CSS running in the browser. These widgets enable users to explore their code and data interactively." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Tutorials" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "- [Using Interact](Using Interact.ipynb)\n", - "- [Widget Basics](Widget Basics.ipynb) \n", - "- [Widget Events](Widget Events.ipynb) \n", - "- [Widget List](Widget List.ipynb) \n", - "- [Widget Styling](Widget Styling.ipynb) \n", - "- [Custom Widget](Custom Widget - Hello World.ipynb)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Examples of custom widgets" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "- [Variable Inspector](Variable Inspector.ipynb) \n", - "- [Export As (nbconvert)](Export As (nbconvert%29.ipynb) \n", - "- [Nonblocking Console](Nonblocking Console.ipynb) \n", - "- [File Upload Widget](File Upload Widget.ipynb)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Examples using `interact`/`interactive`" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "* [Beat Frequencies](Beat Frequencies.ipynb)\n", - "* [Exploring Graphs](Exploring Graphs.ipynb)\n", - "* [Factoring](Factoring.ipynb)\n", - "* [Image Browser](Image Browser.ipynb)\n", - "* [Image Processing](Image Processing.ipynb)\n", - "* [Lorenz Differential Equations](Lorenz Differential Equations.ipynb)" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.4.2" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} diff --git a/examples/Interactive Widgets/Lorenz Differential Equations.ipynb b/examples/Interactive Widgets/Lorenz Differential Equations.ipynb deleted file mode 100644 index 895a751..0000000 --- a/examples/Interactive Widgets/Lorenz Differential Equations.ipynb +++ /dev/null @@ -1,290 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Exploring the Lorenz System of Differential Equations" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "In this Notebook we explore the Lorenz system of differential equations:\n", - "\n", - "$$\n", - "\\begin{aligned}\n", - "\\dot{x} & = \\sigma(y-x) \\\\\n", - "\\dot{y} & = \\rho x - y - xz \\\\\n", - "\\dot{z} & = -\\beta z + xy\n", - "\\end{aligned}\n", - "$$\n", - "\n", - "This is one of the classic systems in non-linear differential equations. It exhibits a range of different behaviors as the parameters ($\\sigma$, $\\beta$, $\\rho$) are varied." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Imports" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "First, we import the needed things from IPython, NumPy, Matplotlib and SciPy." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%matplotlib inline" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from IPython.html.widgets import interact, interactive\n", - "from IPython.display import clear_output, display, HTML" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import numpy as np\n", - "from scipy import integrate\n", - "\n", - "from matplotlib import pyplot as plt\n", - "from mpl_toolkits.mplot3d import Axes3D\n", - "from matplotlib.colors import cnames\n", - "from matplotlib import animation" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Computing the trajectories and plotting the result" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "We define a function that can integrate the differential equations numerically and then plot the solutions. This function has arguments that control the parameters of the differential equation ($\\sigma$, $\\beta$, $\\rho$), the numerical integration (`N`, `max_time`) and the visualization (`angle`)." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "def solve_lorenz(N=10, angle=0.0, max_time=4.0, sigma=10.0, beta=8./3, rho=28.0):\n", - "\n", - " fig = plt.figure()\n", - " ax = fig.add_axes([0, 0, 1, 1], projection='3d')\n", - " ax.axis('off')\n", - "\n", - " # prepare the axes limits\n", - " ax.set_xlim((-25, 25))\n", - " ax.set_ylim((-35, 35))\n", - " ax.set_zlim((5, 55))\n", - " \n", - " def lorenz_deriv(x_y_z, t0, sigma=sigma, beta=beta, rho=rho):\n", - " \"\"\"Compute the time-derivative of a Lorenz system.\"\"\"\n", - " x, y, z = x_y_z\n", - " return [sigma * (y - x), x * (rho - z) - y, x * y - beta * z]\n", - "\n", - " # Choose random starting points, uniformly distributed from -15 to 15\n", - " np.random.seed(1)\n", - " x0 = -15 + 30 * np.random.random((N, 3))\n", - "\n", - " # Solve for the trajectories\n", - " t = np.linspace(0, max_time, int(250*max_time))\n", - " x_t = np.asarray([integrate.odeint(lorenz_deriv, x0i, t)\n", - " for x0i in x0])\n", - " \n", - " # choose a different color for each trajectory\n", - " colors = plt.cm.jet(np.linspace(0, 1, N))\n", - "\n", - " for i in range(N):\n", - " x, y, z = x_t[i,:,:].T\n", - " lines = ax.plot(x, y, z, '-', c=colors[i])\n", - " plt.setp(lines, linewidth=2)\n", - "\n", - " ax.view_init(30, angle)\n", - " plt.show()\n", - "\n", - " return t, x_t" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Let's call the function once to view the solutions. For this set of parameters, we see the trajectories swirling around two points, called attractors. " - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "t, x_t = solve_lorenz(angle=0, N=10)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Using IPython's `interactive` function, we can explore how the trajectories behave as we change the various parameters." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "w = interactive(solve_lorenz, angle=(0.,360.), N=(0,50), sigma=(0.0,50.0), rho=(0.0,50.0))\n", - "display(w)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The object returned by `interactive` is a `Widget` object and it has attributes that contain the current result and arguments:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "t, x_t = w.result" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "w.kwargs" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "After interacting with the system, we can take the result and perform further computations. In this case, we compute the average positions in $x$, $y$ and $z$." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "xyz_avg = x_t.mean(axis=1)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "xyz_avg.shape" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Creating histograms of the average positions (across different trajectories) show that on average the trajectories swirl about the attractors." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.hist(xyz_avg[:,0])\n", - "plt.title('Average $x(t)$')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "plt.hist(xyz_avg[:,1])\n", - "plt.title('Average $y(t)$')" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.4.0" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} diff --git a/examples/Interactive Widgets/Nonblocking Console.ipynb b/examples/Interactive Widgets/Nonblocking Console.ipynb deleted file mode 100644 index e57f06b..0000000 --- a/examples/Interactive Widgets/Nonblocking Console.ipynb +++ /dev/null @@ -1,239 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# Console related imports.\n", - "from subprocess import Popen, PIPE\n", - "import os\n", - "from IPython.utils.py3compat import bytes_to_str, string_types\n", - "\n", - "# Widget related imports.\n", - "from IPython.html import widgets\n", - "from IPython.display import display" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Define function to run a process without blocking the input." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "def read_process(process, append_output):\n", - " \"\"\" Try to read the stdout and stderr of a process and render it using \n", - " the append_output method provided\n", - " \n", - " Parameters\n", - " ----------\n", - " process: Popen handle\n", - " append_output: method handle\n", - " Callback to render output. Signature of\n", - " append_output(output, [prefix=])\"\"\"\n", - " \n", - " try:\n", - " stdout = process.stdout.read()\n", - " if stdout is not None and len(stdout) > 0:\n", - " append_output(stdout, prefix=' ')\n", - " except:\n", - " pass\n", - " \n", - " try:\n", - " stderr = process.stderr.read()\n", - " if stderr is not None and len(stderr) > 0:\n", - " append_output(stderr, prefix='ERR ')\n", - " except:\n", - " pass\n", - "\n", - "\n", - "def set_pipe_nonblocking(pipe):\n", - " \"\"\"Set a pipe as non-blocking\"\"\"\n", - " try:\n", - " import fcntl\n", - " fl = fcntl.fcntl(pipe, fcntl.F_GETFL)\n", - " fcntl.fcntl(pipe, fcntl.F_SETFL, fl | os.O_NONBLOCK)\n", - " except:\n", - " pass\n", - "\n", - "kernel = get_ipython().kernel\n", - "def run_command(command, append_output, has_user_exited=None):\n", - " \"\"\"Run a command asyncronously\n", - " \n", - " Parameters\n", - " ----------\n", - " command: str\n", - " Shell command to launch a process with.\n", - " append_output: method handle\n", - " Callback to render output. Signature of\n", - " append_output(output, [prefix=])\n", - " has_user_exited: method handle\n", - " Check to see if the user wants to stop the command.\n", - " Must return a boolean.\"\"\"\n", - " \n", - " # Echo input.\n", - " append_output(command, prefix='>>> ')\n", - " \n", - " # Create the process. Make sure the pipes are set as non-blocking.\n", - " process = Popen(command, shell=True, stdout=PIPE, stderr=PIPE)\n", - " set_pipe_nonblocking(process.stdout)\n", - " set_pipe_nonblocking(process.stderr)\n", - " \n", - " # Only continue to read from the command \n", - " while (has_user_exited is None or not has_user_exited()) and process.poll() is None:\n", - " read_process(process, append_output)\n", - " kernel.do_one_iteration() # Run IPython iteration. This is the code that\n", - " # makes this operation non-blocking. This will\n", - " # allow widget messages and callbacks to be \n", - " # processed.\n", - " \n", - " # If the process is still running, the user must have exited.\n", - " if process.poll() is None:\n", - " process.kill()\n", - " else:\n", - " read_process(process, append_output) # Read remainer\n", - " \n", - " \n", - " \n", - " " - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Create the console widgets without displaying them." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "console_container = widgets.VBox(visible=False)\n", - "console_container.padding = '10px'\n", - "\n", - "output_box = widgets.Textarea()\n", - "output_box.height = '400px'\n", - "output_box.font_family = 'monospace'\n", - "output_box.color = '#AAAAAA'\n", - "output_box.background_color = 'black'\n", - "output_box.width = '800px'\n", - "\n", - "input_box = widgets.Text()\n", - "input_box.font_family = 'monospace'\n", - "input_box.color = '#AAAAAA'\n", - "input_box.background_color = 'black'\n", - "input_box.width = '800px'\n", - "\n", - "console_container.children = [output_box, input_box]" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Hook the process execution methods up to our console widgets." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "\n", - "def append_output(output, prefix):\n", - " if isinstance(output, string_types):\n", - " output_str = output\n", - " else:\n", - " output_str = bytes_to_str(output)\n", - " output_lines = output_str.split('\\n')\n", - " formatted_output = '\\n'.join([prefix + line for line in output_lines if len(line) > 0]) + '\\n'\n", - " output_box.value += formatted_output\n", - " output_box.scroll_to_bottom()\n", - " \n", - "def has_user_exited():\n", - " return not console_container.visible\n", - "\n", - "def handle_input(sender):\n", - " sender.disabled = True\n", - " try:\n", - " command = sender.value\n", - " sender.value = ''\n", - " run_command(command, append_output=append_output, has_user_exited=has_user_exited)\n", - " finally:\n", - " sender.disabled = False\n", - " \n", - "input_box.on_submit(handle_input)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Create the button that will be used to display and hide the console. Display both the console container and the new button used to toggle it." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [ - "toggle_button = widgets.Button(description=\"Start Console\")\n", - "def toggle_console(sender):\n", - " console_container.visible = not console_container.visible\n", - " if console_container.visible:\n", - " toggle_button.description=\"Stop Console\"\n", - " input_box.disabled = False\n", - " else:\n", - " toggle_button.description=\"Start Console\"\n", - "toggle_button.on_click(toggle_console)\n", - "\n", - "display(toggle_button)\n", - "display(console_container)" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.4.0" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} diff --git a/examples/Interactive Widgets/Using Interact.ipynb b/examples/Interactive Widgets/Using Interact.ipynb deleted file mode 100644 index 65fe0e2..0000000 --- a/examples/Interactive Widgets/Using Interact.ipynb +++ /dev/null @@ -1,629 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Using Interact" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The `interact` function (`IPython.html.widgets.interact`) automatically creates user interface (UI) controls for exploring code and data interactively. It is the easiest way to get started using IPython's widgets." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from __future__ import print_function\n", - "from IPython.html.widgets import interact, interactive, fixed\n", - "from IPython.html import widgets" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "
\n", - "As of IPython 3.0, the widgets in this notebook won't show up on http://nbviewer.ipython.org. To view the widgets and interact with them, you will need to download this notebook and run it with an IPython Notebook server.\n", - "\n", - "
" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Basic `interact`" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "At the most basic level, `interact` autogenerates UI controls for function arguments, and then calls the function with those arguments when you manipulate the controls interactively. To use `interact`, you need to define a function that you want to explore. Here is a function that prints its only argument `x`." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "def f(x):\n", - " print(x)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "When you pass this function as the first argument to `interact` along with an integer keyword argument (`x=10`), a slider is generated and bound to the function." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "interact(f, x=10);" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "When you move the slider, the function is called and the current value of `x` is printed.\n", - "\n", - "If you pass `True` or `False`, `interact` will generate a checkbox:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "interact(f, x=True);" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "If you pass a string, `interact` will generate a text area." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "interact(f, x='Hi there!');" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "`interact` can also be used as a decorator. This allows you to define a function and interact with it in a single shot. As this example shows, `interact` also works with functions that have multiple arguments." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "@interact(x=True, y=1.0)\n", - "def g(x, y):\n", - " print(x, y)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Fixing arguments using `fixed`" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "There are times when you may want to explore a function using `interact`, but fix one or more of its arguments to specific values. This can be accomplished by wrapping values with the `fixed` function." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "def h(p, q):\n", - " print(p, q)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "When we call `interact`, we pass `fixed(20)` for q to hold it fixed at a value of `20`." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "interact(h, p=5, q=fixed(20));" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Notice that a slider is only produced for `p` as the value of `q` is fixed." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Widget abbreviations" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "When you pass an integer valued keyword argument (`x=10`) to `interact`, it generates an integer valued slider control with a range of $[-10,+3\\times10]$. In this case `10` is an *abbreviation* for an actual slider widget:\n", - "\n", - "```python\n", - "IntSlider(min=-10,max=30,step=1,value=10)\n", - "```\n", - "\n", - "In fact, we can get the same result if we pass this `IntSlider` as the keyword argument for `x`:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "interact(f, x=widgets.IntSlider(min=-10,max=30,step=1,value=10));" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "This examples clarifies how `interact` proceses its keyword arguments:\n", - "\n", - "1. If the keyword argument is `Widget` instance with a `value` attribute, that widget is used. Any widget with a `value` attribute can be used, even custom ones.\n", - "2. Otherwise, the value is treated as a *widget abbreviation* that is converted to a widget before it is used.\n", - "\n", - "The following table gives an overview of different widget abbreviations:\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Keyword argumentWidget
`True` or `False`Checkbox
`'Hi there'`Text
`value` or `(min,max)` or `(min,max,step)` if integers are passedIntSlider
`value` or `(min,max)` or `(min,max,step)` if floats are passedFloatSlider
`('orange','apple')` or `{'one':1,'two':2}`Dropdown
" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You have seen how the checkbox and textarea widgets work above. Here, more details about the different abbreviations for sliders and dropdowns are given.\n", - "\n", - "If a 2-tuple of integers is passed `(min,max)` a integer valued slider is produced with those minimum and maximum (inclusive) values. In this case, the default step size of `1` is used." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "interact(f, x=(0,4));" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "If a 3-tuple of integers is passed `(min,max,step)` the step size can also be set." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "interact(f, x=(0,8,2));" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "A float valued slider is produced if the elements of the tuples are floats. Here the minimum is `0.0`, the maximum is `10.0` and step size is `0.1` (the default)." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "interact(f, x=(0.0,10.0));" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The step size can be changed by passing a 3rd element in the tuple." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "interact(f, x=(0.0,10.0,0.01));" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "For both integer and float valued sliders, you can pick the initial value of the widget by passing a default keyword argument to the underlying Python function. Here we set the initial value of a float slider to `5.5`." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "@interact(x=(0.0,20.0,0.5))\n", - "def h(x=5.5):\n", - " print(x)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Dropdown menus can be produced by passing a tuple of strings. In this case, the strings are both used as the names in the dropdown menu UI and passed to the underlying Python function." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "interact(f, x=('apples','oranges'));" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "If you want a dropdown menu that passes non-string values to the Python function, you can pass a dictionary. The keys in the dictionary are used for the names in the dropdown menu UI and the values are the arguments that are passed to the underlying Python function." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "interact(f, x={'one': 10, 'two': 20});" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Using function annotations with `interact`" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "If you are using Python 3, you can also specify widget abbreviations using [function annotations](https://docs.python.org/3/tutorial/controlflow.html#function-annotations). This is a convenient approach allows the widget abbreviations to be defined with a function.\n", - "\n", - "Define a function with an checkbox widget abbreviation for the argument `x`." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "def f(x:True):\n", - " print(x)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Then, because the widget abbreviation has already been defined, you can call `interact` with a single argument." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "interact(f);" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "If you are running Python 2, function annotations can be defined using the `@annotate` function." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from IPython.utils.py3compat import annotate" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "@annotate(x=True)\n", - "def f(x):\n", - " print(x)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "interact(f);" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## `interactive`" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "In addition to `interact` IPython provides another function, `interactive`, that is useful when you want to reuse the widget that are produced or access the data that is bound to the UI controls." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Here is a function that returns the sum of its two arguments." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "def f(a, b):\n", - " return a+b" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Unlike `interact`, `interactive` returns a `Widget` instance rather than immediately displaying the widget." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "w = interactive(f, a=10, b=20)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The widget is a `Box`, which is a container for other widgets." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "type(w)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The children of the `Box` are two integer valued sliders produced by the widget abbreviations above." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "w.children" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "To actually display the widgets, you can use IPython's `display` function." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from IPython.display import display\n", - "display(w)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "At this point, the UI controls work just like they would if `interact` had been used. You can manipulate them interactively and the function will be called. However, the widget instance returned by `interactive` also give you access to the current keyword arguments and return value of the underlying Python function.\n", - "\n", - "Here are the current keyword arguments. If you rerun this cell after manipulating the sliders, the values will have changed." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "w.kwargs" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Here is the current return value of the function." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "w.result" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.4.0" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} diff --git a/examples/Interactive Widgets/Variable Inspector.ipynb b/examples/Interactive Widgets/Variable Inspector.ipynb deleted file mode 100644 index 2fbdcf4..0000000 --- a/examples/Interactive Widgets/Variable Inspector.ipynb +++ /dev/null @@ -1,240 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Variable Inspector Widget" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## A short example implementation" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "This notebook demonstrates how one can use the widgets already built-in to IPython to create a working variable inspector much like the ones seen in popular commercial scientific computing environments." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from IPython.html import widgets # Loads the Widget framework.\n", - "from IPython.core.magics.namespace import NamespaceMagics # Used to query namespace.\n", - "\n", - "# For this example, hide these names, just to avoid polluting the namespace further\n", - "get_ipython().user_ns_hidden['widgets'] = widgets\n", - "get_ipython().user_ns_hidden['NamespaceMagics'] = NamespaceMagics" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "class VariableInspectorWindow(object):\n", - " instance = None\n", - " \n", - " def __init__(self, ipython):\n", - " \"\"\"Public constructor.\"\"\"\n", - " if VariableInspectorWindow.instance is not None:\n", - " raise Exception(\"\"\"Only one instance of the Variable Inspector can exist at a \n", - " time. Call close() on the active instance before creating a new instance.\n", - " If you have lost the handle to the active instance, you can re-obtain it\n", - " via `VariableInspectorWindow.instance`.\"\"\")\n", - " \n", - " VariableInspectorWindow.instance = self\n", - " self.closed = False\n", - " self.namespace = NamespaceMagics()\n", - " self.namespace.shell = ipython.kernel.shell\n", - " \n", - " self._box = widgets.Box()\n", - " self._box._dom_classes = ['inspector']\n", - " self._box.background_color = '#fff'\n", - " self._box.border_color = '#ccc'\n", - " self._box.border_width = 1\n", - " self._box.border_radius = 5\n", - "\n", - " self._modal_body = widgets.VBox()\n", - " self._modal_body.overflow_y = 'scroll'\n", - "\n", - " self._modal_body_label = widgets.HTML(value = 'Not hooked')\n", - " self._modal_body.children = [self._modal_body_label]\n", - "\n", - " self._box.children = [\n", - " self._modal_body, \n", - " ]\n", - " \n", - " self._ipython = ipython\n", - " self._ipython.events.register('post_run_cell', self._fill)\n", - " \n", - " def close(self):\n", - " \"\"\"Close and remove hooks.\"\"\"\n", - " if not self.closed:\n", - " self._ipython.events.unregister('post_run_cell', self._fill)\n", - " self._box.close()\n", - " self.closed = True\n", - " VariableInspectorWindow.instance = None\n", - "\n", - " def _fill(self):\n", - " \"\"\"Fill self with variable information.\"\"\"\n", - " values = self.namespace.who_ls()\n", - " self._modal_body_label.value = '
NameTypeValue
' + \\\n", - " '
'.join(['{0}{1}{2}'.format(v, type(eval(v)).__name__, str(eval(v))) for v in values]) + \\\n", - " '
'\n", - "\n", - " def _ipython_display_(self):\n", - " \"\"\"Called when display() or pyout is used to display the Variable \n", - " Inspector.\"\"\"\n", - " self._box._ipython_display_()\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "inspector = VariableInspectorWindow(get_ipython())\n", - "inspector" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Pop the inspector out of the widget area using Javascript. To close the inspector, click the close button on the widget area that it was spawned from." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%%javascript\n", - "$('div.inspector')\n", - " .detach()\n", - " .prependTo($('body'))\n", - " .css({\n", - " 'z-index': 999, \n", - " position: 'fixed',\n", - " 'box-shadow': '5px 5px 12px -3px black',\n", - " opacity: 0.9\n", - " })\n", - " .draggable();" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Test" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "a = 5" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "b = 3.0" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "c = a * b" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "d = \"String\"" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "del b" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "inspector.close()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.4.0" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} diff --git a/examples/Interactive Widgets/Widget Basics.ipynb b/examples/Interactive Widgets/Widget Basics.ipynb deleted file mode 100644 index 2f3579f..0000000 --- a/examples/Interactive Widgets/Widget Basics.ipynb +++ /dev/null @@ -1,445 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "[Index](Index.ipynb) - [Next](Widget List.ipynb)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Simple Widget Introduction" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## What are widgets?" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "Widgets are elements that exists in both the front-end and the back-end.\n", - "\n", - "![Kernel & front-end diagram](../images/FrontendKernel.png)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## What can they be used for?" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "You can use widgets to build **interactive GUIs** for your notebooks. \n", - "You can also use widgets to **synchronize stateful and stateless information** between Python and JavaScript." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Using widgets " - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "To use the widget framework, you need to **import `IPython.html.widgets`**." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from IPython.html.widgets import *" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "### repr" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Widgets have their own display `repr` which allows them to be displayed using IPython's display framework. Constructing and returning an `IntSlider` automatically displays the widget (as seen below). Widgets are **displayed inside the `widget area`**, which sits between the code cell and output. **You can hide all of the widgets** in the `widget area` by clicking the grey *x* in the margin." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "IntSlider()" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "### display()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You can also explicitly display the widget using `display(...)`." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from IPython.display import display\n", - "w = IntSlider()\n", - "display(w)" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "### Multiple display() calls" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "If you display the same widget twice, the displayed instances in the front-end **will remain in sync** with each other." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "display(w)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Why does displaying the same widget twice work?" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "Widgets are **represented in the back-end by a single object**. Each time a widget is displayed, **a new representation** of that same object is created in the front-end. These representations are called **views**.\n", - "\n", - "![Kernel & front-end diagram](images/WidgetModelView.png)" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "### Closing widgets" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You can close a widget by calling its `close()` method." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "display(w)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "w.close()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Widget properties" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "All of the IPython widgets **share a similar naming scheme**. To read the value of a widget, you can query its `value` property." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "w = IntSlider()\n", - "display(w)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "w.value" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Similarly, to set a widget's value, you can set its `value` property." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "w.value = 100" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "### Keys" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "In addition to `value`, most widgets share `keys`, `description`, `disabled`, and `visible`. To see the entire list of synchronized, stateful properties, of any specific widget, you can **query the `keys` property**." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "w.keys" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Shorthand for setting the initial values of widget properties" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "While creating a widget, you can set some or all of the initial values of that widget by **defining them as keyword arguments in the widget's constructor** (as seen below)." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "Text(value='Hello World!', disabled=True)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Linking two similar widgets" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "If you need to display the same value two different ways, you'll have to use two different widgets. Instead of **attempting to manually synchronize the values** of the two widgets, you can use the `traitlet` `link` function **to link two properties together**. Below, the values of three widgets are linked together." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from traitlets import link\n", - "a = FloatText()\n", - "b = FloatSlider()\n", - "c = FloatProgress()\n", - "display(a,b,c)\n", - "\n", - "\n", - "mylink = link((a, 'value'), (b, 'value'), (c, 'value'))" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Unlinking widgets" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "Unlinking the widgets is simple. All you have to do is call `.unlink` on the link object." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "mylink.unlink()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "[Index](Index.ipynb) - [Next](Widget List.ipynb)" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.4.2" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} diff --git a/examples/Interactive Widgets/Widget Events.ipynb b/examples/Interactive Widgets/Widget Events.ipynb deleted file mode 100644 index 61e908d..0000000 --- a/examples/Interactive Widgets/Widget Events.ipynb +++ /dev/null @@ -1,383 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "[Index](Index.ipynb) - [Back](Widget List.ipynb) - [Next](Widget Styling.ipynb)" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "# Widget Events" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Special events" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from __future__ import print_function" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The `Button` is not used to represent a data type. Instead the button widget is used to **handle mouse clicks**. The **`on_click` method** of the `Button` can be used to register function to be called when the button is clicked. The doc string of the `on_click` can be seen below." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from IPython.html import widgets\n", - "print(widgets.Button.on_click.__doc__)" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "### Example" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Since button clicks are **stateless**, they are **transmitted from the front-end to the back-end using custom messages**. By using the `on_click` method, a button that prints a message when it has been clicked is shown below." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from IPython.display import display\n", - "button = widgets.Button(description=\"Click Me!\")\n", - "display(button)\n", - "\n", - "def on_button_clicked(b):\n", - " print(\"Button clicked.\")\n", - "\n", - "button.on_click(on_button_clicked)" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "### on_sumbit" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The **`Text`** also has a special **`on_submit` event**. The `on_submit` event **fires when the user hits return**." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "text = widgets.Text()\n", - "display(text)\n", - "\n", - "def handle_submit(sender):\n", - " print(text.value)\n", - "\n", - "text.on_submit(handle_submit)" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "## Traitlet events" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "**Widget properties are IPython traitlets** and **traitlets are eventful**. To handle changes, the **`on_trait_change` method** of the widget can be used to **register a callback**. The doc string for `on_trait_change` can be seen below." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "print(widgets.Widget.on_trait_change.__doc__)" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "### Signatures" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Mentioned in the doc string, the callback registered can have **4 possible signatures**:\n", - "\n", - "- callback()\n", - "- callback(trait_name)\n", - "- callback(trait_name, new_value)\n", - "- callback(trait_name, old_value, new_value)\n", - "\n", - "Using this method, an example of how to output an `IntSlider`'s value as it is changed can be seen below." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "int_range = widgets.IntSlider()\n", - "display(int_range)\n", - "\n", - "def on_value_change(name, value):\n", - " print(value)\n", - "\n", - "int_range.on_trait_change(on_value_change, 'value')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Linking Widgets" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Often, you may want to simply link widget attributes together. Synchronization of attributes can be done in a simpler way than by using bare traitlets events. \n", - "\n", - "The first method is to use the `link` and `directional_link` functions from the `traitlets` module. " - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Linking traitlets attributes from the server side" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from IPython.utils import traitlets" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "caption = widgets.Latex(value = 'The values of slider1, slider2 and slider3 are synchronized')\n", - "sliders1, slider2, slider3 = widgets.IntSlider(description='Slider 1'),\\\n", - " widgets.IntSlider(description='Slider 2'),\\\n", - " widgets.IntSlider(description='Slider 3')\n", - "l = traitlets.link((sliders1, 'value'), (slider2, 'value'), (slider3, 'value'))\n", - "display(caption, sliders1, slider2, slider3)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "caption = widgets.Latex(value = 'Changes in source values are reflected in target1 and target2')\n", - "source, target1, target2 = widgets.IntSlider(description='Source'),\\\n", - " widgets.IntSlider(description='Target 1'),\\\n", - " widgets.IntSlider(description='Target 2')\n", - "traitlets.dlink((source, 'value'), (target1, 'value'), (target2, 'value'))\n", - "display(caption, source, target1, target2)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Function `traitlets.link` returns a `Link` object. The link can be broken by calling the `unlink` method." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# l.unlink()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Linking widgets attributes from the client side" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "When synchronizing traitlets attributes, you may experience a lag because of the latency dues to the rountrip to the server side. You can also directly link widgets attributes, either in a unidirectional or a bidirectional fashion using the link widgets. " - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "caption = widgets.Latex(value = 'The values of range1, range2 and range3 are synchronized')\n", - "range1, range2, range3 = widgets.IntSlider(description='Range 1'),\\\n", - " widgets.IntSlider(description='Range 2'),\\\n", - " widgets.IntSlider(description='Range 3')\n", - "l = widgets.jslink((range1, 'value'), (range2, 'value'), (range3, 'value'))\n", - "display(caption, range1, range2, range3)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "caption = widgets.Latex(value = 'Changes in source_range values are reflected in target_range1 and target_range2')\n", - "source_range, target_range1, target_range2 = widgets.IntSlider(description='Source range'),\\\n", - " widgets.IntSlider(description='Target range 1'),\\\n", - " widgets.IntSlider(description='Target range 2')\n", - "widgets.jsdlink((source_range, 'value'), (target_range1, 'value'), (target_range2, 'value'))\n", - "display(caption, source_range, target_range1, target_range2)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Function `widgets.jslink` returns a `Link` widget. The link can be broken by calling the `unlink` method." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# l.unlink()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "[Index](Index.ipynb) - [Back](Widget List.ipynb) - [Next](Widget Styling.ipynb)" - ] - } - ], - "metadata": { - "cell_tags": [ - [ - "", - null - ] - ], - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.4.2" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} diff --git a/examples/Interactive Widgets/Widget List.ipynb b/examples/Interactive Widgets/Widget List.ipynb deleted file mode 100644 index abe1d8f..0000000 --- a/examples/Interactive Widgets/Widget List.ipynb +++ /dev/null @@ -1,621 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "[Index](Index.ipynb) - [Back](Widget Basics.ipynb) - [Next](Widget Events.ipynb)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Widget List" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Complete list" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "For a complete list of the widgets available to you, you can list the classes in the widget namespace (as seen below). `Widget` and `DOMWidget`, not listed below, are base classes." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from IPython.html import widgets\n", - "[n for n in dir(widgets) if not n.endswith('Widget') and n[0] == n[0].upper() and not n[0] == '_']" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "## Numeric widgets" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "There are 8 widgets distributed with IPython that are designed to display numeric values. Widgets exist for displaying integers and floats, both bounded and unbounded. The integer widgets share a similar naming scheme to their floating point counterparts. By replacing `Float` with `Int` in the widget name, you can find the Integer equivalent." - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "### FloatSlider" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "widgets.FloatSlider(\n", - " value=7.5,\n", - " min=5.0,\n", - " max=10.0,\n", - " step=0.1,\n", - " description='Test:',\n", - ")" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Sliders can also be **displayed vertically**." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "widgets.FloatSlider(\n", - " value=7.5,\n", - " min=5.0,\n", - " max=10.0,\n", - " step=0.1,\n", - " description='Test',\n", - " orientation='vertical',\n", - ")" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "### FloatProgress" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "widgets.FloatProgress(\n", - " value=7.5,\n", - " min=5.0,\n", - " max=10.0,\n", - " step=0.1,\n", - " description='Loading:',\n", - ")" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "### BoundedFloatText" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "widgets.BoundedFloatText(\n", - " value=7.5,\n", - " min=5.0,\n", - " max=10.0,\n", - " description='Text:',\n", - ")" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "### FloatText" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "widgets.FloatText(\n", - " value=7.5,\n", - " description='Any:',\n", - ")" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "## Boolean widgets" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "There are two widgets that are designed to display a boolean value." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### ToggleButton" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "widgets.ToggleButton(\n", - " description='Click me',\n", - " value=False,\n", - ")" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "### Checkbox" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "widgets.Checkbox(\n", - " description='Check me',\n", - " value=True,\n", - ")" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "## Selection widgets" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "There are four widgets that can be used to display single selection lists, and one that can be used to display multiple selection lists. All inherit from the same base class. You can specify the **enumeration of selectable options by passing a list**. You can **also specify the enumeration as a dictionary**, in which case the **keys will be used as the item displayed** in the list and the corresponding **value will be returned** when an item is selected." - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "### Dropdown" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from IPython.display import display\n", - "w = widgets.Dropdown(\n", - " options=['1', '2', '3'],\n", - " value='2',\n", - " description='Number:',\n", - ")\n", - "display(w)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "w.value" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The following is also valid:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "w = widgets.Dropdown(\n", - " options={'One': 1, 'Two': 2, 'Three': 3},\n", - " value=2,\n", - " description='Number:',\n", - ")\n", - "display(w)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "w.value" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "### RadioButtons" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "widgets.RadioButtons(\n", - " description='Pizza topping:',\n", - " options=['pepperoni', 'pineapple', 'anchovies'],\n", - ")" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "### Select" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "widgets.Select(\n", - " description='OS:',\n", - " options=['Linux', 'Windows', 'OSX'],\n", - ")" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "### ToggleButtons" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "widgets.ToggleButtons(\n", - " description='Speed:',\n", - " options=['Slow', 'Regular', 'Fast'],\n", - ")" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### SelectMultiple\n", - "Multiple values can be selected with shift and ctrl pressed and mouse clicks or arrow keys." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [ - "w = widgets.SelectMultiple(\n", - " description=\"Fruits\",\n", - " options=['Apples', 'Oranges', 'Pears']\n", - ")\n", - "display(w)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "w.value" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "## String widgets" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "There are 4 widgets that can be used to display a string value. Of those, the **`Text` and `Textarea` widgets accept input**. The **`Latex` and `HTML` widgets display the string** as either Latex or HTML respectively, but **do not accept input**." - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "### Text" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "widgets.Text(\n", - " description='String:',\n", - " value='Hello World',\n", - ")" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Textarea" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "widgets.Textarea(\n", - " description='String:',\n", - " value='Hello World',\n", - ")" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "### Latex" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "widgets.Latex(\n", - " value=\"$$\\\\frac{n!}{k!(n-k)!} = \\\\binom{n}{k}$$\",\n", - ")" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### HTML" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "widgets.HTML(\n", - " value=\"Hello World\"\n", - ")" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "## Button" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "widgets.Button(description='Click me')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "[Index](Index.ipynb) - [Back](Widget Basics.ipynb) - [Next](Widget Events.ipynb)" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.4.0" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} diff --git a/examples/Interactive Widgets/Widget Styling.ipynb b/examples/Interactive Widgets/Widget Styling.ipynb deleted file mode 100644 index 47ddadf..0000000 --- a/examples/Interactive Widgets/Widget Styling.ipynb +++ /dev/null @@ -1,585 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "[Index](Index.ipynb) - [Back](Widget Events.ipynb) - [Next](Custom Widget - Hello World.ipynb)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%%html\n", - "" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from IPython.html import widgets\n", - "from IPython.display import display" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "# Widget Styling" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Basic styling" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The widgets distributed with IPython can be styled by setting the following traits:\n", - "\n", - "- width \n", - "- height \n", - "- fore_color \n", - "- back_color \n", - "- border_color \n", - "- border_width \n", - "- border_style \n", - "- font_style \n", - "- font_weight \n", - "- font_size \n", - "- font_family \n", - "\n", - "The example below shows how a `Button` widget can be styled:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "button = widgets.Button(\n", - " description='Hello World!',\n", - " width=100, # Integers are interpreted as pixel measurements.\n", - " height='2em', # em is valid HTML unit of measurement.\n", - " color='lime', # Colors can be set by name,\n", - " background_color='#0022FF', # and also by color code.\n", - " border_color='red')\n", - "display(button)" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "## Parent/child relationships" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "To display widget A inside widget B, widget A must be a child of widget B. Widgets that can contain other widgets have a **`children` attribute**. This attribute can be **set via a keyword argument** in the widget's constructor **or after construction**. Calling display on an **object with children automatically displays those children**, too." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from IPython.display import display\n", - "\n", - "float_range = widgets.FloatSlider()\n", - "string = widgets.Text(value='hi')\n", - "container = widgets.Box(children=[float_range, string])\n", - "\n", - "container.border_color = 'red'\n", - "container.border_style = 'dotted'\n", - "container.border_width = 3\n", - "display(container) # Displays the `container` and all of it's children." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### After the parent is displayed" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "Children **can be added to parents** after the parent has been displayed. The **parent is responsible for rendering its children**." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "container = widgets.Box()\n", - "container.border_color = 'red'\n", - "container.border_style = 'dotted'\n", - "container.border_width = 3\n", - "display(container)\n", - "\n", - "int_range = widgets.IntSlider()\n", - "container.children=[int_range]" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "## Fancy boxes" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "If you need to display a more complicated set of widgets, there are **specialized containers** that you can use. To display **multiple sets of widgets**, you can use an **`Accordion` or a `Tab` in combination with one `Box` per set of widgets** (as seen below). The \"pages\" of these widgets are their children. To set the titles of the pages, one can **call `set_title`**." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Accordion" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "name1 = widgets.Text(description='Location:')\n", - "zip1 = widgets.BoundedIntText(description='Zip:', min=0, max=99999)\n", - "page1 = widgets.Box(children=[name1, zip1])\n", - "\n", - "name2 = widgets.Text(description='Location:')\n", - "zip2 = widgets.BoundedIntText(description='Zip:', min=0, max=99999)\n", - "page2 = widgets.Box(children=[name2, zip2])\n", - "\n", - "accord = widgets.Accordion(children=[page1, page2])\n", - "display(accord)\n", - "\n", - "accord.set_title(0, 'From')\n", - "accord.set_title(1, 'To')" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "### TabWidget" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "name = widgets.Text(description='Name:')\n", - "color = widgets.Dropdown(description='Color:', options=['red', 'orange', 'yellow', 'green', 'blue', 'indigo', 'violet'])\n", - "page1 = widgets.Box(children=[name, color])\n", - "\n", - "age = widgets.IntSlider(description='Age:', min=0, max=120, value=50)\n", - "gender = widgets.RadioButtons(description='Gender:', options=['male', 'female'])\n", - "page2 = widgets.Box(children=[age, gender])\n", - "\n", - "tabs = widgets.Tab(children=[page1, page2])\n", - "display(tabs)\n", - "\n", - "tabs.set_title(0, 'Name')\n", - "tabs.set_title(1, 'Details')" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "# Alignment" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Most widgets have a **`description` attribute**, which allows a label for the widget to be defined.\n", - "The label of the widget **has a fixed minimum width**.\n", - "The text of the label is **always right aligned and the widget is left aligned**:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "display(widgets.Text(description=\"a:\"))\n", - "display(widgets.Text(description=\"aa:\"))\n", - "display(widgets.Text(description=\"aaa:\"))" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "If a **label is longer** than the minimum width, the **widget is shifted to the right**:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "display(widgets.Text(description=\"a:\"))\n", - "display(widgets.Text(description=\"aa:\"))\n", - "display(widgets.Text(description=\"aaa:\"))\n", - "display(widgets.Text(description=\"aaaaaaaaaaaaaaaaaa:\"))" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "If a `description` is **not set** for the widget, the **label is not displayed**:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "display(widgets.Text(description=\"a:\"))\n", - "display(widgets.Text(description=\"aa:\"))\n", - "display(widgets.Text(description=\"aaa:\"))\n", - "display(widgets.Text())" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "## Flex boxes" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Widgets can be aligned using the `FlexBox`, `HBox`, and `VBox` widgets." - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "### Application to widgets" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Widgets display vertically by default:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "buttons = [widgets.Button(description=str(i)) for i in range(3)]\n", - "display(*buttons)" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "### Using hbox" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "To make widgets display horizontally, you need to **child them to a `HBox` widget**." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "container = widgets.HBox(children=buttons)\n", - "display(container)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "By setting the width of the container to 100% and its `pack` to `center`, you can center the buttons." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "container.width = '100%'\n", - "container.pack = 'center'" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "## Visibility" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Sometimes it is necessary to **hide or show widgets** in place, **without having to re-display** the widget.\n", - "The `visible` property of widgets can be used to hide or show **widgets that have already been displayed** (as seen below). The `visible` property can be:\n", - "* `True` - the widget is displayed\n", - "* `False` - the widget is hidden, and the empty space where the widget would be is collapsed\n", - "* `None` - the widget is hidden, and the empty space where the widget would be is shown" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "w1 = widgets.Latex(value=\"First line\")\n", - "w2 = widgets.Latex(value=\"Second line\")\n", - "w3 = widgets.Latex(value=\"Third line\")\n", - "display(w1, w2, w3)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [ - "w2.visible=None" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "w2.visible=False" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "w2.visible=True" - ] - }, - { - "cell_type": "markdown", - "metadata": { - "slideshow": { - "slide_type": "slide" - } - }, - "source": [ - "### Another example" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "In the example below, a form is rendered, which conditionally displays widgets depending on the state of other widgets. Try toggling the student checkbox." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "form = widgets.VBox()\n", - "first = widgets.Text(description=\"First Name:\")\n", - "last = widgets.Text(description=\"Last Name:\")\n", - "\n", - "student = widgets.Checkbox(description=\"Student:\", value=False)\n", - "school_info = widgets.VBox(visible=False, children=[\n", - " widgets.Text(description=\"School:\"),\n", - " widgets.IntText(description=\"Grade:\", min=0, max=12)\n", - " ])\n", - "\n", - "pet = widgets.Text(description=\"Pet's Name:\")\n", - "form.children = [first, last, student, school_info, pet]\n", - "display(form)\n", - "\n", - "def on_student_toggle(name, value):\n", - " if value:\n", - " school_info.visible = True\n", - " else:\n", - " school_info.visible = False\n", - "student.on_trait_change(on_student_toggle, 'value')\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "[Index](Index.ipynb) - [Back](Widget Events.ipynb) - [Next](Custom Widget - Hello World.ipynb)" - ] - } - ], - "metadata": { - "cell_tags": [ - [ - "", - null - ] - ], - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.4.2" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} diff --git a/examples/Interactive Widgets/images/MultilanguageKernels.graffle b/examples/Interactive Widgets/images/MultilanguageKernels.graffle deleted file mode 100644 index c05b773..0000000 --- a/examples/Interactive Widgets/images/MultilanguageKernels.graffle +++ /dev/null @@ -1,442 +0,0 @@ - - - - - ActiveLayerIndex - 0 - ApplicationVersion - - com.omnigroup.OmniGraffle - 139.18.0.187838 - - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {576, 733}} - Class - SolidGraphic - ID - 2 - Style - - shadow - - Draws - NO - - stroke - - Draws - NO - - - - BaseZoom - 0 - CanvasOrigin - {0, 0} - ColumnAlign - 1 - ColumnSpacing - 36 - CreationDate - 2014-05-28 16:41:42 +0000 - Creator - bgranger - DisplayScale - 1 0/72 in = 1 0/72 in - GraphDocumentVersion - 8 - GraphicsList - - - Class - LineGraphic - Head - - ID - 4 - - ID - 8 - Points - - {301.5, 284.5} - {370.03931790895228, 313.41502474283925} - - Style - - stroke - - HeadArrow - 0 - Legacy - - Pattern - 1 - TailArrow - 0 - - - - - Class - LineGraphic - Head - - ID - 3 - - ID - 7 - Points - - {302, 282} - {370.00010962762133, 280.57591393450008} - - Style - - stroke - - HeadArrow - 0 - Legacy - - Pattern - 1 - TailArrow - 0 - - - - - Class - LineGraphic - Head - - ID - 1 - - ID - 6 - Points - - {301.5, 280.5} - {370.04817900607623, 248.01101932524512} - - Style - - stroke - - HeadArrow - 0 - Legacy - - Pattern - 1 - TailArrow - 0 - - - - - Bounds - {{241.5, 262}, {58, 36}} - Class - ShapedGraphic - FontInfo - - Font - Helvetica - Size - 12 - - ID - 5 - Shape - Rectangle - Style - - shadow - - Draws - NO - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 -\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset0 xkcd-Regular;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs20 \cf0 Frontend} - - - - Bounds - {{370.5, 307}, {54, 36}} - Class - ShapedGraphic - FontInfo - - Font - Helvetica - Size - 12 - - ID - 4 - Shape - Rectangle - Style - - shadow - - Draws - NO - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 -\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset0 xkcd-Regular;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs20 \cf0 R\ -Kernel} - - - - Bounds - {{370.5, 262}, {54, 36}} - Class - ShapedGraphic - FontInfo - - Font - Helvetica - Size - 12 - - ID - 3 - Shape - Rectangle - Style - - shadow - - Draws - NO - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 -\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset0 xkcd-Regular;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs20 \cf0 Julia\ -Kernel} - - - - Bounds - {{370.5, 217}, {54, 36}} - Class - ShapedGraphic - FontInfo - - Font - Helvetica - Size - 12 - - ID - 1 - Shape - Rectangle - Style - - shadow - - Draws - NO - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 -\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset0 xkcd-Regular;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs20 \cf0 Python Kernel} - - - - GridInfo - - GuidesLocked - NO - GuidesVisible - YES - HPages - 1 - ImageCounter - 1 - KeepToScale - - Layers - - - Lock - NO - Name - Layer 1 - Print - YES - View - YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - LinksVisible - NO - MagnetsVisible - NO - MasterSheets - - ModificationDate - 2014-05-28 16:45:20 +0000 - Modifier - bgranger - NotesVisible - NO - Orientation - 2 - OriginVisible - NO - PageBreaks - YES - PrintInfo - - NSBottomMargin - - float - 41 - - NSHorizonalPagination - - coded - BAtzdHJlYW10eXBlZIHoA4QBQISEhAhOU051bWJlcgCEhAdOU1ZhbHVlAISECE5TT2JqZWN0AIWEASqEhAFxlwCG - - NSLeftMargin - - float - 18 - - NSPaperSize - - size - {612, 792} - - NSPrintReverseOrientation - - int - 0 - - NSRightMargin - - float - 18 - - NSTopMargin - - float - 18 - - - PrintOnePage - - ReadOnly - NO - RowAlign - 1 - RowSpacing - 36 - SheetTitle - Canvas 1 - SmartAlignmentGuidesActive - YES - SmartDistanceGuidesActive - YES - UniqueID - 1 - UseEntirePage - - VPages - 1 - WindowInfo - - CurrentSheet - 0 - ExpandedCanvases - - - name - Canvas 1 - - - Frame - {{387, 6}, {710, 872}} - ListView - - OutlineWidth - 142 - RightSidebar - - ShowRuler - - Sidebar - - SidebarWidth - 120 - VisibleRegion - {{196.5, 107}, {287.5, 366.5}} - Zoom - 2 - ZoomValues - - - Canvas 1 - 2 - 1 - - - - - diff --git a/examples/Interactive Widgets/images/MultilanguageKernels.png b/examples/Interactive Widgets/images/MultilanguageKernels.png deleted file mode 100644 index 1a35ecdab540aff249e0b74822ff3b1669131595..0000000000000000000000000000000000000000 GIT binary patch literal 0 Hc$@N=~Y~n(8uc_*5r%=QJh-IrTN67b5vApEM3YB~m6p z873@*#!Vbf5*veF!&I#YS}L5vL;@Q*ILLSj@e*Bms8>Z?0=yPujd)hgd9|MTJgl{` zyw|+6Y;oqh)CQ&e6a?sV(S#28SfGi0dep0ni8VfO3xkgijj9RVvt@1$kh&9xnSbgO z$jB&@9;*L)3Jfr9Ut#K2rg2_;^-rMS7NdFxg(R`S#qURh2Zl*jtsf*{e+7(Pr_i&9 zv9aS8AQo0p>>#fqI_FtJBdU=ztMflY84c?koBkUYTK;e;A}&-*nO%A>^MPZS_h z#<&DyDcushKVtrHQLlP$%*L49udo&2AwPB9@ctVsUce9gR0(KmE!&K*2`AOWCns8q zyI=3Smp4fLRG$S#ydKprXpX0HMPhQbHf)ZoSUPc`{!(dYk<@pks6#c_z7qy-RVkg3 zLtVl_HLPb}k%rmmCk|}Cr$vrFKDKd&&a(zG?sGrp1=){vhw<|9gU*ID($(>`I^lk_#q#Dn*8ItXK3FLjC7beBa~lIO##awK4Ju^zVS_Q51edxyq=XU*%n+u z)aE|CEuwQMrci^vBn06R1lSo#O$4F~anX29Drk%k)(I5fVag>k<59m8wZ=*(IR1fs z7hYhLj*mM;uoJEovt_Jdv}i2Lx{z*?t|5=N%Vmzv5qKX|Y`jogqDfmN`%H8M>f<=8;__Bunt1|kV;NvL#2jJh_Hw79D>pJQ6;cU$%P^e-E%; zuueHj^QKlxUP^OMGXUn%8hr4VeJOcrfl=ud?o|ye0%;UTZZ-4?gvv-{7N!_S7-t$s z8V7H44ysUhBnBonV=9#kAAn}5i$4&G&J}ykwlpX-eEMzno0UY0`}^Zu(!t<0*?#9W zq8YWB4ww#13?>BEk9~gE$7*=T@tL4FCMl*pChqFvZtK*})C$)ROa0dl`jmSHI|iQ= ziWKt{=#;n$d3E~*?1h{P+X|(5Rx27SBdcYr#|2{RKLd+t<@!N=D>PvM84wn(p* z2dkU@LxIC2!c4+0LIOf{!nBV=oCKM6nWLHD%)O7p4PUj98v)v2?Y%~Q)|8CX2{m)- z`e@#Q>Y9^M<{827Yn1}kCS~=S7DbBnlURC*Kpk$8X5D60cTpud7EKm|A1Y@Bf+~5{ zdEdLGx^?`=dZx*L8%B#{^_CSx6?7Zr8WnAsP*x;V&M*{d7x4}8m^3*?T?p>z(10Ry zWD;d!M-^0m&9AE&woNrmy|>=|O7pRjvwgS_w5p|5CApZ-+s{AZQ{?Y1?oJdg%W>kZG-F;yWB>wPR90S+cgMMvm4b z{Upj{5%PPybG&(Ge5V=5trlXZ1fVG}#=yg&U|xMCWk>tyVM1XkcF%3Vc3|z7!18m; zBO{s|T7p#caB^wV9^n+Seni@jF9~0MG$-B~pIM!i3Vsrd6pR(b>T>I<^kum-dWLy+ zdsw?#I^TO(dQ<}N0ICr8k-h^Y0UGdv$n1!iaIS#GT>K=X`?f_v4fNMYtiE!ve9g5%t2-F5l++&nn7B8@xEFh&cW3sL07wg|3z-p58_

Bk+1jg?5pUgjY<0PY3 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 V9Zn|}qM&QqbT1lRDAB?a{tJ3mG#3B> diff --git a/examples/Interactive Widgets/images/ParallelKernels.graffle b/examples/Interactive Widgets/images/ParallelKernels.graffle deleted file mode 100644 index 7dd686d..0000000 --- a/examples/Interactive Widgets/images/ParallelKernels.graffle +++ /dev/null @@ -1,876 +0,0 @@ - - - - - ActiveLayerIndex - 0 - ApplicationVersion - - com.omnigroup.OmniGraffle - 139.18.0.187838 - - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {576, 733}} - Class - SolidGraphic - FontInfo - - Font - xkcd-Regular - Size - 11 - - ID - 2 - Style - - shadow - - Draws - NO - - stroke - - Draws - NO - - - - BaseZoom - 0 - CanvasOrigin - {0, 0} - ColumnAlign - 1 - ColumnSpacing - 36 - CreationDate - 2014-05-27 22:35:15 +0000 - Creator - bgranger - DisplayScale - 1 0/72 in = 1 0/72 in - GraphDocumentVersion - 8 - GraphicsList - - - Class - LineGraphic - ID - 24 - Points - - {222.5, 377.5} - {262, 424.66666666666669} - - Style - - stroke - - HeadArrow - 0 - Legacy - - Pattern - 1 - TailArrow - 0 - - - Tail - - ID - 23 - - - - Class - LineGraphic - Head - - ID - 4 - - ID - 23 - Points - - {222.5, 377.5} - {261.50992666237363, 385.39132104238854} - - Style - - stroke - - HeadArrow - 0 - Legacy - - Pattern - 1 - TailArrow - 0 - - - - - Class - LineGraphic - Head - - ID - 3 - - ID - 22 - Points - - {223.5, 376.5} - {261.51605222709946, 366.62761434412533} - - Style - - stroke - - HeadArrow - 0 - Legacy - - Pattern - 1 - TailArrow - 0 - - - Tail - - ID - 21 - - - - Class - LineGraphic - ID - 21 - Points - - {223.5, 376.5} - {262, 323.33333333333331} - - Style - - stroke - - HeadArrow - 0 - Legacy - - Pattern - 1 - TailArrow - 0 - - - - - Class - LineGraphic - Head - - ID - 18 - - ID - 20 - Points - - {136, 376.24998788995731} - {167.5, 376.24998788995731} - - Style - - stroke - - HeadArrow - 0 - Legacy - - Pattern - 1 - TailArrow - 0 - - - Tail - - ID - 19 - - - - Bounds - {{66.5, 364.5}, {69, 23.5}} - Class - ShapedGraphic - ID - 19 - Shape - Rectangle - Style - - shadow - - Draws - NO - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 -\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset0 xkcd-Regular;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 FRONTEND} - - - - Bounds - {{168, 364.5}, {52, 23.5}} - Class - ShapedGraphic - ID - 18 - Shape - Rectangle - Style - - shadow - - Draws - NO - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 -\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset0 xkcd-Regular;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 Kernel} - - - - Bounds - {{436, 410}, {52, 23.5}} - Class - ShapedGraphic - ID - 17 - Shape - Rectangle - Style - - shadow - - Draws - NO - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 -\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset0 xkcd-Regular;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 Kernel} - - - - Bounds - {{436, 379}, {52, 23.5}} - Class - ShapedGraphic - ID - 16 - Shape - Rectangle - Style - - shadow - - Draws - NO - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 -\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset0 xkcd-Regular;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 Kernel} - - - - Bounds - {{436, 348}, {52, 23.5}} - Class - ShapedGraphic - ID - 15 - Shape - Rectangle - Style - - shadow - - Draws - NO - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 -\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset0 xkcd-Regular;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 Kernel} - - - - Bounds - {{436, 317}, {52, 23.5}} - Class - ShapedGraphic - ID - 14 - Shape - Rectangle - Style - - shadow - - Draws - NO - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 -\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset0 xkcd-Regular;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 Kernel} - - - - Bounds - {{378, 410}, {52, 23.5}} - Class - ShapedGraphic - ID - 13 - Shape - Rectangle - Style - - shadow - - Draws - NO - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 -\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset0 xkcd-Regular;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 Kernel} - - - - Bounds - {{378, 379}, {52, 23.5}} - Class - ShapedGraphic - ID - 12 - Shape - Rectangle - Style - - shadow - - Draws - NO - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 -\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset0 xkcd-Regular;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 Kernel} - - - - Bounds - {{378, 348}, {52, 23.5}} - Class - ShapedGraphic - ID - 11 - Shape - Rectangle - Style - - shadow - - Draws - NO - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 -\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset0 xkcd-Regular;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 Kernel} - - - - Bounds - {{378, 317}, {52, 23.5}} - Class - ShapedGraphic - ID - 10 - Shape - Rectangle - Style - - shadow - - Draws - NO - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 -\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset0 xkcd-Regular;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 Kernel} - - - - Bounds - {{320, 410}, {52, 23.5}} - Class - ShapedGraphic - ID - 9 - Shape - Rectangle - Style - - shadow - - Draws - NO - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 -\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset0 xkcd-Regular;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 Kernel} - - - - Bounds - {{320, 379}, {52, 23.5}} - Class - ShapedGraphic - ID - 8 - Shape - Rectangle - Style - - shadow - - Draws - NO - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 -\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset0 xkcd-Regular;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 Kernel} - - - - Bounds - {{320, 348}, {52, 23.5}} - Class - ShapedGraphic - ID - 7 - Shape - Rectangle - Style - - shadow - - Draws - NO - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 -\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset0 xkcd-Regular;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 Kernel} - - - - Bounds - {{320, 317}, {52, 23.5}} - Class - ShapedGraphic - ID - 6 - Shape - Rectangle - Style - - shadow - - Draws - NO - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 -\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset0 xkcd-Regular;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 Kernel} - - - - Bounds - {{262, 410}, {52, 23.5}} - Class - ShapedGraphic - ID - 5 - Shape - Rectangle - Style - - shadow - - Draws - NO - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 -\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset0 xkcd-Regular;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 Kernel} - - - - Bounds - {{262, 379}, {52, 23.5}} - Class - ShapedGraphic - ID - 4 - Shape - Rectangle - Style - - shadow - - Draws - NO - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 -\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset0 xkcd-Regular;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 Kernel} - - - - Bounds - {{262, 348}, {52, 23.5}} - Class - ShapedGraphic - ID - 3 - Shape - Rectangle - Style - - shadow - - Draws - NO - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 -\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset0 xkcd-Regular;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 Kernel} - - - - Bounds - {{262, 317}, {52, 23.5}} - Class - ShapedGraphic - ID - 1 - Shape - Rectangle - Style - - shadow - - Draws - NO - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 -\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset0 xkcd-Regular;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 Kernel} - - - - GridInfo - - GuidesLocked - NO - GuidesVisible - YES - HPages - 1 - ImageCounter - 1 - KeepToScale - - Layers - - - Lock - NO - Name - Layer 1 - Print - YES - View - YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - LinksVisible - NO - MagnetsVisible - NO - MasterSheets - - ModificationDate - 2014-05-27 22:41:37 +0000 - Modifier - bgranger - NotesVisible - NO - Orientation - 2 - OriginVisible - NO - PageBreaks - YES - PrintInfo - - NSBottomMargin - - float - 41 - - NSHorizonalPagination - - coded - BAtzdHJlYW10eXBlZIHoA4QBQISEhAhOU051bWJlcgCEhAdOU1ZhbHVlAISECE5TT2JqZWN0AIWEASqEhAFxlwCG - - NSLeftMargin - - float - 18 - - NSPaperSize - - size - {612, 792} - - NSPrintReverseOrientation - - int - 0 - - NSRightMargin - - float - 18 - - NSTopMargin - - float - 18 - - - PrintOnePage - - ReadOnly - NO - RowAlign - 1 - RowSpacing - 36 - SheetTitle - Canvas 1 - SmartAlignmentGuidesActive - YES - SmartDistanceGuidesActive - YES - UniqueID - 1 - UseEntirePage - - VPages - 1 - WindowInfo - - CurrentSheet - 0 - ExpandedCanvases - - - name - Canvas 1 - - - Frame - {{367, 6}, {710, 872}} - ListView - - OutlineWidth - 142 - RightSidebar - - ShowRuler - - Sidebar - - SidebarWidth - 120 - VisibleRegion - {{0, 0}, {575, 733}} - Zoom - 1 - ZoomValues - - - Canvas 1 - 1 - 1.5 - - - - - diff --git a/examples/Interactive Widgets/images/ParallelKernels.png b/examples/Interactive Widgets/images/ParallelKernels.png deleted file mode 100644 index 3be471c28c007614124572244bc6d1bd33c3434b..0000000000000000000000000000000000000000 GIT binary patch literal 0 Hc$@Cb40@8iy?vn0KN$G|?7k&M{?{#-) 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 - - - - ActiveLayerIndex - 0 - ApplicationVersion - - com.omnigroup.OmniGraffle - 139.18.0.187838 - - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {576, 733}} - Class - SolidGraphic - ID - 2 - Style - - shadow - - Draws - NO - - stroke - - Draws - NO - - - - BaseZoom - 0 - CanvasOrigin - {0, 0} - ColumnAlign - 1 - ColumnSpacing - 36 - CreationDate - 2013-11-07 05:58:18 +0000 - Creator - bgranger - DisplayScale - 1 0/72 in = 1.0000 in - GraphDocumentVersion - 8 - GraphicsList - - - Class - LineGraphic - Head - - ID - 28 - - ID - 33 - Points - - {241.59308245327554, 385.40907928007584} - {270.40691754672446, 347.59092071992416} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - Width - 2 - - - Tail - - ID - 30 - - - - Class - LineGraphic - Head - - ID - 30 - - ID - 32 - Points - - {313.49998123780057, 408.50001815456494} - {262.50001876219557, 408.50001815456494} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - Width - 2 - - - Tail - - ID - 29 - - - - Class - LineGraphic - Head - - ID - 29 - - ID - 31 - Points - - {305.59308378474134, 347.59092246747298} - {334.40691621525866, 385.40907753252702} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - LineType - 1 - TailArrow - 0 - Width - 2 - - - Tail - - ID - 28 - - - - Bounds - {{186.5, 383.5}, {75, 50}} - Class - ShapedGraphic - ID - 30 - Shape - Circle - Style - - shadow - - Draws - NO - - stroke - - Width - 2 - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 -\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset0 xkcd-Regular;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs22 \cf0 ComputE} - VerticalPad - 0 - - - - Bounds - {{314.5, 383.5}, {75, 50}} - Class - ShapedGraphic - ID - 29 - Shape - Circle - Style - - shadow - - Draws - NO - - stroke - - Width - 2 - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 -\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset0 xkcd-Regular;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs22 \cf0 Interact} - VerticalPad - 0 - - - - Bounds - {{250.5, 299.5}, {75, 50}} - Class - ShapedGraphic - ID - 28 - Shape - Circle - Style - - shadow - - Draws - NO - - stroke - - Width - 2 - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 -\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset0 xkcd-Regular;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs22 \cf0 Visualize} - VerticalPad - 0 - - - - GridInfo - - GuidesLocked - NO - GuidesVisible - YES - HPages - 1 - ImageCounter - 1 - KeepToScale - - Layers - - - Lock - NO - Name - Layer 1 - Print - YES - View - YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - LinksVisible - NO - MagnetsVisible - NO - MasterSheets - - ModificationDate - 2014-05-28 16:49:32 +0000 - Modifier - bgranger - NotesVisible - NO - Orientation - 2 - OriginVisible - NO - PageBreaks - YES - PrintInfo - - NSBottomMargin - - float - 41 - - NSHorizonalPagination - - coded - BAtzdHJlYW10eXBlZIHoA4QBQISEhAhOU051bWJlcgCEhAdOU1ZhbHVlAISECE5TT2JqZWN0AIWEASqEhAFxlwCG - - NSLeftMargin - - float - 18 - - NSPaperSize - - size - {612, 792} - - NSPrintReverseOrientation - - int - 0 - - NSRightMargin - - float - 18 - - NSTopMargin - - float - 18 - - - PrintOnePage - - ReadOnly - NO - RowAlign - 1 - RowSpacing - 36 - SheetTitle - Canvas 1 - SmartAlignmentGuidesActive - YES - SmartDistanceGuidesActive - YES - UniqueID - 1 - UseEntirePage - - VPages - 1 - WindowInfo - - CurrentSheet - 0 - ExpandedCanvases - - - name - Canvas 1 - - - Frame - {{340, 6}, {710, 872}} - ListView - - OutlineWidth - 142 - RightSidebar - - ShowRuler - - Sidebar - - SidebarWidth - 120 - VisibleRegion - {{0, 0}, {575, 733}} - Zoom - 1 - ZoomValues - - - Canvas 1 - 1 - 1 - - - - - diff --git a/examples/Interactive Widgets/images/VizInteractCompute.png b/examples/Interactive Widgets/images/VizInteractCompute.png deleted file mode 100644 index 5c793a5820dd7e03eedfac10e8b3f4c8f5f4672f..0000000000000000000000000000000000000000 GIT binary patch literal 0 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�tm-7(A;!F&K9{QSH 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 ABLDyZ diff --git a/examples/Interactive Widgets/images/WidgetArch.graffle b/examples/Interactive Widgets/images/WidgetArch.graffle deleted file mode 100644 index c371b39..0000000 --- a/examples/Interactive Widgets/images/WidgetArch.graffle +++ /dev/null @@ -1,322 +0,0 @@ - - - - - ActiveLayerIndex - 0 - ApplicationVersion - - com.omnigroup.OmniGraffle - 139.18.0.187838 - - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {576, 733}} - Class - SolidGraphic - ID - 2 - Style - - shadow - - Draws - NO - - stroke - - Draws - NO - - - - BaseZoom - 0 - CanvasOrigin - {0, 0} - ColumnAlign - 1 - ColumnSpacing - 36 - CreationDate - 2013-11-09 20:06:39 +0000 - Creator - bgranger - DisplayScale - 1 0/72 in = 1.0000 in - GraphDocumentVersion - 8 - GraphicsList - - - Bounds - {{212.5, 269.5}, {124.5, 40}} - Class - ShapedGraphic - ID - 5 - Shape - Rectangle - Style - - shadow - - Draws - NO - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 -\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset0 xkcd-Regular;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 Interact} - - - - Bounds - {{212.5, 318}, {124.5, 40}} - Class - ShapedGraphic - ID - 4 - Shape - Rectangle - Style - - shadow - - Draws - NO - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 -\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset0 xkcd-Regular;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 Widgets} - - - - Bounds - {{212.5, 366.5}, {124.5, 40}} - Class - ShapedGraphic - ID - 3 - Shape - Rectangle - Style - - shadow - - Draws - NO - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 -\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset0 xkcd-Regular;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 Comm} - - - - Bounds - {{212.5, 415}, {124.5, 40}} - Class - ShapedGraphic - ID - 1 - Shape - Rectangle - Style - - shadow - - Draws - NO - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf190 -\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset0 xkcd-Regular;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 WebSockets/ZeroMQ} - - - - GridInfo - - GuidesLocked - NO - GuidesVisible - YES - HPages - 1 - ImageCounter - 1 - KeepToScale - - Layers - - - Lock - NO - Name - Layer 1 - Print - YES - View - YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - LinksVisible - NO - MagnetsVisible - NO - MasterSheets - - ModificationDate - 2014-05-28 16:53:16 +0000 - Modifier - bgranger - NotesVisible - NO - Orientation - 2 - OriginVisible - NO - PageBreaks - YES - PrintInfo - - NSBottomMargin - - float - 41 - - NSHorizonalPagination - - coded - BAtzdHJlYW10eXBlZIHoA4QBQISEhAhOU051bWJlcgCEhAdOU1ZhbHVlAISECE5TT2JqZWN0AIWEASqEhAFxlwCG - - NSLeftMargin - - float - 18 - - NSPaperSize - - size - {612, 792} - - NSPrintReverseOrientation - - int - 0 - - NSRightMargin - - float - 18 - - NSTopMargin - - float - 18 - - - PrintOnePage - - ReadOnly - NO - RowAlign - 1 - RowSpacing - 36 - SheetTitle - Canvas 1 - SmartAlignmentGuidesActive - YES - SmartDistanceGuidesActive - YES - UniqueID - 1 - UseEntirePage - - VPages - 1 - WindowInfo - - CurrentSheet - 0 - ExpandedCanvases - - - name - Canvas 1 - - - Frame - {{367, 6}, {710, 872}} - ListView - - OutlineWidth - 142 - RightSidebar - - ShowRuler - - Sidebar - - SidebarWidth - 120 - VisibleRegion - {{143.5, 183}, {287.5, 366.5}} - Zoom - 2 - ZoomValues - - - Canvas 1 - 2 - 1 - - - - - diff --git a/examples/Interactive Widgets/images/WidgetArch.png b/examples/Interactive Widgets/images/WidgetArch.png deleted file mode 100644 index 9fadae7fceb547556600077decca2abf53e616bd..0000000000000000000000000000000000000000 GIT binary patch literal 0 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 diff --git a/examples/Interactive Widgets/images/WidgetModelView.graffle b/examples/Interactive Widgets/images/WidgetModelView.graffle deleted file mode 100644 index 8a559c5..0000000 --- a/examples/Interactive Widgets/images/WidgetModelView.graffle +++ /dev/null @@ -1,523 +0,0 @@ - - - - - ActiveLayerIndex - 0 - ApplicationVersion - - com.omnigroup.OmniGraffle - 139.18.0.187838 - - AutoAdjust - - BackgroundGraphic - - Bounds - {{0, 0}, {576, 733}} - Class - SolidGraphic - ID - 2 - Style - - shadow - - Draws - NO - - stroke - - Draws - NO - - - - BaseZoom - 0 - CanvasOrigin - {0, 0} - ColumnAlign - 1 - ColumnSpacing - 36 - CreationDate - 2014-07-06 03:46:05 +0000 - Creator - bgranger - DisplayScale - 1 0/72 in = 1 0/72 in - GraphDocumentVersion - 8 - GraphicsList - - - Bounds - {{230.33332316080816, 214.66666666666825}, {171, 15}} - Class - ShapedGraphic - FitText - YES - Flow - Resize - ID - 21 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset0 xkcd-Regular;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 frontend (HTML/JavaScript)} - VerticalPad - 0 - - Wrap - NO - - - Bounds - {{70.166664123535156, 214.66667683919241}, {95, 15}} - Class - ShapedGraphic - FitText - YES - Flow - Resize - ID - 20 - Shape - Rectangle - Style - - fill - - Draws - NO - - shadow - - Draws - NO - - stroke - - Draws - NO - - - Text - - Pad - 0 - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset0 xkcd-Regular;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 Kernel (Python)} - VerticalPad - 0 - - Wrap - NO - - - Class - LineGraphic - Head - - ID - 8 - - ID - 18 - Points - - {302.62321350991539, 355.71147093607129} - {329.06618954727776, 386.2881834750354} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - Pattern - 1 - TailArrow - FilledArrow - - - Tail - - ID - 6 - - - - Class - LineGraphic - Head - - ID - 7 - - ID - 16 - Points - - {302.60973386333222, 314.95496159151998} - {329.03248543221167, 284.3780603888232} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - Pattern - 1 - TailArrow - FilledArrow - - - Tail - - ID - 6 - - - - Class - LineGraphic - Head - - ID - 6 - - ID - 15 - Points - - {143.33332567510072, 335.32575675071013} - {229.83332831581788, 335.30805933679687} - - Style - - stroke - - HeadArrow - FilledArrow - Legacy - - Pattern - 1 - TailArrow - FilledArrow - - - Tail - - ID - 5 - - - - Bounds - {{291.99996948242188, 386.66658655802428}, {109.33333587646484, 40}} - Class - ShapedGraphic - ID - 8 - Shape - Rectangle - Style - - shadow - - Draws - NO - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset0 xkcd-Regular;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 widget View} - - - - Bounds - {{291.99998982747394, 243.99996948241886}, {109.33333587646484, 40}} - Class - ShapedGraphic - ID - 7 - Shape - Rectangle - Style - - shadow - - Draws - NO - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset0 xkcd-Regular;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 widget View} - - - - Bounds - {{230.33332824706363, 315.33327865600415}, {109.33333587646484, 40}} - Class - ShapedGraphic - ID - 6 - Shape - Rectangle - Style - - shadow - - Draws - NO - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset0 xkcd-Regular;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 widget model} - - - - Bounds - {{70.166661580401851, 315.33329264322913}, {72.666664123535156, 40}} - Class - ShapedGraphic - ID - 5 - Shape - Rectangle - Style - - shadow - - Draws - NO - - - Text - - Text - {\rtf1\ansi\ansicpg1252\cocoartf1265\cocoasubrtf200 -\cocoascreenfonts1{\fonttbl\f0\fnil\fcharset0 xkcd-Regular;} -{\colortbl;\red255\green255\blue255;} -\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc - -\f0\fs24 \cf0 widget} - - - - GridInfo - - GuidesLocked - NO - GuidesVisible - YES - HPages - 1 - ImageCounter - 1 - KeepToScale - - Layers - - - Lock - NO - Name - Layer 1 - Print - YES - View - YES - - - LayoutInfo - - Animate - NO - circoMinDist - 18 - circoSeparation - 0.0 - layoutEngine - dot - neatoSeparation - 0.0 - twopiSeparation - 0.0 - - LinksVisible - NO - MagnetsVisible - NO - MasterSheets - - ModificationDate - 2014-07-06 03:57:02 +0000 - Modifier - bgranger - NotesVisible - NO - Orientation - 2 - OriginVisible - NO - PageBreaks - YES - PrintInfo - - NSBottomMargin - - float - 41 - - NSHorizonalPagination - - coded - BAtzdHJlYW10eXBlZIHoA4QBQISEhAhOU051bWJlcgCEhAdOU1ZhbHVlAISECE5TT2JqZWN0AIWEASqEhAFxlwCG - - NSLeftMargin - - float - 18 - - NSPaperSize - - size - {612, 792} - - NSPrintReverseOrientation - - int - 0 - - NSRightMargin - - float - 18 - - NSTopMargin - - float - 18 - - - PrintOnePage - - ReadOnly - NO - RowAlign - 1 - RowSpacing - 36 - SheetTitle - Canvas 1 - SmartAlignmentGuidesActive - YES - SmartDistanceGuidesActive - YES - UniqueID - 1 - UseEntirePage - - VPages - 1 - WindowInfo - - CurrentSheet - 0 - ExpandedCanvases - - - name - Canvas 1 - - - Frame - {{17, 3}, {1112, 875}} - ListView - - OutlineWidth - 142 - RightSidebar - - ShowRuler - - Sidebar - - SidebarWidth - 120 - VisibleRegion - {{0, 105.33333333333333}, {556, 490.66666666666669}} - Zoom - 1.5 - ZoomValues - - - Canvas 1 - 1.5 - 1 - - - - - diff --git a/examples/Interactive Widgets/images/WidgetModelView.png b/examples/Interactive Widgets/images/WidgetModelView.png deleted file mode 100644 index f641f241a1faa649f8d5ac17720f4a6b65a01e0a..0000000000000000000000000000000000000000 GIT binary patch literal 0 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 diff --git a/examples/Notebook/Configuring the Notebook and Server.ipynb b/examples/Notebook/Configuring the Notebook and Server.ipynb deleted file mode 100644 index f84971d..0000000 --- a/examples/Notebook/Configuring the Notebook and Server.ipynb +++ /dev/null @@ -1,295 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Configuring the Notebook and Server" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Configuring the IPython Notebook" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The notebook web server can also be configured using IPython profiles and configuration files. The Notebook web server configuration options are set in a file named `ipython_notebook_config.py` in your IPython *profile directory*. The profile directory is a subfolder of your IPython directory, which itself is usually `.ipython` in your home directory.\n", - "\n", - "You can display the location of your default profile directory by running the command:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "!ipython profile locate default" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The default version of `ipython_notebook_config.py` lists all of the options available along with documentation for each. Changes made to that file will affect all notebook servers run under that profile. Command line options always override those set in configuration files.\n", - "\n", - "You can create a new profile:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "!ipython profile create my_profile" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "And then view its location:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "!ipython profile locate my_profile" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "To start the notebook server using a given profile, run the following:\n", - "\n", - " ipython notebook --profile=my_profile" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "More details about IPython configuration files and profiles can be found [here](http://ipython.org/ipython-doc/dev/config/intro.html)." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Securing the notebook server" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The IPython Notebook allows arbitrary code execution on the computer running it. Thus, the notebook web server should never be run on the open internet without first securing it. By default, the notebook server only listens on local network interface (`127.0.0.1`) There are two steps required to secure the notebook server:\n", - "\n", - "1. Setting a password\n", - "2. Encrypt network traffic using SSL" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Setting a password" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You can protect your notebook server with a simple single password by setting the `NotebookApp.password` configurable. You can prepare a hashed password using the function `IPython.lib.passwd`:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "from IPython.lib import passwd\n", - "password = passwd(\"secret\")\n", - "password" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You can then add this to your `ipython_notebook_config.py`:\n", - "\n", - "```python\n", - "# Password to use for web authentication\n", - "c = get_config()\n", - "c.NotebookApp.password = \n", - "u'sha1:6c2164fc2b22:ed55ecf07fc0f985ab46561483c0e888e8964ae6'\n", - "```" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Using SSL/HTTPS" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "When using a password, it is a good idea to also use SSL, so that your \n", - "password is not sent unencrypted by your browser to the web server. When running the notebook on the public internet this is absolutely required.\n", - "\n", - "The first step is to generate an SSL certificate. A self-signed certificate can be generated with ``openssl``. For example, the following command will create a certificate valid for 365 days with both the key and certificate data written to the same file:\n", - "\n", - " openssl req -x509 -nodes -days 365 -newkey rsa:1024 -keyout mycert.pem -out mycert.pem\n", - "\n", - "In most cases, you should run this command in your profile directory, which will make it easy to use the generated key and certificate.\n", - "\n", - "When you connect to a notebook server over HTTPS using a self-signed certificate, your browser will warn you of a dangerous certificate because it is self-signed. If you want to have a fully compliant certificate that will not raise warnings, it is possible (but rather involved) to obtain one,\n", - "as explained in detail in [this tutorial](http://arstechnica.com/security/news/2009/12/how-to-get-set-with-a-secure-sertificate-for-free.ars)\n", - "\t\n", - "When you enable SSL support, you will need to access the notebook server over ``https://``, rather than plain ``http://``. The startup message from the notebook server prints the correct URL, but it is easy to overlook and think the server is for some reason non-responsive.\n", - "\n", - "Once you have generated the key and certificate, you can configure the notebook server to use them, by adding the following to `ipython_notebook_config.py`:\n", - "\n", - "```python\n", - "# The full path to an SSL/TLS certificate file.\n", - "c.NotebookApp.certfile = u'/Users/bgranger/.ipython/profile_my_profile/mycert.crt'\n", - "\n", - "# The full path to a private key file for usage with SSL/TLS.\n", - "c.NotebookApp.keyfile = u'/Users/bgranger/.ipython/profile_my_profile/mycert.key'\n", - "```" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Running a public notebook server" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "
\n", - "Don't run a public notebook server unless you first secure it with a password and SSL/HTTPS as described above\n", - "
\n", - "\n", - "By default the notebook server only listens on the `localhost/127.0.0.1` network interface. If you want to connect to the notebook from another computers, or over the internet, you need to configure the notebook server to listen on all network interfaces and not open the browser. You will often also want to disable the automatic launching of the web browser.\n", - "\n", - "This can be accomplished by passing a command line options.\n", - "\n", - " ipython notebook --ip=* --no-browser\n", - "\n", - "You can also add the following to your`ipython_notebook_config.py` file:\n", - "\n", - "```python\n", - "c.NotebookApp.ip = '*'\n", - "c.NotebookApp.open_browser = False\n", - "```" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Running with a different URL prefix" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The notebook dashboard typically lives at the URL `http://localhost:8888/tree`. If you prefer that it lives, together with the \n", - "rest of the notebook web application, under a base URL prefix, such as `http://localhost:8888/ipython/tree`, you can do so by adding the following lines to your `ipython_notebook_config.py` file.\n", - "\n", - "```python\n", - "c.NotebookApp.base_url = '/ipython/'\n", - "c.NotebookApp.webapp_settings = {'static_url_prefix':'/ipython/static/'}\n", - "```" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Using a different notebook store" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "By default, the notebook server stores the notebook documents that it saves as files in the working directory of the notebook server, also known as the\n", - "`notebook_dir`. This logic is implemented in the `FileNotebookManager` class. However, the server can be configured to use a different notebook manager class, which can store the notebooks in a different format. \n", - "\n", - "The [bookstore](https://github.com/rgbkrk/bookstore) package currently allows users to store notebooks on Rackspace CloudFiles or OpenStack Swift based object stores.\n", - "\n", - "Writing a notebook manager is as simple as extending the base class `NotebookManager`. The [simple_notebook_manager](https://github.com/khinsen/simple_notebook_manager) provides a great example\n", - "of an in memory notebook manager, created solely for the purpose of\n", - "illustrating the notebook manager API." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Known issues" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "When behind a proxy, especially if your system or browser is set to autodetect the proxy, the notebook web application might fail to connect to the server's websockets, and present you with a warning at startup. In this case, you need to configure your system not to use the proxy for the server's address.\n", - "\n", - "For example, in Firefox, go to the Preferences panel, Advanced section,\n", - "Network tab, click 'Settings...', and add the address of the notebook server\n", - "to the 'No proxy for' field." - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.4.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} diff --git a/examples/Notebook/Connecting with the Qt Console.ipynb b/examples/Notebook/Connecting with the Qt Console.ipynb deleted file mode 100644 index 3438889..0000000 --- a/examples/Notebook/Connecting with the Qt Console.ipynb +++ /dev/null @@ -1,132 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Connecting to an existing IPython kernel using the Qt Console" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## The Frontend/Kernel Model" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The traditional IPython (`ipython`) consists of a single process that combines a terminal based UI with the process that runs the users code.\n", - "\n", - "While this traditional application still exists, the modern IPython consists of two processes:\n", - "\n", - "* Kernel: this is the process that runs the users code.\n", - "* Frontend: this is the process that provides the user interface where the user types code and sees results.\n", - "\n", - "IPython currently has 3 frontends:\n", - "\n", - "* Terminal Console (`ipython console`)\n", - "* Qt Console (`ipython qtconsole`)\n", - "* Notebook (`ipython notebook`)\n", - "\n", - "The Kernel and Frontend communicate over a ZeroMQ/JSON based messaging protocol, which allows multiple Frontends (even of different types) to communicate with a single Kernel. This opens the door for all sorts of interesting things, such as connecting a Console or Qt Console to a Notebook's Kernel. For example, you may want to connect a Qt console to your Notebook's Kernel and use it as a help\n", - "browser, calling `??` on objects in the Qt console (whose pager is more flexible than the\n", - "one in the notebook). \n", - "\n", - "This Notebook describes how you would connect another Frontend to a Kernel that is associated with a Notebook." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Manual connection" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "To connect another Frontend to a Kernel manually, you first need to find out the connection information for the Kernel using the `%connect_info` magic:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%connect_info" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You can see that this magic displays everything you need to connect to this Notebook's Kernel." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Automatic connection using a new Qt Console" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You can also start a new Qt Console connected to your current Kernel by using the `%qtconsole` magic. This will detect the necessary connection\n", - "information and start the Qt Console for you automatically." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "a = 10" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%qtconsole" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.4.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} diff --git a/examples/Notebook/Converting Notebooks With nbconvert.ipynb b/examples/Notebook/Converting Notebooks With nbconvert.ipynb deleted file mode 100644 index 11a31a8..0000000 --- a/examples/Notebook/Converting Notebooks With nbconvert.ipynb +++ /dev/null @@ -1,317 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# NbConvert" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Command line usage" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "`NbConvert` is both a library and command line tool that allows you to convert notebooks to other formats. It ships with many common formats: `html`, `latex`, `markdown`, `python`, `rst`, and `slides`\n", - "NbConvert relys on the Jinja templating engine, so implementing a new format or tweeking an existing one is easy." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You can invoke nbconvert by running\n", - "\n", - "```bash\n", - "$ ipython nbconvert \n", - "```\n", - "\n", - "Call `ipython nbconvert` with the `--help` flag or without any aruments to display the basic help. For detailed configuration help, use the `--help-all` flag." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Basic export" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "As a test, the `Index.ipynb` notebook in the directory will be convert. \n", - "\n", - "If you're converting a notebook with code in it, make sure to run the code cells that you're interested in before attempting to convert the notebook. Unless explicitly requested, nbconvert **does not execute the code cells** of the notebooks that it converts." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%%bash\n", - "ipython nbconvert 'Index.ipynb'" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Html is the (configurable) default value. The verbose form of the same command as above is " - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%%bash\n", - "ipython nbconvert --to=html 'Index.ipynb'" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You can also convert to latex, which will extract the embeded images. If the embeded images are SVGs, inkscape is used to convert them to pdf:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%%bash\n", - "ipython nbconvert --to=latex 'Index.ipynb'" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Note that the latex conversion creates latex, not a PDF. To create a PDF you need the required third party packages to compile the latex.\n", - "\n", - "A `--post` flag is provided for convinience which allows you to have nbconvert automatically compile a PDF for you from your output." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%%bash\n", - "ipython nbconvert --to=latex 'Index.ipynb' --post=pdf" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Custom templates" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Look at the first 20 lines of the `python` exporter" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "pyfile = !ipython nbconvert --to python 'Index.ipynb' --stdout\n", - "for l in pyfile[20:40]:\n", - " print l" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "From the code, you can see that non-code cells are also exported. If you want to change this behavior, you can use a custom template. The custom template inherits from the Python template and overwrites the markdown blocks so that they are empty." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%%writefile simplepython.tpl\n", - "{% extends 'python.tpl'%}\n", - "\n", - "{% block markdowncell -%}\n", - "{% endblock markdowncell %}\n", - "\n", - "## we also want to get rig of header cell\n", - "{% block headingcell -%}\n", - "{% endblock headingcell %}\n", - "\n", - "## and let's change the appearance of input prompt\n", - "{% block in_prompt %}\n", - "# This was input cell with prompt number : {{ cell.prompt_number if cell.prompt_number else ' ' }}\n", - "{%- endblock in_prompt %}" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "pyfile = !ipython nbconvert --to python 'Index.ipynb' --stdout --template=simplepython.tpl\n", - "\n", - "for l in pyfile[4:40]:\n", - " print l\n", - "print '...'" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "For details about the template syntax, refer to [Jinja's manual](http://jinja2.readthedocs.org/en/latest/intro.html)." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Template that use cells metadata" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The notebook file format supports attaching arbitrary JSON metadata to each cell. Here, as an exercise, you will use the metadata to tags cells." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "First you need to choose another notebook you want to convert to html, and tag some of the cells with metadata. You can refere to the file `soln/celldiff.js` as an example or follow the Javascript tutorial to figure out how do change cell metadata. Assuming you have a notebook with some of the cells tagged as `Easy`|`Medium`|`Hard`|``, the notebook can be converted specially using a custom template. Design your template in the cells provided below.\n", - "\n", - "The following, unorganized lines of code, may be of help:" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "```\n", - "{% extends 'html_full.tpl'%}\n", - "{% block any_cell %}\n", - "{{ super() }}\n", - "
\n", - "
\n", - "```\n", - "\n", - "If your key name under `cell.metadata.example.difficulty`, the following code would get the value of it:\n", - "\n", - "`cell['metadata'].get('example',{}).get('difficulty','')`\n", - "\n", - "Tip: Use `%%writefile` to edit the template in the notebook." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%%bash\n", - "# ipython nbconvert --to html --template=" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%loadpy soln/coloreddiff.tpl" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# ipython nbconvert --to html '04 - Custom Display Logic.ipynb' --template=soln/coloreddiff.tpl" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Get rid of all command line flags." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "IPython nbconvert can be configured using the default profile or a profile specified via the `--profile` flag. Additionally, if a `config.py` file exist in current working directory, nbconvert will use that as config." - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.4.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} diff --git a/examples/Notebook/Custom Keyboard Shortcuts.ipynb b/examples/Notebook/Custom Keyboard Shortcuts.ipynb deleted file mode 100644 index 7d8d6fe..0000000 --- a/examples/Notebook/Custom Keyboard Shortcuts.ipynb +++ /dev/null @@ -1,113 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Keyboard Shortcut Customization" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Starting with IPython 2.0 keyboard shortcuts in command and edit mode are fully customizable. These customizations are made using the IPython JavaScript API. Here is an example that makes the `r` key available for running a cell:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%%javascript\n", - "\n", - "IPython.keyboard_manager.command_shortcuts.add_shortcut('r', {\n", - " help : 'run cell',\n", - " help_index : 'zz',\n", - " handler : function (event) {\n", - " IPython.notebook.execute_cell();\n", - " return false;\n", - " }}\n", - ");" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "There are a couple of points to mention about this API:\n", - "\n", - "* The `help_index` field is used to sort the shortcuts in the Keyboard Shortcuts help dialog. It defaults to `zz`.\n", - "* When a handler returns `false` it indicates that the event should stop propagating and the default action should not be performed. For further details about the `event` object or event handling, see the jQuery docs.\n", - "* If you don't need a `help` or `help_index` field, you can simply pass a function as the second argument to `add_shortcut`." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%%javascript\n", - "\n", - "IPython.keyboard_manager.command_shortcuts.add_shortcut('r', function (event) {\n", - " IPython.notebook.execute_cell();\n", - " return false;\n", - "});" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Likewise, to remove a shortcut, use `remove_shortcut`:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "%%javascript\n", - "\n", - "IPython.keyboard_manager.command_shortcuts.remove_shortcut('r');" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "If you want your keyboard shortcuts to be active for all of your notebooks, put the above API calls into your `/static/custom/custom.js` file." - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.4.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} diff --git a/examples/Notebook/Index.ipynb b/examples/Notebook/Index.ipynb deleted file mode 100644 index 964b081..0000000 --- a/examples/Notebook/Index.ipynb +++ /dev/null @@ -1,91 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Back to the main [Index](../Index.ipynb)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Notebook" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The IPython Notebook is a web-based interactive computing system that enables users to author documents that include live code, narrative text, LaTeX equations, HTML, images and video. These documents contain a full record of a computation and its results and can be shared on email, [Dropbox](http://dropbox.com), version control systems (like git/[GitHub](http://github.com)) or [nbviewer.ipython.org](http://nbviewer.ipython.org)." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Tutorials" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "* [What is the IPython Notebook](What is the IPython Notebook.ipynb)\n", - "* [Notebook Basics](Notebook Basics.ipynb)\n", - "* [Running Code](Running Code.ipynb)\n", - "* [Working With Markdown Cells](Working With Markdown Cells.ipynb)\n", - "* [Configuring the Notebook and Server](Configuring the Notebook and Server.ipynb)\n", - "* [Custom Keyboard Shortcuts](Custom Keyboard Shortcuts.ipynb)\n", - "* [JavaScript Notebook Extensions](JavaScript Notebook Extensions.ipynb)\n", - "* [Converting Notebooks With nbconvert](Converting Notebooks With nbconvert.ipynb)\n", - "* [Using nbconvert as a Library](Using nbconvert as a Library.ipynb)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Examples" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "* [Importing Notebooks](Importing Notebooks.ipynb)\n", - "* [Connecting with the Qt Console](Connecting with the Qt Console.ipynb)\n", - "* [Typesetting Equations](Typesetting Equations.ipynb)" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.4.3" - } - }, - "nbformat": 4, - "nbformat_minor": 0 -} diff --git a/examples/Notebook/JavaScript Notebook Extensions.ipynb b/examples/Notebook/JavaScript Notebook Extensions.ipynb deleted file mode 100644 index 70daddb..0000000 --- a/examples/Notebook/JavaScript Notebook Extensions.ipynb +++ /dev/null @@ -1,613 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Embrasing web standards" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "One of the main reasons we developed the current notebook as a web application \n", - "is to embrace the available-everywhere web technology. \n", - "\n", - "Being a pure web application using only HTML, Javascript and CSS, the Notebook can access \n", - "all of the web technology improvements for free. Thus, as browsers support for different \n", - "media extend, the notebook web app should be compatible without modification. \n", - "\n", - "This is also true with performance of the User Interface as the speed of the Javascript \n", - "VM increases. " - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The other advantage of using only web technology is that the code of the interface is fully accessible to the end user, and modifiable live.\n", - "Even if this task is not always easy, we strive to keep our code as accessible and reusable as possible.\n", - "This should allow - with minimum effort - development of small extensions that customize the behavior of the web interface. " - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Tampering with the Notebook app" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The first tool that is available to you and that you should be aware of are browser \"developer tools\". The exact name of these tools is different in each browser, and might require the installation of extensions. But basically they can allow you to inspect/modify the DOM, and interact with the Javascript code that runs the frontend.\n", - "\n", - " - In Chrome and Safari, Developer tools are in the menu [Menu -> More tools -> Developer Tools] \n", - " - In Firefox you might need to install [Firebug](http://getfirebug.com/)\n", - " - others ?\n", - " \n", - "Those will be your best friends to debug and try different approaches for your extensions." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Injecting JS" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### using magics" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The above tools can be tedious for editing long Javascipt files. Helpfully, we provide the `%%javascript` magic. This allows you to quickly inject Javascript into the notebook. Still, the Javascript injected this way will not survive reloading. Hence, it is a good tool for testing and refining a script.\n", - "\n", - "You might see here and there people modifying CSS and injecting Javascript into notebook by reading files and publishing them into the notebook.\n", - "Not only does this often break the flow of the notebook and break the re-execution of the notebook, but it also means that you need to execute those cells every time you need to update the code.\n", - "\n", - "This can still be useful in some cases, like the `%autosave` magic that allows you to control the time between each save. But this can be replaced by a Javascript dropdown menu to select a save interval." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "## You can inspect the autosave code to see what it does.\n", - "%autosave??" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### custom.js" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "To inject Javascript we provide an entry point: `custom.js` that allows the user to execute and load other resources into the notebook.\n", - "Javascript code in `custom.js` will be executed when the notebook app starts and can then be used to customize almost anything in the UI and in the behavior of the notebook.\n", - "\n", - "`custom.js` can be found in the IPython profile dir, and so you can have different UI modifications on a per-profile basis, as well as share your modfications with others." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "##### Because we like you...." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "You have been provided with an pre-existing profile folder with this tutorial...\n", - "Start the notebook from the root of the tutorial directory with :\n", - "\n", - "```bash\n", - "$ ipython notebook --ProfileDir.location=./profile_euroscipy\n", - "```" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "##### but back to theory" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "profile_dir = ! ipython locate\n", - "profile_dir = profile_dir[0]\n", - "profile_dir" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "and custom js is in " - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "import os.path\n", - "custom_js_path = os.path.join(profile_dir,'profile_default','static','custom','custom.js')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# my custom js\n", - "with open(custom_js_path) as f:\n", - " for l in f: \n", - " print l," - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Note that `custom.js` is meant to be modified by the user. When writing a script, you can define it in a separate file and add a line of configuration into `custom.js` that will fetch and execute the file." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "**Warning** : even if modification of `custom.js` takes effect immediately after a browser refresh (except if browser cache is aggressive), *creating* a file in `static/` directory needs a **server restart**." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Exercise :" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - " - Create a `custom.js` in the right location with the following content:\n", - "```javascript\n", - "alert(\"hello world from custom.js\")\n", - "```\n", - "\n", - " - Restart your server and open any notebook.\n", - " - Be greeted by custom.js" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Have a look at [default custom.js](https://github.com/ipython/ipython/blob/1.x/IPython/html/static/custom/custom.js), to see it's contents and for more explanation." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "#### For the quick ones : " - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "We've seen above that you can change the autosave rate by using a magic. This is typically something I don't want to type everytime, and that I don't like to embed into my workflow and documents. (The reader doesn't care what my autosave time is), so let's build an extension that allow to do it. " - ] - }, - { - "cell_type": "markdown", - "metadata": { - "foo": true - }, - "source": [ - "Create a dropdown elemement in the toolbar (DOM `IPython.toolbar.element`). You will need \n", - "\n", - "- `IPython.notebook.set_autosave_interval(miliseconds)`\n", - "- know that 1 min = 60 sec, and 1 sec = 1000 ms" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "```javascript\n", - "\n", - "var label = jQuery('