{ "cells": [ { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Requirement already satisfied: modulr in /Users/skarzynskimw/miniconda3/lib/python3.6/site-packages (0.0.2)\r\n" ] } ], "source": [ "import sys\n", "!{sys.executable} -m pip install modulr" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "import modulr" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "import tempfile\n", "outfile_path = tempfile.mkstemp('.py')[1]\n", "def my_add(*args):\n", " return sum(args)\n", "modulr.make_module([my_add], module_name=outfile_path)" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "def my_add(*args):\n return sum(args)\n\n\n\n" ] } ], "source": [ "with open(outfile_path, 'r') as f:\n", " print(f.read())" ] } ], "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.6.6" } }, "nbformat": 4, "nbformat_minor": 2 }