{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Tour of magics" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Magics are special functions that are useful in the context of interactive sessions. They can create or show files, recover commands from history etc. More on magics in the IPython docs." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Before we dig into more magics. Some Python code for a warmup:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "print(\"Xeus(tm) inside!\")" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "a = 2+2" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "print(a)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "def foo(): pass" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Line magics" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Line magics start with a single percent (`%`) sign. For example, to show current directory." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "%pwd" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "They can also take arguments:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "%cd .." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "and their result can be assigned to a variable:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "current_path = %pwd\n", "print(current_path)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Cell magics" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Cell magics start with double percent sign (`%%`). Like line magics they can take arguments, but also they use the content of the cell below:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "%%writefile test.txt\n", "\n", "This will create a new file. \n", "With the text that you see here." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Shell escape magics" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "You can also call shell commands by prefixing them with an exclamation mark (`!`). For example, unix `cat` command displays content of a file." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "!cat test.txt" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### User-defined magics" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "You can also define your own (line or cell) magics:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "from IPython.core.magic import (\n", " register_line_magic, register_cell_magic)\n", "\n", "@register_line_magic\n", "def lmagic(line):\n", " return line\n", "\n", "@register_cell_magic\n", "def cmagic(line, body):\n", " return line + body" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "%lmagic me" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "%%cmagic me\n", "\n", "hello" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Magic land" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "You can also install and load magics from elsewhere:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "!pip install example_magic" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "%load_ext example_magic" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "%abra Helo" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Help with magic" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "To show the list of available magics and some description, use `%magic` magic:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "%magic" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## History magics" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### `%history`" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "show all executed commands " ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "%history" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "show last two commands" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "%history -l 2" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "search for commands containing print" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "%history -g print" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### `%recall`" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "`%recall` magic inserts a new cell with a command from history" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "%recall 2" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "a = 2+2" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### `%rerun`" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "`%rerun` repeats the execution of the command" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "%rerun 3" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Execution magics" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### `%timeit`" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "`%timeit` measures execution time, it can be both line and cell magics" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "import time" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "%%timeit \n", "\n", "time.sleep(0.1)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "%timeit 2+2" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Quick help" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "`?function` or `function?` shows docstring for a function or object. It can be at any line in the cell. In a classic notebook it opens a pager at the bottom of the window." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "print(\"hello world\")\n", "?print" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3.9 (XPython)", "language": "python", "name": "xpython" }, "language_info": { "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "version": "3.9.1" } }, "nbformat": 4, "nbformat_minor": 4 }