Metadata-Version: 1.1
Name: wavemap
Version: 0.9.0
Summary: Memory map WAVE or raw audio files
Home-page: https://github.com/rec/wavemap
Author: Tom Ritchford
Author-email: tom@swirly.com
License: MIT
Description: 
        API
        ===
        
        Class ``wavemap.RawMap``
        ~~~~~~~~~~~~~~~~~~~~~~~~
        
        (`wavemap.py, 16-64 <https://github.com/rec/wavemap/blob/master/wavemap.py#L16-L64>`_)
        
        "Memory map raw audio data from a disk file into a numpy matrix
        
        ``wavemap.RawMap.__new__()``
        ____________________________
        
        .. code-block:: python
        
          wavemap.RawMap.__new__(
               cls,
               filename,
               dtype,
               channels,
               sample_rate,
               begin=0,
               end=None,
               mode='r',
               order='C',
               always_2d=False,
          )
        
        (`wavemap.py, 19-60 <https://github.com/rec/wavemap/blob/master/wavemap.py#L19-L60>`_)
        
        Create and return a new object.  See help(type) for accurate signature.
        
        Class ``wavemap.WaveMap``
        ~~~~~~~~~~~~~~~~~~~~~~~~~
        
        (`wavemap.py, 66-112 <https://github.com/rec/wavemap/blob/master/wavemap.py#L66-L112>`_)
        
        "Memory-map a wave file into a numpy matrix
        
        ``wavemap.WaveMap.__new__(cls, filename, mode='r', order='C', always_2d=False)``
        ________________________________________________________________________________
        
        (`wavemap.py, 69-112 <https://github.com/rec/wavemap/blob/master/wavemap.py#L69-L112>`_)
        
        Create and return a new object.  See help(type) for accurate signature.
        
        (automatically generated by `doks <https://github.com/rec/doks/>`_ on 2020-12-22T20:37:15.636280)
        
Keywords: testing,modules
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Utilities
