Metadata-Version: 1.1
Name: ipymol
Version: 0.3
Summary: IPyMOL allows you to control PyMOL sessions via IPython.
Home-page: https://github.com/cxhernandez/ipymol
Author: Carlos Xavier Hernandez
Author-email: cxh@stanford.edu
License: MIT
Download-URL: https://github.com/cxhernandez/ipymol/tarball/master
Description: IPyMOL
        ======
        
        IPyMOL allows you to control `PyMOL <https://www.pymol.org>`_ sessions via IPython. This tool is ideal for situations where you'd like to present your work neatly in a `Jupyter Notebook <https://jupyter.org/>`_ or conveniently prototype PyMOL scripts.
        
        Before You Begin
        ----------------
        Please ensure that PyMOL is in your ``$PATH`` as ``pymol`` or you can start PyMOL in server mode:
        
        .. code:: shell
        
            $ pymol -R #-cKRQ to run it without a GUI
        
        Installation
        ------------
        
        
        .. code:: shell
        
            pip install ipymol
        
        
        
        Example Usage
        --------------
        You can fire up an IPython or IPython Notebook session and start using IPyMOL. For example:
        
        .. code:: python
        
            from ipymol import viewer as pymol
            pymol.start()   # Start PyMOL RPC server
            pymol.do('fetch 3odu; as cartoon; bg white')
            pymol.show()
        
        This series of commands will define a variable ``pymol`` of class ``MolViewer``, which can pass commands to PyMOL, and then create an image of ``PDBID:3odu`` in your IPython session.
        Any additional commands can be invoked via ``pymol.do("[ENTER YOUR COMMAND HERE]")``.
        
        Here's an additional `example <http://nbviewer.ipython.org/urls/raw.github.com/cxhernandez/iPyMol/master/examples/Example.ipynb>`_.
        
        Enjoy!
        
Keywords: ipython notebook pymol protein molecular visualization
Platform: Windows
Platform: Linux
Platform: Mac OS-X
Platform: Unix
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Topic :: Scientific/Engineering
