{ "info": { "author": "Bastian Bechtold", "author_email": "basti@bastibe.de", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: OSI Approved :: BSD License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 3", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Multimedia :: Sound/Audio" ], "description": "SoundFile\n=========\n\n`SoundFile `__ is an audio\nlibrary based on libsndfile, CFFI and NumPy. Full documentation is\navailable on http://pysoundfile.readthedocs.org/.\n\nSoundFile can read and write sound files. File reading/writing is\nsupported through `libsndfile `__,\nwhich is a free, cross-platform, open-source (LGPL) library for reading\nand writing many different sampled sound file formats that runs on many\nplatforms including Windows, OS X, and Unix. It is accessed through\n`CFFI `__, which is a foreign function\ninterface for Python calling C code. CFFI is supported for CPython 2.6+,\n3.x and PyPy 2.0+. SoundFile represents audio data as NumPy arrays.\n\n| SoundFile is BSD licensed (BSD 3-Clause License).\n| (c) 2013, Bastian Bechtold\n\n\nBreaking Changes\n----------------\n\nSoundFile has evolved rapidly during the last few releases. Most\nnotably, we changed the import name from ``import pysoundfile`` to\n``import soundfile`` in 0.7. In 0.6, we cleaned up many small\ninconsistencies, particularly in the the ordering and naming of\nfunction arguments and the removal of the indexing interface.\n\nIn 0.8.0, we changed the default value of ``always_2d`` from ``True``\nto ``False``. Also, the order of arguments of the ``write`` function\nchanged from ``write(data, file, ...)`` to ``write(file, data, ...)``.\n\nIn 0.9.0, we changed the ``ctype`` arguments of the ``buffer_*``\nmethods to ``dtype``, using the Numpy ``dtype`` notation. The old\n``ctype`` arguments still work, but are now officially deprecated.\n\nInstallation\n------------\n\nSoundFile depends on the Python packages CFFI and NumPy, and the\nsystem library libsndfile.\n\nIn a modern Python, you can use ``pip install soundfile`` to download\nand install the latest release of SoundFile and its dependencies.\nOn Windows and OS X, this will also install the library libsndfile.\nOn Linux, you need to install libsndfile using your distribution's\npackage manager, for example ``sudo apt-get install libsndfile1``.\n\nIf you are running on an unusual platform or if you are using an older\nversion of Python, you might need to install NumPy and CFFI separately,\nfor example using the Anaconda_ package manager or the `Unofficial Windows\nBinaries for Python Extension Packages `_.\n\n.. _Anaconda: https://www.continuum.io/downloads\n\nRead/Write Functions\n--------------------\n\nData can be written to the file using `soundfile.write()`, or read from\nthe file using `soundfile.read()`. SoundFile can open all file formats\nthat `libsndfile supports\n`__, for example WAV,\nFLAC, OGG and MAT files (see `Known Issues `__ below about writing OGG files).\n\nHere is an example for a program that reads a wave file and copies it\ninto an FLAC file:\n\n.. code:: python\n\n import soundfile as sf\n\n data, samplerate = sf.read('existing_file.wav')\n sf.write('new_file.flac', data, samplerate)\n\nBlock Processing\n----------------\n\nSound files can also be read in short, optionally overlapping blocks\nwith `soundfile.blocks()`.\nFor example, this calculates the signal level for each block of a long\nfile:\n\n.. code:: python\n\n import numpy as np\n import soundfile as sf\n\n rms = [np.sqrt(np.mean(block**2)) for block in\n sf.blocks('myfile.wav', blocksize=1024, overlap=512)]\n\nSoundFile Objects\n-----------------\n\nSound files can also be opened as `soundfile.SoundFile` objects. Every\nSoundFile has a specific sample rate, data format and a set number of\nchannels.\n\nIf a file is opened, it is kept open for as long as the SoundFile\nobject exists. The file closes when the object is garbage collected,\nbut you should use the `soundfile.SoundFile.close()` method or the\ncontext manager to close the file explicitly:\n\n.. code:: python\n\n import soundfile as sf\n\n with sf.SoundFile('myfile.wav', 'r+') as f:\n while f.tell() < f.frames:\n pos = f.tell()\n data = f.read(1024)\n f.seek(pos)\n f.write(data*2)\n\nAll data access uses frames as index. A frame is one discrete time-step\nin the sound file. Every frame contains as many samples as there are\nchannels in the file.\n\nRAW Files\n---------\n\nPysoundfile can usually auto-detect the file type of sound files. This\nis not possible for RAW files, though:\n\n.. code:: python\n\n import soundfile as sf\n\n data, samplerate = sf.read('myfile.raw', channels=1, samplerate=44100,\n subtype='FLOAT')\n\nNote that on x86, this defaults to ``endian='LITTLE'``. If you are\nreading big endian data (mostly old PowerPC/6800-based files), you\nhave to set ``endian='BIG'`` accordingly.\n\nYou can write RAW files in a similar way, but be advised that in most\ncases, a more expressive format is better and should be used instead.\n\nVirtual IO\n----------\n\nIf you have an open file-like object, Pysoundfile can open it just like\nregular files:\n\n.. code:: python\n\n import soundfile as sf\n with open('filename.flac', 'rb') as f:\n data, samplerate = sf.read(f)\n\nHere is an example using an HTTP request:\n\n.. code:: python\n\n import io\n import soundfile as sf\n from urllib.request import urlopen\n\n url = \"http://tinyurl.com/shepard-risset\"\n data, samplerate = sf.read(io.BytesIO(urlopen(url).read()))\n\nNote that the above example only works with Python 3.x.\nFor Python 2.x support, replace the third line with:\n\n.. code:: python\n\n from urllib2 import urlopen\n\nKnown Issues\n------------\n\nWriting to OGG files can result in empty files with certain versions of libsndfile. See `#130 `__ for news on this issue.\n\nNews\n----\n\n2013-08-27 V0.1.0 Bastian Bechtold:\n Initial prototype. A simple wrapper for libsndfile in Python\n\n2013-08-30 V0.2.0 Bastian Bechtold:\n Bugfixes and more consistency with PySoundCard\n\n2013-08-30 V0.2.1 Bastian Bechtold:\n Bugfixes\n\n2013-09-27 V0.3.0 Bastian Bechtold:\n Added binary installer for Windows, and context manager\n\n2013-11-06 V0.3.1 Bastian Bechtold:\n Switched from distutils to setuptools for easier installation\n\n2013-11-29 V0.4.0 Bastian Bechtold:\n Thanks to David Blewett, now with Virtual IO!\n\n2013-12-08 V0.4.1 Bastian Bechtold:\n Thanks to Xidorn Quan, FLAC files are not float32 any more.\n\n2014-02-26 V0.5.0 Bastian Bechtold:\n Thanks to Matthias Geier, improved seeking and a flush() method.\n\n2015-01-19 V0.6.0 Bastian Bechtold:\n A big, big thank you to Matthias Geier, who did most of the work!\n\n - Switched to ``float64`` as default data type.\n - Function arguments changed for consistency.\n - Added unit tests.\n - Added global ``read()``, ``write()``, ``blocks()`` convenience\n functions.\n - Documentation overhaul and hosting on readthedocs.\n - Added ``'x'`` open mode.\n - Added ``tell()`` method.\n - Added ``__repr__()`` method.\n\n2015-04-12 V0.7.0 Bastian Bechtold:\n Again, thanks to Matthias Geier for all of his hard work, but also\n Nils Werner and Whistler7 for their many suggestions and help.\n\n - Renamed ``import pysoundfile`` to ``import soundfile``.\n - Installation through pip wheels that contain the necessary\n libraries for OS X and Windows.\n - Removed ``exclusive_creation`` argument to ``write``.\n - Added ``truncate()`` method.\n\n2015-10-20 V0.8.0 Bastian Bechtold:\n Again, Matthias Geier contributed a whole lot of hard work to this\n release.\n\n - Changed the default value of ``always_2d`` from ``True`` to\n ``False``.\n - Numpy is now optional, and only loaded for ``read`` and\n ``write``.\n - Added ``SoundFile.buffer_read`` and\n ``SoundFile.buffer_read_into`` and ``SoundFile.buffer_write``,\n which read/write raw data without involving Numpy.\n - Added ``info`` function that returns metadata of a sound file.\n - Changed the argument order of the ``write`` function from\n ``write(data, file, ...)`` to ``write(file, data, ...)``\n\n And many more minor bug fixes.\n\n2017-02-02 V0.9.0 Bastian Bechtold:\n Thank you, Matthias Geier, Tomas Garcia, and Todd, for contributions\n for this release.\n\n - Adds support for ALAC files.\n - Adds new member ``__libsndfile_version__``\n - Adds number of frames to ``info`` class\n - Adds ``dtype`` argument to ``buffer_*`` methods\n - Deprecates ``ctype`` argument to ``buffer_*`` methods\n - Adds official support for Python 3.6\n\n And some minor bug fixes.\n\n2017-11-12 V0.10.0 Bastian Bechtold:\n Thank you, Matthias Geier, Toni Barth, Jon Peirce, Till Hoffmann,\n and Tomas Garcia, for contributions to this release.\n\n - Should now work with cx_freeze.\n - Several documentation fixes in the README.\n - Removes deprecated ``ctype`` argument in favor of ``dtype`` in ``buffer_*()``.\n - Adds ``SoundFile.frames`` in favor of now-deprecated ``__len__()``.\n - Improves performance of ``blocks`` and ``SoundFile.blocks()``.\n - Improves import time by using CFFI's out of line mode.\n - Adds a build script for building distributions.\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/bastibe/PySoundFile", "keywords": "audio,libsndfile", "license": "BSD 3-Clause License", "maintainer": "", "maintainer_email": "", "name": "SoundFile", "package_url": "https://pypi.org/project/SoundFile/", "platform": "any", "project_url": "https://pypi.org/project/SoundFile/", "project_urls": { "Homepage": "https://github.com/bastibe/PySoundFile" }, "release_url": "https://pypi.org/project/SoundFile/0.10.2/", "requires_dist": [ "cffi (>=1.0)", "numpy; extra == 'numpy'" ], "requires_python": "", "summary": "An audio library based on libsndfile, CFFI and NumPy", "version": "0.10.2" }, "last_serial": 3844241, "releases": { "0.10.1": [ { "comment_text": "", "digests": { "md5": "5bf44fa7ba44904de5ff7eeeb4acbb91", "sha256": "1135fa425dc64e17144dfff5ab1f943f37d2a033a24313e3768ea8eedb10da80" }, "downloads": -1, "filename": "SoundFile-0.10.1-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33-none-macosx_10_5_x86_64.macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "5bf44fa7ba44904de5ff7eeeb4acbb91", "packagetype": "bdist_wheel", "python_version": "py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33", "requires_python": null, "size": 538385, "upload_time": "2018-03-02T13:26:22", "url": "https://files.pythonhosted.org/packages/62/8e/c1b94ff4136ee6a667b670dca1cc49686e29d3ea46d4be9f24142d1c1008/SoundFile-0.10.1-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33-none-macosx_10_5_x86_64.macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "538bd6eb68228cd28c08710fa3ec9473", "sha256": "b112631b8d4422b6ecb7abb612ebaae21db85debee8af4092ad30650221f80c9" }, "downloads": -1, "filename": "SoundFile-0.10.1-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33-none-win32.whl", "has_sig": false, "md5_digest": "538bd6eb68228cd28c08710fa3ec9473", "packagetype": "bdist_wheel", "python_version": "py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33", "requires_python": null, "size": 606712, "upload_time": "2018-03-02T13:26:25", "url": "https://files.pythonhosted.org/packages/7a/8b/0ff90a2abbc534d9ce37ba32a36b53f3e64b4a5ac56a52284d407f55eba1/SoundFile-0.10.1-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "2865d228ff154f213dbc1f3e8e7aa653", "sha256": "33c2adfeb98d37f7c9061de2d6aa058bb8900b0b9d3652644b3649274e7592fb" }, "downloads": -1, "filename": "SoundFile-0.10.1-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33-none-win_amd64.whl", "has_sig": false, "md5_digest": "2865d228ff154f213dbc1f3e8e7aa653", "packagetype": "bdist_wheel", "python_version": "py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33", "requires_python": null, "size": 641611, "upload_time": "2018-03-02T13:26:28", "url": "https://files.pythonhosted.org/packages/e5/75/b72b53c9a0bae321d183c4e1f4cacb95325d43d90b3cef3ff06531563a24/SoundFile-0.10.1-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "40d65a018c0ae592d2c23cbd6e1f2cbf", "sha256": "2746f1610b97f2e580ba5e7b79c4a8c5f0dbd15da7133c809e15ef62ec415ceb" }, "downloads": -1, "filename": "SoundFile-0.10.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "40d65a018c0ae592d2c23cbd6e1f2cbf", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 25070, "upload_time": "2018-03-02T13:26:20", "url": "https://files.pythonhosted.org/packages/87/2f/917597b5fa73d95150640c030b2fd421cf4468efb3d823f113d37b2fbc5e/SoundFile-0.10.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "59c2c637462af50d4acf72fa97dd78dc", "sha256": "8e841dd7ccf1b2dc064c19271df95ee8b53868e8edb7a0df2873e0144010154d" }, "downloads": -1, "filename": "SoundFile-0.10.1.tar.gz", "has_sig": false, "md5_digest": "59c2c637462af50d4acf72fa97dd78dc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1722999, "upload_time": "2018-03-02T13:26:34", "url": "https://files.pythonhosted.org/packages/14/5a/219d032dfc386d791973e59b078190ae91096b2ff3fac2fd8be5f08fbe92/SoundFile-0.10.1.tar.gz" } ], "0.10.2": [ { "comment_text": "", "digests": { "md5": "cb0b8ed3505216d4934f1a91c577734f", "sha256": "3f90971bb1884575ada9a0731e878c91cc1ffde14a778f0857deaa2fd04849ac" }, "downloads": -1, "filename": "SoundFile-0.10.2-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33-none-macosx_10_5_x86_64.macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "cb0b8ed3505216d4934f1a91c577734f", "packagetype": "bdist_wheel", "python_version": "py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33", "requires_python": null, "size": 616697, "upload_time": "2018-04-19T07:13:19", "url": "https://files.pythonhosted.org/packages/d2/06/58d71f2041bc89919f56a69f8f2b9535a55d513bb005fbe4f8ee5d367170/SoundFile-0.10.2-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33-none-macosx_10_5_x86_64.macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f8fcfb85102ecb3442c541d5680afc67", "sha256": "7fe04272cbfb94ab648acb0db31ace0800f5a4cf46e9d45b4d71ddb15abce1a0" }, "downloads": -1, "filename": "SoundFile-0.10.2-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33-none-win32.whl", "has_sig": false, "md5_digest": "f8fcfb85102ecb3442c541d5680afc67", "packagetype": "bdist_wheel", "python_version": "py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33", "requires_python": null, "size": 654769, "upload_time": "2018-04-19T07:13:22", "url": "https://files.pythonhosted.org/packages/cc/27/a494e37d5b26f83286802673b993ab41513df136d2c279f142cbc4536c35/SoundFile-0.10.2-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "ec134511b3df8f44332b1d637b84c856", "sha256": "80a3d2ed37199ffa7066c097d7b82b8413922e22870b62b54dc264bf0169f4c2" }, "downloads": -1, "filename": "SoundFile-0.10.2-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33-none-win_amd64.whl", "has_sig": false, "md5_digest": "ec134511b3df8f44332b1d637b84c856", "packagetype": "bdist_wheel", "python_version": "py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33", "requires_python": null, "size": 692723, "upload_time": "2018-04-19T07:13:24", "url": "https://files.pythonhosted.org/packages/d7/72/1e80bc350b9a5e8f12fb0814a77d4f77f887382f076501fdaa89aa731b76/SoundFile-0.10.2-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "af09043ea37fc13a9ff9360900425433", "sha256": "181393f8daac38bda997c4284b760bcd726dc0e847f620020d7bf2d3d538a985" }, "downloads": -1, "filename": "SoundFile-0.10.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "af09043ea37fc13a9ff9360900425433", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 25194, "upload_time": "2018-04-19T07:13:17", "url": "https://files.pythonhosted.org/packages/68/64/1191352221e2ec90db7492b4bf0c04fd9d2508de67b3f39cbf093cd6bd86/SoundFile-0.10.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ff7ca509492baf3bb1ed5620af643900", "sha256": "637f6218c867b8cae80f6989634a0813b416b3e6132480d056e6e5a89a921571" }, "downloads": -1, "filename": "SoundFile-0.10.2.tar.gz", "has_sig": false, "md5_digest": "ff7ca509492baf3bb1ed5620af643900", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40309, "upload_time": "2018-05-08T13:40:48", "url": "https://files.pythonhosted.org/packages/9d/6d/b0687afe9f08809ce035348b4172a248aaf44def7f29e4b575677312176d/SoundFile-0.10.2.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "64d74fda3b0c656496d66fd415ccffe0", "sha256": "5df27a689e4b448c6d510617655c718f48fdc8cb8d04abace804b4e02e059ac3" }, "downloads": -1, "filename": "SoundFile-0.8.0-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.pp27.pp32-none-macosx_10_5_x86_64.macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "64d74fda3b0c656496d66fd415ccffe0", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 23050, "upload_time": "2015-10-21T15:52:54", "url": "https://files.pythonhosted.org/packages/ce/5c/53a1f32e43f54b37b91f144adf48f5ca158a0a9492d8f93feae06d308425/SoundFile-0.8.0-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.pp27.pp32-none-macosx_10_5_x86_64.macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "5013c85b98d2fb8ea60a32a36eb7d677", "sha256": "3e58bb7d3f4f80a324a249d034943bff7c526631d1a8b2cb6258495f0091410c" }, "downloads": -1, "filename": "SoundFile-0.8.0-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.pp27.pp32-none-win32.whl", "has_sig": false, "md5_digest": "5013c85b98d2fb8ea60a32a36eb7d677", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 22938, "upload_time": "2015-10-21T15:52:59", "url": "https://files.pythonhosted.org/packages/8d/d7/bcc0df08fb2ee663c886a8925ba496c0483605c129e81eab32d99b23f87b/SoundFile-0.8.0-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.pp27.pp32-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "0f970311383faa6eac89375a982d9337", "sha256": "dda43e5ed80e37a37d438deb9ddedadfc247d7cd6a8c7530188a830fbbe866f7" }, "downloads": -1, "filename": "SoundFile-0.8.0-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.pp27.pp32-none-win_amd64.whl", "has_sig": false, "md5_digest": "0f970311383faa6eac89375a982d9337", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 22950, "upload_time": "2015-10-21T15:53:12", "url": "https://files.pythonhosted.org/packages/be/fc/5a350a28e948c42e18a91a3c803018fa7872ba3ae4c48b46671e7f01da73/SoundFile-0.8.0-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.pp27.pp32-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "67034599396d5e05eb0d2b02e8e23d49", "sha256": "9f0cabec5e04a001ba4970a058cfd5a1372fa5ded52204b73300de0e61bbae9d" }, "downloads": -1, "filename": "SoundFile-0.8.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "67034599396d5e05eb0d2b02e8e23d49", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 22900, "upload_time": "2015-10-21T15:53:20", "url": "https://files.pythonhosted.org/packages/6f/da/85607cf4c04e38438b31c9d52588acb601a6ec232464cfa85f690ae56be3/SoundFile-0.8.0-py2.py3-none-any.whl" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "30eef9513fafd01932521779e564c2a9", "sha256": "18b21162b2fbb746867264a2a987ace06844795f80866ab38d89c2490372fa76" }, "downloads": -1, "filename": "SoundFile-0.8.1-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.pp27.pp32-none-macosx_10_5_x86_64.macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "30eef9513fafd01932521779e564c2a9", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 536390, "upload_time": "2015-10-22T13:33:07", "url": "https://files.pythonhosted.org/packages/d7/f6/8bd7b45a3f27571f4ecc2be8b063487a5f126cc5d6a7ef32e2bee2398cf4/SoundFile-0.8.1-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.pp27.pp32-none-macosx_10_5_x86_64.macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "46a7831834038aca8bd79a84f5be8d00", "sha256": "af856e52931cfc0016995153ade2c2883cd38ec58e9d35f7b55fe9316e3e7d14" }, "downloads": -1, "filename": "SoundFile-0.8.1-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.pp27.pp32-none-win32.whl", "has_sig": false, "md5_digest": "46a7831834038aca8bd79a84f5be8d00", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 604718, "upload_time": "2015-10-22T13:33:14", "url": "https://files.pythonhosted.org/packages/33/24/67da5857703eefa12e98fd08a9c1db0c600c913a6fddedd3dc9f47c769b9/SoundFile-0.8.1-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.pp27.pp32-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "274f53f2e493bfa7d30f12e851f0e40c", "sha256": "b3b608a5bbb7bd28877eedb6a66c2706cafc623cb7b4eef2401c9bf1b36c4b17" }, "downloads": -1, "filename": "SoundFile-0.8.1-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.pp27.pp32-none-win_amd64.whl", "has_sig": false, "md5_digest": "274f53f2e493bfa7d30f12e851f0e40c", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 639610, "upload_time": "2015-10-22T13:33:21", "url": "https://files.pythonhosted.org/packages/09/34/f23bd7a8128a067b8982e18d7407906679e69c6708a4c5fc73bf89e920e9/SoundFile-0.8.1-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.pp27.pp32-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "66280d271079704a387bd5f06ab9d065", "sha256": "17795cc93e413da439e3a5a5575a852098732b1ccc7ccf37e538715462c30214" }, "downloads": -1, "filename": "SoundFile-0.8.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "66280d271079704a387bd5f06ab9d065", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 22904, "upload_time": "2015-10-22T13:33:26", "url": "https://files.pythonhosted.org/packages/19/c0/2caa30e59cb75c429b9007a2ee52c889b01d1736590f04656f64f9a5a5bb/SoundFile-0.8.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d8c2aa83d36d2429d51bc3832e3f998e", "sha256": "fe189a852befa99927dd47d2723f8a5187a46d802368650f6eea104683653ed5" }, "downloads": -1, "filename": "SoundFile-0.8.1.tar.gz", "has_sig": false, "md5_digest": "d8c2aa83d36d2429d51bc3832e3f998e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1717699, "upload_time": "2015-11-02T14:43:18", "url": "https://files.pythonhosted.org/packages/02/f7/310ba710f3a653c342b6ab2cca81a154dac2ce7919e65d385c9198276619/SoundFile-0.8.1.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "68bc327935f451d390eb05559a7715de", "sha256": "b5d49aaf6ad9e10accbb39d411efa8cf1b4164decbb085b4da1096ccc5628d39" }, "downloads": -1, "filename": "SoundFile-0.9.0-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33-none-macosx_10_5_x86_64.macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "68bc327935f451d390eb05559a7715de", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 537335, "upload_time": "2017-02-02T15:17:25", "url": "https://files.pythonhosted.org/packages/13/0b/7db5cb934b12ad0f639d9120246a091f59ccf65f785545043b52b18208f8/SoundFile-0.9.0-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33-none-macosx_10_5_x86_64.macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "a6e4dade821f18dd5d7a065323268a78", "sha256": "b517e2e3edf3afb0b1a43d967708b8a407fb32efa8ad23f288f6cd66d0b9df5c" }, "downloads": -1, "filename": "SoundFile-0.9.0-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33-none-win32.whl", "has_sig": false, "md5_digest": "a6e4dade821f18dd5d7a065323268a78", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 605647, "upload_time": "2017-02-02T15:17:29", "url": "https://files.pythonhosted.org/packages/c3/d0/75ca240b030a7942d8d531f5c48ad8cccc8751c41984cf03327d150b27d8/SoundFile-0.9.0-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "670c13880df66cface91f5e653322451", "sha256": "bb97eb04edde480464d085dd8d427f783183991e7c3a1e49be7bb2c4666b2ef6" }, "downloads": -1, "filename": "SoundFile-0.9.0-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33-none-win_amd64.whl", "has_sig": false, "md5_digest": "670c13880df66cface91f5e653322451", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 640540, "upload_time": "2017-02-02T15:17:32", "url": "https://files.pythonhosted.org/packages/f5/09/68ec32eecbe3b6702c4bf2764f1ea0ff999d91dcccfea90523ef0613d995/SoundFile-0.9.0-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "7ad9e88992e4bc5ba2255a0689011687", "sha256": "f0e9ccf318e4656fc3542d673a4828af56adcf5e4bb6aa932999a2365cb025ff" }, "downloads": -1, "filename": "SoundFile-0.9.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7ad9e88992e4bc5ba2255a0689011687", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 24020, "upload_time": "2017-02-02T15:17:37", "url": "https://files.pythonhosted.org/packages/f7/42/b8a6afe407eab72ea1f526fcfffd4f5f330203483956662fa9638fd45669/SoundFile-0.9.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1dcb1e2bb0d57854fbc08f5961a7fa5f", "sha256": "6179c20d9c70f2c928c74584ae5f054c5020dfecf59842168f026bcd8839bb53" }, "downloads": -1, "filename": "SoundFile-0.9.0.tar.gz", "has_sig": false, "md5_digest": "1dcb1e2bb0d57854fbc08f5961a7fa5f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1718556, "upload_time": "2017-02-02T15:17:42", "url": "https://files.pythonhosted.org/packages/63/96/6c538b397bed75e7018d6d77c73035988214d03dc2b4c9b4772010c62dec/SoundFile-0.9.0.tar.gz" } ], "0.9.0.post1": [ { "comment_text": "", "digests": { "md5": "9cf9bcf3a541248734fe7976650ae109", "sha256": "ce936572c0e9ec35bc32649a2e9ff066d61f7efcc6c93f5a054029534d0295a4" }, "downloads": -1, "filename": "SoundFile-0.9.0.post1-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33-none-macosx_10_5_x86_64.macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "9cf9bcf3a541248734fe7976650ae109", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 573127, "upload_time": "2017-02-03T08:32:32", "url": "https://files.pythonhosted.org/packages/6e/89/30d22d4d35b4eb0c1d68a8bc2d554be34e7acd6fa8bee32036e9bb012fea/SoundFile-0.9.0.post1-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33-none-macosx_10_5_x86_64.macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "4ccf7465f7c4555807dd86481220a854", "sha256": "9bebad05bd4072a3a436e594ccce13a5f2487d69fdc8f287d6d2f0feacd7e9ee" }, "downloads": -1, "filename": "SoundFile-0.9.0.post1-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33-none-win32.whl", "has_sig": false, "md5_digest": "4ccf7465f7c4555807dd86481220a854", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 639207, "upload_time": "2017-02-03T08:32:36", "url": "https://files.pythonhosted.org/packages/9b/59/f9d0a102e8aa4485977aa4db00ed4125c36a8f44b02ac0d34b2b2c1208a9/SoundFile-0.9.0.post1-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "f9a7ebae32c9c4a1d3504ae35f84b92b", "sha256": "50d2759a63a7a39ac109567dd46d1afb5e4bc81e206d5d24aa87b8528bed8536" }, "downloads": -1, "filename": "SoundFile-0.9.0.post1-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33-none-win_amd64.whl", "has_sig": false, "md5_digest": "f9a7ebae32c9c4a1d3504ae35f84b92b", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 671816, "upload_time": "2017-02-03T08:32:41", "url": "https://files.pythonhosted.org/packages/e0/59/01d91637283e715768bbf1dc3d53ad72bea453a0873ea1d3ff59323c49cb/SoundFile-0.9.0.post1-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "8ed2280e54cf6cf2a6d7f1fcdff30f7f", "sha256": "78912de229e8cfca78b0f3a5e001a4b754ac293f1e34ff053e6b6416b13e6f7d" }, "downloads": -1, "filename": "SoundFile-0.9.0.post1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8ed2280e54cf6cf2a6d7f1fcdff30f7f", "packagetype": "bdist_wheel", "python_version": "3.4", "requires_python": null, "size": 24138, "upload_time": "2017-02-03T08:32:44", "url": "https://files.pythonhosted.org/packages/bc/16/8f35e0e96b6fb94ee63313409fc8bfccc29c1c5c89f6ab83a5fdfc4c68ac/SoundFile-0.9.0.post1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7f5a2635b7a51ccd61e0a0a0b3c8da27", "sha256": "e01b53f6ba6dce389f388c819b43466b8708e85e9d832a8a3a1ff95af7c60731" }, "downloads": -1, "filename": "SoundFile-0.9.0.post1.tar.gz", "has_sig": false, "md5_digest": "7f5a2635b7a51ccd61e0a0a0b3c8da27", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1817974, "upload_time": "2017-02-03T08:32:50", "url": "https://files.pythonhosted.org/packages/0b/44/b631e3e82448989112c862b5ce066822f21eac0bc0735d2ac787a583a18f/SoundFile-0.9.0.post1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "cb0b8ed3505216d4934f1a91c577734f", "sha256": "3f90971bb1884575ada9a0731e878c91cc1ffde14a778f0857deaa2fd04849ac" }, "downloads": -1, "filename": "SoundFile-0.10.2-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33-none-macosx_10_5_x86_64.macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "cb0b8ed3505216d4934f1a91c577734f", "packagetype": "bdist_wheel", "python_version": "py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33", "requires_python": null, "size": 616697, "upload_time": "2018-04-19T07:13:19", "url": "https://files.pythonhosted.org/packages/d2/06/58d71f2041bc89919f56a69f8f2b9535a55d513bb005fbe4f8ee5d367170/SoundFile-0.10.2-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33-none-macosx_10_5_x86_64.macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f8fcfb85102ecb3442c541d5680afc67", "sha256": "7fe04272cbfb94ab648acb0db31ace0800f5a4cf46e9d45b4d71ddb15abce1a0" }, "downloads": -1, "filename": "SoundFile-0.10.2-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33-none-win32.whl", "has_sig": false, "md5_digest": "f8fcfb85102ecb3442c541d5680afc67", "packagetype": "bdist_wheel", "python_version": "py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33", "requires_python": null, "size": 654769, "upload_time": "2018-04-19T07:13:22", "url": "https://files.pythonhosted.org/packages/cc/27/a494e37d5b26f83286802673b993ab41513df136d2c279f142cbc4536c35/SoundFile-0.10.2-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33-none-win32.whl" }, { "comment_text": "", "digests": { "md5": "ec134511b3df8f44332b1d637b84c856", "sha256": "80a3d2ed37199ffa7066c097d7b82b8413922e22870b62b54dc264bf0169f4c2" }, "downloads": -1, "filename": "SoundFile-0.10.2-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33-none-win_amd64.whl", "has_sig": false, "md5_digest": "ec134511b3df8f44332b1d637b84c856", "packagetype": "bdist_wheel", "python_version": "py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33", "requires_python": null, "size": 692723, "upload_time": "2018-04-19T07:13:24", "url": "https://files.pythonhosted.org/packages/d7/72/1e80bc350b9a5e8f12fb0814a77d4f77f887382f076501fdaa89aa731b76/SoundFile-0.10.2-py2.py3.cp26.cp27.cp32.cp33.cp34.cp35.cp36.pp27.pp32.pp33-none-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "af09043ea37fc13a9ff9360900425433", "sha256": "181393f8daac38bda997c4284b760bcd726dc0e847f620020d7bf2d3d538a985" }, "downloads": -1, "filename": "SoundFile-0.10.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "af09043ea37fc13a9ff9360900425433", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 25194, "upload_time": "2018-04-19T07:13:17", "url": "https://files.pythonhosted.org/packages/68/64/1191352221e2ec90db7492b4bf0c04fd9d2508de67b3f39cbf093cd6bd86/SoundFile-0.10.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ff7ca509492baf3bb1ed5620af643900", "sha256": "637f6218c867b8cae80f6989634a0813b416b3e6132480d056e6e5a89a921571" }, "downloads": -1, "filename": "SoundFile-0.10.2.tar.gz", "has_sig": false, "md5_digest": "ff7ca509492baf3bb1ed5620af643900", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40309, "upload_time": "2018-05-08T13:40:48", "url": "https://files.pythonhosted.org/packages/9d/6d/b0687afe9f08809ce035348b4172a248aaf44def7f29e4b575677312176d/SoundFile-0.10.2.tar.gz" } ] }