Metadata-Version: 1.1
Name: animateimages
Version: 0.2.3
Summary: Animation of matplotlib images
Home-page: https://github.com/boazmohar/animateImages
Author: Boaz Mohar
Author-email: boazmohar@gmail.com
License: MIT
Download-URL: https://github.com/boazmohar/animateImages/archive/v0.2.3.tar.gz
Description: 
        ==============
        Animate Images
        ==============
        
        Helper functions to make animations of images with corresponding traces and labels using matplotlib
        
        ------------
        Example use:
        ------------
        
        .. code-block:: python
        
            from Animate.Movie import Movie
            import numpy as np
            m = Movie(dt=1.0 / 14, height_ratio=1.5)
            img = np.random.randint(10, size=(40, 5, 5))
            m.add_image(img, style='dark_img')
            m.add_axis(x_label='time (s)', y_label='value')
            m.add_trace(img.mean(axis=(1, 2)))
            m.save('path/to/file/with_name', fps=1)
        
        
        .. image:: resources/example.gif
        
        
        -------
        Testing
        -------
        
        .. code-block:: bash
        
            pytest --pep8 --cov=Animate --cov-report html
        
        
        ---------
        Deploying
        ---------
        
        .. code-block:: bash
        
            bumpversion patch
            python setup sdist
            twine upload \dist\...
        
Keywords: matplotlib,animation
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
