{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# The Package" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "To start using **scikit-chem**, the package to import is `skchem`:" ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "collapsed": true }, "outputs": [], "source": [ "import skchem" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The different functionalities are arranged in subpackages:" ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/plain": [ "['core',\n", " 'filters',\n", " 'data',\n", " 'descriptors',\n", " 'io',\n", " 'vis',\n", " 'cross_validation',\n", " 'standardizers',\n", " 'interact',\n", " 'pipeline']" ] }, "execution_count": 2, "metadata": {}, "output_type": "execute_result" } ], "source": [ "skchem.__all__" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "These are all imported as soon as the base package is imported, so everything is ready to use right away:" ] }, { "cell_type": "code", "execution_count": 3, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/plain": [ "" ] }, "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], "source": [ "skchem.core.Mol()" ] } ], "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.5.1" }, "widgets": { "state": {}, "version": "1.1.2" } }, "nbformat": 4, "nbformat_minor": 0 }