Metadata-Version: 1.2
Name: slice-aggregator
Version: 0.1.0
Summary: A library for aggregating values assigned to indices by slices and the other way around 
Home-page: https://github.com/bm371613/slice-aggregator
Author: Bartosz Marcinkowski
Author-email: bm371613@gmail.com
License: MIT
Project-URL: Documentation, https://slice-aggregator.readthedocs.io/
Project-URL: Source, https://github.com/bm371613/slice-aggregator/
Project-URL: Tracker, https://github.com/bm371613/slice-aggregator/issues
Description-Content-Type: UNKNOWN
Description: slice-aggregator
        ================
        
        .. image:: https://travis-ci.org/bm371613/slice-aggregator.svg?branch=master
            :target: https://travis-ci.org/bm371613/slice-aggregator
        .. image:: https://readthedocs.org/projects/slice-aggregator/badge/?version=latest
            :target: http://slice-aggregator.readthedocs.io/en/latest/?badge=latest
        
        A library for aggregating values assigned to indices by slices
        
        .. code-block:: pycon
        
            >>> import slice_aggregator
            >>> a = slice_aggregator.ixs_by_slices()
            >>> a[-5] += 1
            >>> a[10] -= 2.5
            >>> a[-10:]
            -1.5
        
        and the other way around
        
        .. code-block:: pycon
        
            >>> import slice_aggregator
            >>> a = slice_aggregator.slices_by_ixs()
            >>> a[:-5] += 1
            >>> a[-10:10] -= 2.5
            >>> a[-10]
            -1.5
        
        `Read the docs <https://slice-aggregator.readthedocs.io/>`_ to find out more!
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Python: >=3.5
