{ "info": { "author": "Laboratory for Audiovisual Communications, EPFL", "author_email": "fakufaku@gmail.ch", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Information Technology", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Topic :: Multimedia :: Sound/Audio :: Analysis", "Topic :: Multimedia :: Sound/Audio :: Speech", "Topic :: Scientific/Engineering :: Information Analysis", "Topic :: Scientific/Engineering :: Physics" ], "description": ".. image:: https://github.com/LCAV/pyroomacoustics/raw/master/logo/pyroomacoustics_logo_horizontal.png\n :scale: 80 %\n :alt: Pyroomacoustics logo\n :align: left\n\n------------------------------------------------------------------------------\n\n.. image:: https://travis-ci.org/LCAV/pyroomacoustics.svg?branch=pypi-release\n :target: https://travis-ci.org/LCAV/pyroomacoustics\n.. image:: https://readthedocs.org/projects/pyroomacoustics/badge/?version=pypi-release\n :target: http://pyroomacoustics.readthedocs.io/en/pypi-release/\n :alt: Documentation Status\n\nSummary\n-------\n\nPyroomacoustics is a software package aimed at the rapid development\nand testing of audio array processing algorithms. The content of the package\ncan be divided into three main components: \n\n1. Intuitive Python object-oriented interface to quickly construct different simulation scenarios involving multiple sound sources and microphones in 2D and 3D rooms;\n2. Fast C implementation of the image source model for general polyhedral rooms to efficiently generate room impulse responses and simulate the propagation between sources and receivers;\n3. Reference implementations of popular algorithms for STFT, beamforming, direction finding, adaptive filtering, source separation, and single channel denoising.\n\nTogether, these components form a package with the potential to speed up the time to market\nof new algorithms by significantly reducing the implementation overhead in the\nperformance evaluation step. Please refer to `this notebook `_\nfor a demonstration of the different components of this package.\n\nRoom Acoustics Simulation\n`````````````````````````\n\nConsider the following scenario.\n\n Suppose, for example, you wanted to produce a radio crime drama, and it\n so happens that, according to the scriptwriter, the story line absolutely must culminate\n in a satanic mass that quickly degenerates into a violent shootout, all taking place\n right around the altar of the highly reverberant acoustic environment of Oxford's\n Christ Church cathedral. To ensure that it sounds authentic, you asked the Dean of\n Christ Church for permission to record the final scene inside the cathedral, but\n somehow he fails to be convinced of the artistic merit of your production, and declines\n to give you permission. But recorded in a conventional studio, the scene sounds flat.\n So what do you do?\n\n -- Schnupp, Nelken, and King, *Auditory Neuroscience*, 2010\n\nFaced with this difficult situation, **pyroomacoustics** can save the day by simulating\nthe environment of the Christ Church cathedral!\n\nAt the core of the package is a room impulse response (RIR) generator based on the\nimage source model that can handle\n\n* Convex and non-convex rooms\n* 2D/3D rooms\n\nBoth a pure Python implementation and a C accelerator are included for maximum\nspeed and compatibility.\n\nThe philosophy of the package is to abstract all necessary elements of\nan experiment using an object-oriented programming approach. Each of these elements\nis represented using a class and an experiment can be designed by combining\nthese elements just as one would do in a real experiment.\n\nLet's imagine we want to simulate a delay-and-sum beamformer that uses a linear\narray with four microphones in a shoe box shaped room that contains only one\nsource of sound. First, we create a room object, to which we add a microphone\narray object, and a sound source object. Then, the room object has methods\nto compute the RIR between source and receiver. The beamformer object then extends\nthe microphone array class and has different methods to compute the weights, for\nexample delay-and-sum weights. See the example below to get an idea of what the\ncode looks like.\n\nThe `Room` class also allows one to process sound samples emitted by sources,\neffectively simulating the propagation of sound between sources and microphones.\nAt the input of the microphones composing the beamformer, an STFT (short time\nFourier transform) engine allows to quickly process the signals through the\nbeamformer and evaluate the output.\n\nReference Implementations\n`````````````````````````\n\nIn addition to its core image source model simulation, **pyroomacoustics**\nalso contains a number of reference implementations of popular audio processing\nalgorithms for\n\n* `Short time Fourier transform `_ (block + online)\n* `beamforming `_\n* `direction of arrival `_ (DOA) finding\n* `adaptive filtering `_ (NLMS, RLS)\n* `blind source separation `_ (AuxIVA, Trinicon, ILRMA, SparseAuxIVA, FastMNMF)\n* `single channel denoising `_ (Spectral Subtraction, Subspace, Iterative Wiener)\n\nWe use an object-oriented approach to abstract the details of\nspecific algorithms, making them easy to compare. Each algorithm can be tuned through optional parameters. We have tried to\npre-set values for the tuning parameters so that a run with the default values\nwill in general produce reasonable results.\n\nDatasets\n````````\nIn an effort to simplify the use of datasets, we provide a few wrappers that\nallow to quickly load and sort through some popular speech corpora. At the\nmoment we support the following.\n\n* `CMU ARCTIC `_\n* `TIMIT `_\n* `Google Speech Commands Dataset `_\n\nFor more details, see the `doc `_.\n\nQuick Install\n-------------\n\nInstall the package with pip::\n\n pip install pyroomacoustics\n\nA `cookiecutter `_\nis available that generates a working simulation script for a few 2D/3D\nscenarios::\n\n # if necessary install cookiecutter\n pip install cookiecutter\n\n # create the simulation script\n cookiecutter gh:fakufaku/cookiecutter-pyroomacoustics-sim\n\n # run the newly created script\n python .py\n\nDependencies\n------------\n\nThe minimal dependencies are::\n\n numpy \n scipy>=0.18.0\n Cython\n\nwhere ``Cython`` is only needed to benefit from the compiled accelerated simulator.\nThe simulator itself has a pure Python counterpart, so that this requirement could\nbe ignored, but is much slower.\n\nOn top of that, some functionalities of the package depend on extra packages::\n\n samplerate # for resampling signals\n matplotlib # to create graphs and plots\n sounddevice # to play sound samples\n mir_eval # to evaluate performance of source separation in examples\n\nThe ``requirements.txt`` file lists all packages necessary to run all of the\nscripts in the ``examples`` folder.\n\nThis package is mainly developed under Python 3.5. We try as much as possible to keep\nthings compatible with Python 2.7 and run tests and builds under both. However, the tests\ncode coverage is far from 100% and it might happen that we break some things in Python 2.7 from\ntime to time. We apologize in advance for that.\n\nUnder Linux and Mac OS, the compiled accelerators require a valid compiler to\nbe installed, typically this is GCC. When no compiler is present, the package\nwill still install but default to the pure Python implementation which is much\nslower. On Windows, we provide pre-compiled Python Wheels for Python 3.5 and\n3.6.\n\nExample\n-------\n\nHere is a quick example of how to create and visual the response of a\nbeamformer in a room.\n\n.. code-block:: python\n\n import numpy as np\n import matplotlib.pyplot as plt\n import pyroomacoustics as pra\n\n # Create a 4 by 6 metres shoe box room\n room = pra.ShoeBox([4,6])\n\n # Add a source somewhere in the room\n room.add_source([2.5, 4.5])\n\n # Create a linear array beamformer with 4 microphones\n # with angle 0 degrees and inter mic distance 10 cm\n R = pra.linear_2D_array([2, 1.5], 4, 0, 0.1)\n room.add_microphone_array(pra.Beamformer(R, room.fs))\n\n # Now compute the delay and sum weights for the beamformer\n room.mic_array.rake_delay_and_sum_weights(room.sources[0][:1])\n\n # plot the room and resulting beamformer\n room.plot(freq=[1000, 2000, 4000, 8000], img_order=0)\n plt.show()\n\nMore examples\n-------------\n\nA couple of `detailed demos with illustrations `_ are available. \n\nA comprehensive set of examples covering most of the functionalities\nof the package can be found in the ``examples`` folder of the `GitHub\nrepository `_.\n\nAuthors\n-------\n\n* Robin Scheibler\n* Ivan Dokmani\u0107\n* Sidney Barthe\n* Eric Bezzam\n* Hanjie Pan\n\nHow to contribute\n-----------------\n\nIf you would like to contribute, please clone the\n`repository `_ and send a pull request.\n\nFor more details, see our `CONTRIBUTING\n`_\npage.\n\nAcademic publications\n---------------------\n\nThis package was developed to support academic publications. The package\ncontains implementations for DOA algorithms and acoustic beamformers introduced\nin the following papers.\n\n* H\\. Pan, R. Scheibler, I. Dokmanic, E. Bezzam and M. Vetterli. *FRIDA: FRI-based DOA estimation for arbitrary array layout*, ICASSP 2017, New Orleans, USA, 2017.\n* I\\. Dokmani\u0107, R. Scheibler and M. Vetterli. *Raking the Cocktail Party*, in IEEE Journal of Selected Topics in Signal Processing, vol. 9, num. 5, p. 825 - 836, 2015.\n* R\\. Scheibler, I. Dokmani\u0107 and M. Vetterli. *Raking Echoes in the Time Domain*, ICASSP 2015, Brisbane, Australia, 2015.\n\nIf you use this package in your own research, please cite `our paper describing it `_.\n\n\n R\\. Scheibler, E. Bezzam, I. Dokmani\u0107, *Pyroomacoustics: A Python package for audio room simulations and array processing algorithms*, Proc. IEEE ICASSP, Calgary, CA, 2018.\n\nLicense\n-------\n\n::\n\n Copyright (c) 2014-2018 EPFL-LCAV\n\n Permission is hereby granted, free of charge, to any person obtaining a copy of\n this software and associated documentation files (the \"Software\"), to deal in\n the Software without restriction, including without limitation the rights to\n use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\n of the Software, and to permit persons to whom the Software is furnished to do\n so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/LCAV/pyroomacoustics", "keywords": "room acoustics signal processing doa beamforming adaptive", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "pyroomacoustics", "package_url": "https://pypi.org/project/pyroomacoustics/", "platform": "", "project_url": "https://pypi.org/project/pyroomacoustics/", "project_urls": { "Homepage": "https://github.com/LCAV/pyroomacoustics" }, "release_url": "https://pypi.org/project/pyroomacoustics/0.2.0/", "requires_dist": null, "requires_python": "", "summary": "A simple framework for room acoustics and audio processing in Python.", "version": "0.2.0" }, "last_serial": 5782366, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "6596b573f5c38d5265bb3cf70fc41018", "sha256": "95f162cc6692843c8b09e38e761240dd050ead6a1a97d51727b5668112885597" }, "downloads": -1, "filename": "pyroomacoustics-0.1.0-py2.7-linux-x86_64.egg", "has_sig": false, "md5_digest": "6596b573f5c38d5265bb3cf70fc41018", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 148015, "upload_time": "2017-06-21T09:25:10", "url": "https://files.pythonhosted.org/packages/0c/42/0bd49cd9faf6f9e8a3d9c68766901f8078344639b0c4c38d81295e17537b/pyroomacoustics-0.1.0-py2.7-linux-x86_64.egg" }, { "comment_text": "", "digests": { "md5": "5ec863dedd012e54dcbd7e20b8e3ce9b", "sha256": "fe2ee1bb29be3a93b7255c23755754833b012258d54e19aa61b67355591345af" }, "downloads": -1, "filename": "pyroomacoustics-0.1.0.tar.gz", "has_sig": false, "md5_digest": "5ec863dedd012e54dcbd7e20b8e3ce9b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 61791, "upload_time": "2017-06-21T09:25:12", "url": "https://files.pythonhosted.org/packages/c0/7e/f92a54b4a9adfe14ac9ea3774561664b10099e28eb19f73719ad16fbc2fe/pyroomacoustics-0.1.0.tar.gz" } ], "0.1.11": [ { "comment_text": "", "digests": { "md5": "91810231bc45807185b0bf210475dc81", "sha256": "f423035b8db71d6bcf59d9af9407a38a26b04a00e004dc3fd9f0ba7b0a22ec20" }, "downloads": -1, "filename": "pyroomacoustics-0.1.11.tar.gz", "has_sig": false, "md5_digest": "91810231bc45807185b0bf210475dc81", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 125459, "upload_time": "2017-10-12T17:24:36", "url": "https://files.pythonhosted.org/packages/bf/77/170b64d0019841e3a6614416da8abedcab72c31635b0ad335d947d770793/pyroomacoustics-0.1.11.tar.gz" } ], "0.1.12": [ { "comment_text": "", "digests": { "md5": "b154dfbbc4550737ba00c54009f329b3", "sha256": "6813fa1a5259fcf5c26d66f9ea70b83c8af5b53279560c0a1b74fd38b0cb9ac6" }, "downloads": -1, "filename": "pyroomacoustics-0.1.12.tar.gz", "has_sig": false, "md5_digest": "b154dfbbc4550737ba00c54009f329b3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 121631, "upload_time": "2017-10-23T01:06:26", "url": "https://files.pythonhosted.org/packages/95/7f/f23e9d28ee6a662ec0b84010945282ab79f8f2abb3ff2dbd1d02e482ebbf/pyroomacoustics-0.1.12.tar.gz" } ], "0.1.13": [ { "comment_text": "", "digests": { "md5": "2db65954c9ed3d1a88a933c9b2d967cd", "sha256": "817921f3a34b131a6ee7f721b2c5ace0944114b3052b24e3fe076007c7e850b3" }, "downloads": -1, "filename": "pyroomacoustics-0.1.13.tar.gz", "has_sig": false, "md5_digest": "2db65954c9ed3d1a88a933c9b2d967cd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 121621, "upload_time": "2017-10-23T14:53:19", "url": "https://files.pythonhosted.org/packages/f1/0d/97ca42bfebfec4090e46cda215f150ce47399d7858c1263d3d9af5e7de85/pyroomacoustics-0.1.13.tar.gz" } ], "0.1.14": [ { "comment_text": "", "digests": { "md5": "52fbf391840871e9a402859c0514a44f", "sha256": "323b6c22ebd2f031ed7c87ca3010fc6a6f83ffe534c86df715be398fd5ae9b8a" }, "downloads": -1, "filename": "pyroomacoustics-0.1.14.tar.gz", "has_sig": false, "md5_digest": "52fbf391840871e9a402859c0514a44f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 121500, "upload_time": "2018-02-22T05:57:54", "url": "https://files.pythonhosted.org/packages/55/83/f143e230d8ed6770bb7bb1426f7b2d1638e88156567db0911b29ad61c104/pyroomacoustics-0.1.14.tar.gz" } ], "0.1.15": [ { "comment_text": "", "digests": { "md5": "641842d4978030f4884b81368319de2e", "sha256": "1a2798b8aaf2e9a5c5c3bce560bd1adff88f4035c0e059838778316f378a85c3" }, "downloads": -1, "filename": "pyroomacoustics-0.1.15.tar.gz", "has_sig": false, "md5_digest": "641842d4978030f4884b81368319de2e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 128012, "upload_time": "2018-02-22T17:29:45", "url": "https://files.pythonhosted.org/packages/90/2e/3edca32954670a8014de2e1ad17a2d66eaae30c8c77e5e088f150531b98d/pyroomacoustics-0.1.15.tar.gz" } ], "0.1.16": [ { "comment_text": "", "digests": { "md5": "6c3bb0f237b4d1be8b440874a3c790e8", "sha256": "b721c8c018f3e102aae84369a8f3abc48bced58db6174bc902dcdd8cecece8c5" }, "downloads": -1, "filename": "pyroomacoustics-0.1.16-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "6c3bb0f237b4d1be8b440874a3c790e8", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 158124, "upload_time": "2018-03-05T18:00:52", "url": "https://files.pythonhosted.org/packages/b6/89/dc03bd54cbe2e1ad11c50e215cbe00faba5d6c16d04fd32d08882622e9ec/pyroomacoustics-0.1.16-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "23afa859302014291f1d9768fb82a939", "sha256": "a79e8bb2b9f6d1b42149dea828af92030d22297139fbbf63892591444b2a7eb3" }, "downloads": -1, "filename": "pyroomacoustics-0.1.16-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "23afa859302014291f1d9768fb82a939", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 159829, "upload_time": "2018-03-05T18:01:29", "url": "https://files.pythonhosted.org/packages/16/49/71fac06d209024b08348ea784ec558e6121609cff8434c38e9bfba6c1829/pyroomacoustics-0.1.16-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "1157c0920405fef28c4761c7d5a44478", "sha256": "f378d7113748454de3e65fc578c3080f7911c8cbfbbbf47df6a16de7c9db71a8" }, "downloads": -1, "filename": "pyroomacoustics-0.1.16.tar.gz", "has_sig": false, "md5_digest": "1157c0920405fef28c4761c7d5a44478", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 134109, "upload_time": "2018-03-05T17:38:22", "url": "https://files.pythonhosted.org/packages/07/54/7bcf258d57b3a6b7f0d93d67deec4541ee2e49c309f728dc698f7700a6bd/pyroomacoustics-0.1.16.tar.gz" } ], "0.1.17": [ { "comment_text": "", "digests": { "md5": "54e15a6f802b66b7ca6b5319272bb512", "sha256": "8cf0e615a44c8c36fccef9d44e6013d7fa229bc531b4d0746cb9a84ebfc3793d" }, "downloads": -1, "filename": "pyroomacoustics-0.1.17-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "54e15a6f802b66b7ca6b5319272bb512", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 158139, "upload_time": "2018-03-23T01:45:48", "url": "https://files.pythonhosted.org/packages/f5/d0/cce616272dde966ef6520773c9880881ebaf3fa6be4afdf9d8227fcb2443/pyroomacoustics-0.1.17-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "4f62c7171b5e5a2e8c1cc6638679eae7", "sha256": "2bd62ae1d51b63c41e704eed1e65154b086220b06c637584fb6d5bce73a5080c" }, "downloads": -1, "filename": "pyroomacoustics-0.1.17-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "4f62c7171b5e5a2e8c1cc6638679eae7", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 159863, "upload_time": "2018-03-23T02:02:55", "url": "https://files.pythonhosted.org/packages/45/b1/bf5ed32c130fafcfb3b9ca412c79acc9032bc2b27ada01381d1ad66e07d3/pyroomacoustics-0.1.17-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "24a337c31cf16a76a2cf8e9ca2eb8224", "sha256": "90feba5313dc3961f121be59ea31aa3710a1fe272af76c063d6dd5a634a5b7d1" }, "downloads": -1, "filename": "pyroomacoustics-0.1.17.tar.gz", "has_sig": false, "md5_digest": "24a337c31cf16a76a2cf8e9ca2eb8224", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 134089, "upload_time": "2018-03-23T00:32:59", "url": "https://files.pythonhosted.org/packages/69/ef/40d0692a80d5fac9bd4a5bf0d45a244f0c685c72cae018a52a71489f5f94/pyroomacoustics-0.1.17.tar.gz" } ], "0.1.18": [ { "comment_text": "", "digests": { "md5": "f792b6be7a3fc917658f08b88affeeea", "sha256": "d66b1261b1f86bf503c65774f0487784a6f1817c4f3face38ace16aadc55bdce" }, "downloads": -1, "filename": "pyroomacoustics-0.1.18-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "f792b6be7a3fc917658f08b88affeeea", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 157515, "upload_time": "2018-04-24T07:42:02", "url": "https://files.pythonhosted.org/packages/f3/b0/0c223952a30368c8b47d1165bd9750460b0e2fb0456f70155ba4fe3e2638/pyroomacoustics-0.1.18-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "1d9dc03c07a79df6954bb7f6561a9225", "sha256": "5eaffeb891dc3e72d341ad77e743e8f45c7b5588f8c67a39897180ee9c886b15" }, "downloads": -1, "filename": "pyroomacoustics-0.1.18-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "1d9dc03c07a79df6954bb7f6561a9225", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 159237, "upload_time": "2018-04-24T07:42:16", "url": "https://files.pythonhosted.org/packages/df/5d/9e79f8c7a060f7ad6cf2f7301c1d9b311a707ca1082bc8d076648ae21d2b/pyroomacoustics-0.1.18-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "b6fd6c78a89ce4211e611ee2926d8094", "sha256": "b1e4d52612ff79533f38a8ca865bf493aa4d35e1d80a0df561e19a72d189353b" }, "downloads": -1, "filename": "pyroomacoustics-0.1.18-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "b6fd6c78a89ce4211e611ee2926d8094", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 157511, "upload_time": "2018-04-24T07:42:27", "url": "https://files.pythonhosted.org/packages/da/02/7e0172e0dfbd611911fc26e4350a79fa4402cb87d69ec92a59a532b8f255/pyroomacoustics-0.1.18-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "2dd6ab1f32ebfc5539aa5bc6ffbd8a4e", "sha256": "b18418b1d34f119d33bb27b193a5c4d9ff6c38e5bfa47c29dc88e1409962424d" }, "downloads": -1, "filename": "pyroomacoustics-0.1.18-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "2dd6ab1f32ebfc5539aa5bc6ffbd8a4e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 159234, "upload_time": "2018-04-24T07:42:38", "url": "https://files.pythonhosted.org/packages/53/81/bf44a825e68b643f63abcea5cc049b70f421a01910e960540a00b45c706f/pyroomacoustics-0.1.18-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "bc8fb1a06af80e975bbe4aec005729a7", "sha256": "b89c2bf43963c5b9f701af79ee4f6216ca65de7e3e5375e478d4f10a15a95904" }, "downloads": -1, "filename": "pyroomacoustics-0.1.18.tar.gz", "has_sig": false, "md5_digest": "bc8fb1a06af80e975bbe4aec005729a7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 136762, "upload_time": "2018-04-24T06:25:45", "url": "https://files.pythonhosted.org/packages/35/e0/99dedd3e8c9c9c6bcc3526c39453e1fc36d86f13c5eb5f41e351286dcc2a/pyroomacoustics-0.1.18.tar.gz" } ], "0.1.19": [ { "comment_text": "", "digests": { "md5": "931baf0e3d4c8f546c55ecfdde5d8314", "sha256": "62eb34b498af0c3f3b31be5fd5755028a1fbfe1282a0cd8c5ccba122bc01d6b7" }, "downloads": -1, "filename": "pyroomacoustics-0.1.19-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "931baf0e3d4c8f546c55ecfdde5d8314", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 221813, "upload_time": "2018-09-23T17:02:55", "url": "https://files.pythonhosted.org/packages/3a/3a/2ecb15048cf83ba3dd5364aa83597488690f70cd61f54d134d9cfc99634c/pyroomacoustics-0.1.19-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "a66a57c6ae730e112d1d81087892caaa", "sha256": "9b993660bc7f2e675107eec44df2133e93c2558159453099b52d968ea9856aae" }, "downloads": -1, "filename": "pyroomacoustics-0.1.19-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "a66a57c6ae730e112d1d81087892caaa", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 235298, "upload_time": "2018-09-23T17:03:12", "url": "https://files.pythonhosted.org/packages/a4/20/11799694dd04d5ed62f35e52b3cdc1efcff68c58ae9a2488d2e0f3aa223e/pyroomacoustics-0.1.19-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "da3c3c03d1100ae82e148ae2c020394c", "sha256": "4d0130ae51ed52f0d493c9340f7a0b1a2a0948c3bd7a0f6597d4b67f3dbec6ce" }, "downloads": -1, "filename": "pyroomacoustics-0.1.19-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "da3c3c03d1100ae82e148ae2c020394c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 222286, "upload_time": "2018-09-23T17:03:24", "url": "https://files.pythonhosted.org/packages/1c/37/c63711b6d72c2614cde653da61917d21754cd23a7374586d8811475e923d/pyroomacoustics-0.1.19-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "7a8a957c108643b9f4535825c12afcb7", "sha256": "f797f8f2528ca4cbfacd54865bf5123ea62314fae5e84dc4a14a037ed9b5dd48" }, "downloads": -1, "filename": "pyroomacoustics-0.1.19-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "7a8a957c108643b9f4535825c12afcb7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 235910, "upload_time": "2018-09-23T17:03:43", "url": "https://files.pythonhosted.org/packages/7d/2b/a39a706fa93b726d76586d22d1cf708e2a3038b5475efaa96e015bb069ee/pyroomacoustics-0.1.19-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "83b5a04ab4936371f5a102d50c361c26", "sha256": "cb545f5d5d3dfa31b5079868310cf775bfc438445db43d375041a0209cd41998" }, "downloads": -1, "filename": "pyroomacoustics-0.1.19.tar.gz", "has_sig": false, "md5_digest": "83b5a04ab4936371f5a102d50c361c26", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 248709, "upload_time": "2018-09-23T15:17:14", "url": "https://files.pythonhosted.org/packages/83/dc/4ca50a14c98d18faea7e0bde0e00a43e000dee472ceaca11d92d1f4c4609/pyroomacoustics-0.1.19.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "b78225d39d8e9a4c2878ab6009bdf5f6", "sha256": "5f0cc786c61d5e10402ab5b87a91c63731555e92f9ae7261dd18c4d395ab18fc" }, "downloads": -1, "filename": "pyroomacoustics-0.1.2-py2.7-linux-x86_64.egg", "has_sig": false, "md5_digest": "b78225d39d8e9a4c2878ab6009bdf5f6", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 244802, "upload_time": "2017-06-21T12:18:00", "url": "https://files.pythonhosted.org/packages/a0/b4/c2bd4bf6f757c799534d80b615e04795f06ab9e7302ce772f837dbf06603/pyroomacoustics-0.1.2-py2.7-linux-x86_64.egg" }, { "comment_text": "", "digests": { "md5": "38a25fe5231c98c576f9f1fae6ef6540", "sha256": "9998c9df945a2860ef05825220cf2e3882ff000ea31e2036637739a67ff91272" }, "downloads": -1, "filename": "pyroomacoustics-0.1.2.tar.gz", "has_sig": false, "md5_digest": "38a25fe5231c98c576f9f1fae6ef6540", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 97412, "upload_time": "2017-06-21T12:18:02", "url": "https://files.pythonhosted.org/packages/60/26/8d4e68ff84160d15fdbe543ed1c0e6a516d67fe21bfd53db1f8a2fce0fad/pyroomacoustics-0.1.2.tar.gz" } ], "0.1.20": [ { "comment_text": "", "digests": { "md5": "232bcc296e25b59028f546ba92b3479e", "sha256": "af45c104adabf63f95c44840decd714bcfc6c8e3ca34e2e8eaf42f3d3533975f" }, "downloads": -1, "filename": "pyroomacoustics-0.1.20-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "232bcc296e25b59028f546ba92b3479e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 224803, "upload_time": "2018-10-04T05:09:55", "url": "https://files.pythonhosted.org/packages/b2/40/204b1f914046689bbeb31351523d1a44c8a852a46aebcce48b7a5b7e2f70/pyroomacoustics-0.1.20-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "a81371cec4e3d22a2d386a070cfd79e4", "sha256": "18ac8867bfb3224243c6c23f52edf38da5b4fbce733109376129edfd3208b282" }, "downloads": -1, "filename": "pyroomacoustics-0.1.20-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "a81371cec4e3d22a2d386a070cfd79e4", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 238280, "upload_time": "2018-10-04T05:10:11", "url": "https://files.pythonhosted.org/packages/ee/29/1a9ac70a4419e2a2c546b6a9907609a7a5a174cd397c7fca1a5ef1bd00c6/pyroomacoustics-0.1.20-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "8e0f7b7c05f2e8cd650623d50934de21", "sha256": "a94c2a8e51491d8b6cd3380b70f91aed6a368874c698e70e6466fa39a000345d" }, "downloads": -1, "filename": "pyroomacoustics-0.1.20-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "8e0f7b7c05f2e8cd650623d50934de21", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 226092, "upload_time": "2018-10-04T05:10:26", "url": "https://files.pythonhosted.org/packages/d6/76/1180548fab5288ebed55ef1ed6d4ed392fc13aa9a85b51b2b1bbb1c12076/pyroomacoustics-0.1.20-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "8eb961afe4ffa83faba675087e4af5c1", "sha256": "1638c8e7ca8c2281be684069d5cb3efc2db716138b8ba0c348025c2009e39095" }, "downloads": -1, "filename": "pyroomacoustics-0.1.20-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "8eb961afe4ffa83faba675087e4af5c1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 239714, "upload_time": "2018-10-04T05:10:39", "url": "https://files.pythonhosted.org/packages/06/5b/452c0ac7fe3d3d14c537867952a150df53585dfbcb1956cb09c2ed30b897/pyroomacoustics-0.1.20-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "5191d899ed9b714b3388f35d4dc7f709", "sha256": "d681d54b4a3be3a8ad5f3f9ac2d2b8b87f93449dbd36b96af38303a5c8839a60" }, "downloads": -1, "filename": "pyroomacoustics-0.1.20.tar.gz", "has_sig": false, "md5_digest": "5191d899ed9b714b3388f35d4dc7f709", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 251452, "upload_time": "2018-10-04T02:19:41", "url": "https://files.pythonhosted.org/packages/36/53/a4c41248c1fe46921e20b7e324d467fce5cd5f0d19dfb9216bb99b57019b/pyroomacoustics-0.1.20.tar.gz" } ], "0.1.21": [ { "comment_text": "", "digests": { "md5": "0cde3455e89444586fa8617f5b9b3ce3", "sha256": "55caffd5240516bb34f72399a16ceea2890298c7a09f176159c27dc567fb259e" }, "downloads": -1, "filename": "pyroomacoustics-0.1.21-cp27-cp27m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "0cde3455e89444586fa8617f5b9b3ce3", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 249062, "upload_time": "2018-12-20T04:50:24", "url": "https://files.pythonhosted.org/packages/bd/33/c5e5ad7a659f873329dceae92eb185b175775608f175d3846686faa16dfb/pyroomacoustics-0.1.21-cp27-cp27m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "cdc93c6315f960d5e964fde77b43ad70", "sha256": "ed4c1ac82b2af81671c56810c61086dd464d7393aae804b8b078e5bf9f101e7e" }, "downloads": -1, "filename": "pyroomacoustics-0.1.21-cp35-cp35m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "cdc93c6315f960d5e964fde77b43ad70", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 247604, "upload_time": "2018-12-20T04:50:16", "url": "https://files.pythonhosted.org/packages/14/86/0997f72b718966c0e40fe589dd15731920757025c3d2ba9f885f55087e43/pyroomacoustics-0.1.21-cp35-cp35m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e836dab52a5e448cf4b2ead4b3ab7c72", "sha256": "7a695dd885c6aacb6fea98684172db675aa888e33d4cb8e7d2c01a91728f3e9b" }, "downloads": -1, "filename": "pyroomacoustics-0.1.21-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "e836dab52a5e448cf4b2ead4b3ab7c72", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 228085, "upload_time": "2018-12-20T05:09:29", "url": "https://files.pythonhosted.org/packages/6f/25/3e739943a72d6bf5f6863d8c927f6330e7d7db1d2ead98a7b5184be71bab/pyroomacoustics-0.1.21-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "a55cb29e44ba1262cc8661f656ab6eaa", "sha256": "022cc3ad4ce04a03570cde0fd1fa02eadb82064fc70ccd9b6a71330bf565e346" }, "downloads": -1, "filename": "pyroomacoustics-0.1.21-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "a55cb29e44ba1262cc8661f656ab6eaa", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 242039, "upload_time": "2018-12-20T05:17:54", "url": "https://files.pythonhosted.org/packages/fe/ae/6fad88d1dd94fcef7d9e04a956ca56703bd15345e08ef3d3743f06164419/pyroomacoustics-0.1.21-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "c2056f4bd8cf61c2a762d419532f4dcc", "sha256": "35a612e8d83deee4610683cc1550a2fc04f196e84999bb1ad23ae69f1870f4a8" }, "downloads": -1, "filename": "pyroomacoustics-0.1.21-cp36-cp36m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "c2056f4bd8cf61c2a762d419532f4dcc", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 249684, "upload_time": "2018-12-20T04:50:31", "url": "https://files.pythonhosted.org/packages/33/0f/11d2cea52b0cf01897f43b37a6bbe2a852325bdf50ec586a5a661f2035fa/pyroomacoustics-0.1.21-cp36-cp36m-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "44fc12664765ef098b0aa576de4c56e3", "sha256": "13d2ce641e8832cc4a5f134270c6ba735b7af6eab019fbd746d986c84de8f7b2" }, "downloads": -1, "filename": "pyroomacoustics-0.1.21-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "44fc12664765ef098b0aa576de4c56e3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 229489, "upload_time": "2018-12-20T05:25:29", "url": "https://files.pythonhosted.org/packages/73/76/cd1553733460ade5e96a71f573722e61b23202bd6dcceb9c6910ade20ead/pyroomacoustics-0.1.21-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "e56bb973875aec185f6e8dca7a1cead3", "sha256": "1a58f10c799311bdc9bf98de0ce57a839ba0c1fe0362431a7ce19e493208ad40" }, "downloads": -1, "filename": "pyroomacoustics-0.1.21-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "e56bb973875aec185f6e8dca7a1cead3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 243769, "upload_time": "2018-12-20T05:32:07", "url": "https://files.pythonhosted.org/packages/13/a2/aea16682a79b54e3ba83a4bb9639259d322e9bffe05864d47b418a27b3f0/pyroomacoustics-0.1.21-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "cb4a67ed026019a63610cd13cf12dd40", "sha256": "aea1ebb9993b3b5b83d693f8779b702839dade91acac8aed7661ad7205e5bb29" }, "downloads": -1, "filename": "pyroomacoustics-0.1.21-cp37-cp37m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "cb4a67ed026019a63610cd13cf12dd40", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 249984, "upload_time": "2018-12-20T04:51:22", "url": "https://files.pythonhosted.org/packages/6c/2b/879777bf0f2b753d361755b292e5c920ba608c065a6e532425390d7289d0/pyroomacoustics-0.1.21-cp37-cp37m-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "7269a3ed701037eace779bcf079a71cd", "sha256": "4d86aa45f965873244c754dd78f374f4cf51aa17ed2ef61f06bb7d79f691569a" }, "downloads": -1, "filename": "pyroomacoustics-0.1.21-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "7269a3ed701037eace779bcf079a71cd", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 229495, "upload_time": "2018-12-20T05:39:00", "url": "https://files.pythonhosted.org/packages/d5/b6/9121cb9709e187c0406745e089193f303141a9eabc7c5288861e0b47cd3e/pyroomacoustics-0.1.21-cp37-cp37m-win32.whl" }, { "comment_text": "", "digests": { "md5": "a962de77747f30722bef4312a80959a7", "sha256": "2f1424bd8dce3f4573d49ccfefef58a3a7f9f6a29e1589d0fcd7d4f21e0fc292" }, "downloads": -1, "filename": "pyroomacoustics-0.1.21-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "a962de77747f30722bef4312a80959a7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 243740, "upload_time": "2018-12-20T05:46:11", "url": "https://files.pythonhosted.org/packages/9d/cb/006fe119127365297c640f59bc08db86ceda7b73c413509ca89de0e18aba/pyroomacoustics-0.1.21-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "ff569f760db41ff0336fa2f9e3948e3d", "sha256": "039bbdffd0c468133889e8699ba2af7a3be1ec7003e642d9b9dd13ebe43047fe" }, "downloads": -1, "filename": "pyroomacoustics-0.1.21.tar.gz", "has_sig": false, "md5_digest": "ff569f760db41ff0336fa2f9e3948e3d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 255569, "upload_time": "2018-12-20T04:49:49", "url": "https://files.pythonhosted.org/packages/74/ef/bcb46b815c8e8d6f3175368c60459cf5b54ee29995458520fe423cd7755b/pyroomacoustics-0.1.21.tar.gz" } ], "0.1.22": [ { "comment_text": "", "digests": { "md5": "83f9314aceef17e82d668bb21d4ac531", "sha256": "de5146203d906bfb7ad872474c1f23322c568ac10d5785bdadb6fb42e9db60c0" }, "downloads": -1, "filename": "pyroomacoustics-0.1.22-cp35-cp35m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "83f9314aceef17e82d668bb21d4ac531", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 267621, "upload_time": "2019-04-11T08:26:52", "url": "https://files.pythonhosted.org/packages/d4/e7/7786ffa23859763b083e66fe85a58c102654a7ba162766f045bd5a191b9a/pyroomacoustics-0.1.22-cp35-cp35m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "67cee1ffaba11ad0acb5af642f5d4577", "sha256": "996cdecd42faf07382883453be0e7d95bf9af982ebb4345a6c66ccbe1cb77ef9" }, "downloads": -1, "filename": "pyroomacoustics-0.1.22-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "67cee1ffaba11ad0acb5af642f5d4577", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 248121, "upload_time": "2019-04-11T08:45:38", "url": "https://files.pythonhosted.org/packages/61/e5/9822e710125bc94127e43b676214f5be2cdb2426cd66b8a680385d00fb3d/pyroomacoustics-0.1.22-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "b35e9fb9b9ed48bbfb2754a288675cfb", "sha256": "897c2844434c51616a737374a382747fb2c8ddd7a852bdf2f06127b67d2c2334" }, "downloads": -1, "filename": "pyroomacoustics-0.1.22-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "b35e9fb9b9ed48bbfb2754a288675cfb", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 262151, "upload_time": "2019-04-11T08:54:35", "url": "https://files.pythonhosted.org/packages/65/d3/5c2a07993c97ebdce2d07f9e3862336bbfcd931bffd877db51277a8e01c3/pyroomacoustics-0.1.22-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "c4d29f1fc1ba96fa9eca6cd949eb7e52", "sha256": "911ddc4104c54c9760ef1c8b493fb3e728a716c67c7c0c48d93f84cee2b8131a" }, "downloads": -1, "filename": "pyroomacoustics-0.1.22-cp36-cp36m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "c4d29f1fc1ba96fa9eca6cd949eb7e52", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 269791, "upload_time": "2019-04-11T08:29:00", "url": "https://files.pythonhosted.org/packages/4a/f8/e5806cf13b9f926db86445adfba32cae57bc2ab1aab7fa0925e7807e57d6/pyroomacoustics-0.1.22-cp36-cp36m-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "2d28a5c5151c55e6c2efccb2f2739456", "sha256": "2a6923693d0d36601773aa4243f2f99fb26d7e9e6be194f3d581f5a43a07dc2a" }, "downloads": -1, "filename": "pyroomacoustics-0.1.22-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "2d28a5c5151c55e6c2efccb2f2739456", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 249574, "upload_time": "2019-04-11T09:01:27", "url": "https://files.pythonhosted.org/packages/6b/1d/779ddc47e8e14525ab9a4e8051afb264246b9b7ad2981be6f582b2717f42/pyroomacoustics-0.1.22-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "feefca842a21533b0251ab59cfe1da27", "sha256": "73e44a17c87cf3f5b1986aafdb77bc0cd86697092e8aa30fb930ccbb61b8c402" }, "downloads": -1, "filename": "pyroomacoustics-0.1.22-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "feefca842a21533b0251ab59cfe1da27", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 263904, "upload_time": "2019-04-11T09:11:19", "url": "https://files.pythonhosted.org/packages/93/89/7f9f4d90a04391a5fcf1f1f5d225f8c3e82eea95acefe614cc5044e6efae/pyroomacoustics-0.1.22-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "f941ea88d24ba51f1d26db108d94480e", "sha256": "755ed29e2c29b79155513e3afd2188894496ba12077354c11dec21532f836cfd" }, "downloads": -1, "filename": "pyroomacoustics-0.1.22-cp37-cp37m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "f941ea88d24ba51f1d26db108d94480e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 270131, "upload_time": "2019-04-11T08:37:15", "url": "https://files.pythonhosted.org/packages/e1/2f/256107e114fc44493883c0e4004e6833f86ddaa1cbe6ca875cf4bdec0b75/pyroomacoustics-0.1.22-cp37-cp37m-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "6e57b890087424bdc1ba64424cf5dc09", "sha256": "09d53f45f2e174f7b26e98380defac14a381bbe2c10753a3c5cc66cbaf5b8835" }, "downloads": -1, "filename": "pyroomacoustics-0.1.22-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "6e57b890087424bdc1ba64424cf5dc09", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 249592, "upload_time": "2019-04-11T09:19:31", "url": "https://files.pythonhosted.org/packages/b6/29/8128553f8ca4d1bc77a9cbabd6b7fd2f3adbdd91b41ab53e2378f3cb56eb/pyroomacoustics-0.1.22-cp37-cp37m-win32.whl" }, { "comment_text": "", "digests": { "md5": "712e83d9094b26a9e53c471edaf4bc42", "sha256": "2d2e5566a29deacd9cbbb1a6875fff0b91045bcb059d327554f9805c1222a99e" }, "downloads": -1, "filename": "pyroomacoustics-0.1.22-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "712e83d9094b26a9e53c471edaf4bc42", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 263839, "upload_time": "2019-04-11T10:16:18", "url": "https://files.pythonhosted.org/packages/05/bb/f121cd8718481d60d64ed9bc617c6e725847bce42b2bb0e5a94aa6e4b279/pyroomacoustics-0.1.22-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "29dc89b60c6b5f4f9bf160b975665488", "sha256": "c71802e0bb4a6a15adfbdd133ed8cfcb4b642c4ae985115b5739478f8456aa4e" }, "downloads": -1, "filename": "pyroomacoustics-0.1.22.tar.gz", "has_sig": false, "md5_digest": "29dc89b60c6b5f4f9bf160b975665488", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 269111, "upload_time": "2019-04-11T08:15:13", "url": "https://files.pythonhosted.org/packages/fb/13/4921889ad7c1bd6cf675a7ab47952d96c546f3b9fbe7da9a5258ca6e2ab3/pyroomacoustics-0.1.22.tar.gz" } ], "0.1.23": [ { "comment_text": "", "digests": { "md5": "8a2f5e288ff46ba8e1be8518f274ae76", "sha256": "2457737400ccd80d0d61c3b926d775d93433c3a5f6fac4e49da141a03d8700a9" }, "downloads": -1, "filename": "pyroomacoustics-0.1.23-cp27-cp27m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "8a2f5e288ff46ba8e1be8518f274ae76", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 270715, "upload_time": "2019-04-17T01:25:01", "url": "https://files.pythonhosted.org/packages/ef/34/2ac3b4ce97b8f80ac9081e37432bec0de9369d1522b8ef8f542f8655e785/pyroomacoustics-0.1.23-cp27-cp27m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e218fc1c0617ba2b58eb769fe18270f1", "sha256": "abe0418e5e098a2b04cb07b93be05076e4d3f95bbd2d16c80d2685d8116895a2" }, "downloads": -1, "filename": "pyroomacoustics-0.1.23-cp35-cp35m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "e218fc1c0617ba2b58eb769fe18270f1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 269137, "upload_time": "2019-04-17T01:33:16", "url": "https://files.pythonhosted.org/packages/81/60/74c07757060e2fbb237e112287ea1716fa78bc14e421b41fd7c246b079f6/pyroomacoustics-0.1.23-cp35-cp35m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "f7bd10a04fa35a1792378bdaea235e18", "sha256": "e4f7b3a5d70b7cfaf54628a3175f8b9ef39de7585339d827dcaaf524174aafe0" }, "downloads": -1, "filename": "pyroomacoustics-0.1.23-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "f7bd10a04fa35a1792378bdaea235e18", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 249620, "upload_time": "2019-04-17T01:02:27", "url": "https://files.pythonhosted.org/packages/5f/8e/0a57c06704e9c9fb7f7fddfda4f435af3f34a5310acfc0092f7967ec132e/pyroomacoustics-0.1.23-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "52a4a6b669576994d6899f4c1ffad8c0", "sha256": "f496c6c7635fac9cdeac60893c581d734fcc255fc711419b581f09995ecb7570" }, "downloads": -1, "filename": "pyroomacoustics-0.1.23-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "52a4a6b669576994d6899f4c1ffad8c0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 263675, "upload_time": "2019-04-17T01:09:13", "url": "https://files.pythonhosted.org/packages/17/f5/2910192a7c51fe63da6dc2b86f2cb44049d8b98e595c24b4a29eab60f23d/pyroomacoustics-0.1.23-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "52f8814d7a57d33aee6033495dc844ef", "sha256": "7126a57ce5f0df14aee5e68312ff46328d909aded79b54aa0c3d77414c7a06cb" }, "downloads": -1, "filename": "pyroomacoustics-0.1.23-cp36-cp36m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "52f8814d7a57d33aee6033495dc844ef", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 271305, "upload_time": "2019-04-17T01:34:25", "url": "https://files.pythonhosted.org/packages/00/24/09596fd67e2caa808f31b32e753a516284a155654ca3542f2ec2704e7763/pyroomacoustics-0.1.23-cp36-cp36m-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "5a435c3c6d965a073c87c55ea13bce31", "sha256": "b060a0273cefdcdc8d65d8ec3508611980b270fdcb4aaf56878201b9aed7b86d" }, "downloads": -1, "filename": "pyroomacoustics-0.1.23-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "5a435c3c6d965a073c87c55ea13bce31", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 251103, "upload_time": "2019-04-17T01:16:14", "url": "https://files.pythonhosted.org/packages/47/f2/9d861a99643dd4e3fcc90f8f0fc10ae8bb9b8eacdf983f5770a24a1fe2f1/pyroomacoustics-0.1.23-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "6471a6e4d42e60a8f4a4c5326e9d99e1", "sha256": "aeb01c18e03d8ed426bfc1e16212cf31341254bb136db5815ea91a2ddbfc99af" }, "downloads": -1, "filename": "pyroomacoustics-0.1.23-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "6471a6e4d42e60a8f4a4c5326e9d99e1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 265415, "upload_time": "2019-04-17T01:22:56", "url": "https://files.pythonhosted.org/packages/ce/65/93a0fc16ccb6b8782ca383a2b5afac0e257f5803bf4b2f10be44ab68c900/pyroomacoustics-0.1.23-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "3a3fc37d2f4b853d4857878a84f99bfb", "sha256": "2a4880080ee112098f8c31802070d3a603881ebbf8963e0732c47626319f2d04" }, "downloads": -1, "filename": "pyroomacoustics-0.1.23-cp37-cp37m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "3a3fc37d2f4b853d4857878a84f99bfb", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 271649, "upload_time": "2019-04-17T01:43:01", "url": "https://files.pythonhosted.org/packages/b3/ef/1d24a346b17091abc7b417a65331c4d181ce785db7964f9f42dd0766027f/pyroomacoustics-0.1.23-cp37-cp37m-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "730377f71d1424ccb5bc74fc4b2f95f6", "sha256": "3555d56a714935c5aaec2a5c915a60232f6dd0f900805985b225997b8635db09" }, "downloads": -1, "filename": "pyroomacoustics-0.1.23-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "730377f71d1424ccb5bc74fc4b2f95f6", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 251097, "upload_time": "2019-04-17T01:29:39", "url": "https://files.pythonhosted.org/packages/c3/1b/038eab9564ee7c1b12917dee8870783ee9b4cbb8bb9e35f7a7657a21a91c/pyroomacoustics-0.1.23-cp37-cp37m-win32.whl" }, { "comment_text": "", "digests": { "md5": "c673c31e99f79f36030a536569dbff2d", "sha256": "3e22b3422e6fa4044bc6218aa49377f5362e31e55d7866fe48315eb9d27ae9b1" }, "downloads": -1, "filename": "pyroomacoustics-0.1.23-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "c673c31e99f79f36030a536569dbff2d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 265344, "upload_time": "2019-04-17T01:36:00", "url": "https://files.pythonhosted.org/packages/8a/4f/977649e98dab571ca3e53bfe884cebe7907e9d70640a22921061ea781386/pyroomacoustics-0.1.23-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "95a39b4ca863f2f288e85c30a52a0eab", "sha256": "ae406631a059d48f41ea1bf7923331adf9f026924ec5f5d0d7a1e8456ef71611" }, "downloads": -1, "filename": "pyroomacoustics-0.1.23.tar.gz", "has_sig": false, "md5_digest": "95a39b4ca863f2f288e85c30a52a0eab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 269920, "upload_time": "2019-04-17T01:12:34", "url": "https://files.pythonhosted.org/packages/77/b8/25af205a42b78eab360edd8199e9c953a292915941f712223b916eacc032/pyroomacoustics-0.1.23.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "2be2134247a1a622ffd9e2f6bbfa856d", "sha256": "2ed3b2bb0b52c6970477cc8f4ffe10cddc012e0e67b3e25c84afba1e1107a7f4" }, "downloads": -1, "filename": "pyroomacoustics-0.1.3-py2.7-linux-x86_64.egg", "has_sig": false, "md5_digest": "2be2134247a1a622ffd9e2f6bbfa856d", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 265373, "upload_time": "2017-06-21T22:18:47", "url": "https://files.pythonhosted.org/packages/15/93/929d56cbef39393762415ae0a4134c973d5db71d4e62dd7cedcbcde6bfd2/pyroomacoustics-0.1.3-py2.7-linux-x86_64.egg" }, { "comment_text": "", "digests": { "md5": "323b01fa8299975c6120fea3898c6608", "sha256": "51ecb25b735e3017b043756440f49ec329ee062a6b02ec2e658231989f89d753" }, "downloads": -1, "filename": "pyroomacoustics-0.1.3.tar.gz", "has_sig": false, "md5_digest": "323b01fa8299975c6120fea3898c6608", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 103467, "upload_time": "2017-06-21T22:18:49", "url": "https://files.pythonhosted.org/packages/19/26/0fa5cd2b4e3bb8e96e0734947e03c9088f5b7d7079499cb2d45c0ab56001/pyroomacoustics-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "b822d1e30bcc169d8c8bca0d82b9f6e6", "sha256": "1d4809f26e3b34e16e00dbe40edba48e686caf83eaa974574fb6f41e917b61cc" }, "downloads": -1, "filename": "pyroomacoustics-0.1.4-py2.7-linux-x86_64.egg", "has_sig": false, "md5_digest": "b822d1e30bcc169d8c8bca0d82b9f6e6", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 266016, "upload_time": "2017-06-21T22:57:06", "url": "https://files.pythonhosted.org/packages/f9/1f/94f9b1a80a3b0b660910bc473198b9ae537acdd3d0b498d03ac85c9965b4/pyroomacoustics-0.1.4-py2.7-linux-x86_64.egg" }, { "comment_text": "", "digests": { "md5": "d44d01e7bd7e3d9714b399ab31915188", "sha256": "21d694382aa01231794ef6b00b1decf8b28c6b407f9074c533cf06313c7bae24" }, "downloads": -1, "filename": "pyroomacoustics-0.1.4.tar.gz", "has_sig": false, "md5_digest": "d44d01e7bd7e3d9714b399ab31915188", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 104808, "upload_time": "2017-06-21T22:57:09", "url": "https://files.pythonhosted.org/packages/4b/b1/65d5e1e167154a2bea829e5fbeb24ca0368f25bd8f5d7e7bf45b89453385/pyroomacoustics-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "25c6a76c347ce0851d0d056f89c27b38", "sha256": "ab25e54829f8270f29cf699d73fecf8bc01df9e77033c9ec17d2ab5fd7dd414b" }, "downloads": -1, "filename": "pyroomacoustics-0.1.5-py2.7-linux-x86_64.egg", "has_sig": false, "md5_digest": "25c6a76c347ce0851d0d056f89c27b38", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 266875, "upload_time": "2017-06-22T09:50:32", "url": "https://files.pythonhosted.org/packages/83/e8/8de1d8708def62e8887b1dfdcb14b8e2f7b01f3b5030e67b5d9596b63de2/pyroomacoustics-0.1.5-py2.7-linux-x86_64.egg" }, { "comment_text": "", "digests": { "md5": "89e451d929baaada57cc7a292167fddf", "sha256": "cada2c4eced966699e29761b7faf8c339e9072002bd8a22aa08447900e859028" }, "downloads": -1, "filename": "pyroomacoustics-0.1.5.tar.gz", "has_sig": false, "md5_digest": "89e451d929baaada57cc7a292167fddf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 105427, "upload_time": "2017-06-22T09:50:34", "url": "https://files.pythonhosted.org/packages/04/53/343f5430ce17081ef23e6855558278a54860691a46dda75e3f3d4243326e/pyroomacoustics-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "b67d5a17c66297861d9c3f35cb574902", "sha256": "9993c74a973318fa802bae94185b8f4e1b7e9bdfd0011a3726a9ea4f2fb41d14" }, "downloads": -1, "filename": "pyroomacoustics-0.1.6-py2.7-linux-x86_64.egg", "has_sig": false, "md5_digest": "b67d5a17c66297861d9c3f35cb574902", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 267712, "upload_time": "2017-06-22T23:15:49", "url": "https://files.pythonhosted.org/packages/9c/2d/6bc2994b2801b05f05ae4091a162c61cee6d04cd49a82ece8ab323cfddbf/pyroomacoustics-0.1.6-py2.7-linux-x86_64.egg" }, { "comment_text": "", "digests": { "md5": "89aeb721a8abd51d732564ac3922672a", "sha256": "57771488140e50ce277e3ddd5948c24ede412e734652e5bb0feab9350ae984d4" }, "downloads": -1, "filename": "pyroomacoustics-0.1.6.tar.gz", "has_sig": false, "md5_digest": "89aeb721a8abd51d732564ac3922672a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 105877, "upload_time": "2017-06-22T23:15:51", "url": "https://files.pythonhosted.org/packages/8c/dc/d8cf988aa05c6601e038412ef8c99be38eb4f4420d9bfa6cd035b36c4f2f/pyroomacoustics-0.1.6.tar.gz" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "4291b4998c2002098b85ccae86f866d9", "sha256": "9a66f9096e1ff10ed4dcf76fd25e2918c9044b652d9a49b11a23a89d6872cc0b" }, "downloads": -1, "filename": "pyroomacoustics-0.1.7.tar.gz", "has_sig": false, "md5_digest": "4291b4998c2002098b85ccae86f866d9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 112892, "upload_time": "2017-07-15T07:45:29", "url": "https://files.pythonhosted.org/packages/93/86/18b825da6ce10bbb2badb4e3964330640dfa1c77d4113db1b9ddfa958d03/pyroomacoustics-0.1.7.tar.gz" } ], "0.1.9": [ { "comment_text": "", "digests": { "md5": "faea81b57a1309ea3af53eddb69265d3", "sha256": "7b6f4d71f04552662f9f87d18fdda7495fe29eea22d1e3e50ef851fbafdd04c3" }, "downloads": -1, "filename": "pyroomacoustics-0.1.9.tar.gz", "has_sig": false, "md5_digest": "faea81b57a1309ea3af53eddb69265d3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 124533, "upload_time": "2017-10-08T09:41:45", "url": "https://files.pythonhosted.org/packages/b7/f6/08d4289f57fbdace663e097801caea14574b9877bcb810882272b74abecc/pyroomacoustics-0.1.9.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "e1437ded9ff5cf68fedf162515033cc7", "sha256": "b5fb3bd9f48034a6825ed11c1183a015a19012dde3cb7cac7c36106d411efb0a" }, "downloads": -1, "filename": "pyroomacoustics-0.2.0-cp27-cp27m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "e1437ded9ff5cf68fedf162515033cc7", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 283238, "upload_time": "2019-09-04T15:18:31", "url": "https://files.pythonhosted.org/packages/77/4c/e65462f01e3ac9380dc09eb96ee9d013432119875eefa8e42c485bb82257/pyroomacoustics-0.2.0-cp27-cp27m-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "414c15ad71d4e7db2421df5bff466407", "sha256": "bdfc1fb755561661d3e73a60ec03319da8c8c3da77a486238eae0a0f4ae80242" }, "downloads": -1, "filename": "pyroomacoustics-0.2.0-cp35-cp35m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "414c15ad71d4e7db2421df5bff466407", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 281593, "upload_time": "2019-09-04T15:19:12", "url": "https://files.pythonhosted.org/packages/5f/12/61c6efb7999412e1dedb483950c4b0da68213c1107dfcdac96798b162ad6/pyroomacoustics-0.2.0-cp35-cp35m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0e9d5cba9c2c3aaf8c2d167354230d66", "sha256": "650d238cc66f6cb5f4360a39cb6a012e10d26139a988164686f3f6600e14aa41" }, "downloads": -1, "filename": "pyroomacoustics-0.2.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "0e9d5cba9c2c3aaf8c2d167354230d66", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 261817, "upload_time": "2019-09-04T16:05:50", "url": "https://files.pythonhosted.org/packages/ed/47/53c24d09689a9cf61b152f2426b66f3608e78c481e797c19af10adf9b235/pyroomacoustics-0.2.0-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "49dfeee7d54a1039a17f4cfdacbb4d60", "sha256": "f50ab97eb1a52bf7b99809673ee9bbed97d0eedaf8b36c8251df598910137f6d" }, "downloads": -1, "filename": "pyroomacoustics-0.2.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "49dfeee7d54a1039a17f4cfdacbb4d60", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 275849, "upload_time": "2019-09-04T16:12:58", "url": "https://files.pythonhosted.org/packages/24/97/d30e56fd79a44c0423b36d490ac314ac71924666e15d205383917ee46a1a/pyroomacoustics-0.2.0-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "c63017b1a5a518eae5fe3e006e59c9f7", "sha256": "886462e19c2e0fd343c31cf433074d529d08a6ad900e798ccf9de3215656d48c" }, "downloads": -1, "filename": "pyroomacoustics-0.2.0-cp36-cp36m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "c63017b1a5a518eae5fe3e006e59c9f7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 283696, "upload_time": "2019-09-04T15:27:14", "url": "https://files.pythonhosted.org/packages/24/48/dfc6c3f8600a444ce50e78048b3315ea9ce2a47db66567c3bc85192e89f3/pyroomacoustics-0.2.0-cp36-cp36m-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "fff384849a6285d2f60d01b0f7b298dc", "sha256": "36a7f2b29ae780501aa91836b64ae49c67025b1a16d5f48ceba987c1048e2a8f" }, "downloads": -1, "filename": "pyroomacoustics-0.2.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "fff384849a6285d2f60d01b0f7b298dc", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 263310, "upload_time": "2019-09-04T16:20:38", "url": "https://files.pythonhosted.org/packages/8a/c1/260e1b850ca88d9cfc77770338cbd271500a85a6902164eb82192bd34c01/pyroomacoustics-0.2.0-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "33fa4d1d7caffd2b1bac31beb392946a", "sha256": "e3a891977ef3d9702d70576503bc5f2577444e27ca531221bb6d929e8809ef10" }, "downloads": -1, "filename": "pyroomacoustics-0.2.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "33fa4d1d7caffd2b1bac31beb392946a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 277586, "upload_time": "2019-09-04T16:27:50", "url": "https://files.pythonhosted.org/packages/2d/5d/72581903dcaba22af022294deb290109424860f15ba951ddbb39a6d0490c/pyroomacoustics-0.2.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "1a9bb746ba6cfd084f04ab8b5f9fae4a", "sha256": "f2279c651c9b1c04a80c9d9b002e73658290f4af1c4a2d8ef1754b8f4ca1a66c" }, "downloads": -1, "filename": "pyroomacoustics-0.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "1a9bb746ba6cfd084f04ab8b5f9fae4a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 282376, "upload_time": "2019-09-04T15:27:53", "url": "https://files.pythonhosted.org/packages/5f/e1/de84a2deca42010862ed5cfea271ecc7fb27eb9598146ab94594f0a980e2/pyroomacoustics-0.2.0-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e0b3989cfd752d57318e546e7067cca7", "sha256": "6aca56e6148d696f31c080f644c6a737a2b560862303208387c17d4b7b0e4ff8" }, "downloads": -1, "filename": "pyroomacoustics-0.2.0-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "e0b3989cfd752d57318e546e7067cca7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 263264, "upload_time": "2019-09-04T16:34:56", "url": "https://files.pythonhosted.org/packages/56/df/66eceb11bc0603449ea99719bd3a22d2c63b2dd0bf010916877bee5afea7/pyroomacoustics-0.2.0-cp37-cp37m-win32.whl" }, { "comment_text": "", "digests": { "md5": "ca64cdb7682104cc670e484192817499", "sha256": "db04941ef5075aa720e4ffaafbfcc8c3f36b48d946cd27482a39cdec80147cbe" }, "downloads": -1, "filename": "pyroomacoustics-0.2.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "ca64cdb7682104cc670e484192817499", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 277523, "upload_time": "2019-09-04T16:41:43", "url": "https://files.pythonhosted.org/packages/2e/4a/b4fb28625f8e1638343493dc20d18ccdd09bcc212e681f4a7e6289b074ac/pyroomacoustics-0.2.0-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "785e57c8049fcfd8fe58b2441b2c218a", "sha256": "d070171ae9e1157528db928eb105246ef9a131bc1c74f084fa39991ba22a9584" }, "downloads": -1, "filename": "pyroomacoustics-0.2.0.tar.gz", "has_sig": false, "md5_digest": "785e57c8049fcfd8fe58b2441b2c218a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 170842, "upload_time": "2019-09-04T14:55:12", "url": "https://files.pythonhosted.org/packages/78/39/8169694419412cb5b9363ac48eaf9c94bf3c0653adcacb8d6c7fbf8d9a30/pyroomacoustics-0.2.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "e1437ded9ff5cf68fedf162515033cc7", "sha256": "b5fb3bd9f48034a6825ed11c1183a015a19012dde3cb7cac7c36106d411efb0a" }, "downloads": -1, "filename": "pyroomacoustics-0.2.0-cp27-cp27m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "e1437ded9ff5cf68fedf162515033cc7", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 283238, "upload_time": "2019-09-04T15:18:31", "url": "https://files.pythonhosted.org/packages/77/4c/e65462f01e3ac9380dc09eb96ee9d013432119875eefa8e42c485bb82257/pyroomacoustics-0.2.0-cp27-cp27m-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "414c15ad71d4e7db2421df5bff466407", "sha256": "bdfc1fb755561661d3e73a60ec03319da8c8c3da77a486238eae0a0f4ae80242" }, "downloads": -1, "filename": "pyroomacoustics-0.2.0-cp35-cp35m-macosx_10_6_x86_64.whl", "has_sig": false, "md5_digest": "414c15ad71d4e7db2421df5bff466407", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 281593, "upload_time": "2019-09-04T15:19:12", "url": "https://files.pythonhosted.org/packages/5f/12/61c6efb7999412e1dedb483950c4b0da68213c1107dfcdac96798b162ad6/pyroomacoustics-0.2.0-cp35-cp35m-macosx_10_6_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "0e9d5cba9c2c3aaf8c2d167354230d66", "sha256": "650d238cc66f6cb5f4360a39cb6a012e10d26139a988164686f3f6600e14aa41" }, "downloads": -1, "filename": "pyroomacoustics-0.2.0-cp35-cp35m-win32.whl", "has_sig": false, "md5_digest": "0e9d5cba9c2c3aaf8c2d167354230d66", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 261817, "upload_time": "2019-09-04T16:05:50", "url": "https://files.pythonhosted.org/packages/ed/47/53c24d09689a9cf61b152f2426b66f3608e78c481e797c19af10adf9b235/pyroomacoustics-0.2.0-cp35-cp35m-win32.whl" }, { "comment_text": "", "digests": { "md5": "49dfeee7d54a1039a17f4cfdacbb4d60", "sha256": "f50ab97eb1a52bf7b99809673ee9bbed97d0eedaf8b36c8251df598910137f6d" }, "downloads": -1, "filename": "pyroomacoustics-0.2.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "49dfeee7d54a1039a17f4cfdacbb4d60", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 275849, "upload_time": "2019-09-04T16:12:58", "url": "https://files.pythonhosted.org/packages/24/97/d30e56fd79a44c0423b36d490ac314ac71924666e15d205383917ee46a1a/pyroomacoustics-0.2.0-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "c63017b1a5a518eae5fe3e006e59c9f7", "sha256": "886462e19c2e0fd343c31cf433074d529d08a6ad900e798ccf9de3215656d48c" }, "downloads": -1, "filename": "pyroomacoustics-0.2.0-cp36-cp36m-macosx_10_7_x86_64.whl", "has_sig": false, "md5_digest": "c63017b1a5a518eae5fe3e006e59c9f7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 283696, "upload_time": "2019-09-04T15:27:14", "url": "https://files.pythonhosted.org/packages/24/48/dfc6c3f8600a444ce50e78048b3315ea9ce2a47db66567c3bc85192e89f3/pyroomacoustics-0.2.0-cp36-cp36m-macosx_10_7_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "fff384849a6285d2f60d01b0f7b298dc", "sha256": "36a7f2b29ae780501aa91836b64ae49c67025b1a16d5f48ceba987c1048e2a8f" }, "downloads": -1, "filename": "pyroomacoustics-0.2.0-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "fff384849a6285d2f60d01b0f7b298dc", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 263310, "upload_time": "2019-09-04T16:20:38", "url": "https://files.pythonhosted.org/packages/8a/c1/260e1b850ca88d9cfc77770338cbd271500a85a6902164eb82192bd34c01/pyroomacoustics-0.2.0-cp36-cp36m-win32.whl" }, { "comment_text": "", "digests": { "md5": "33fa4d1d7caffd2b1bac31beb392946a", "sha256": "e3a891977ef3d9702d70576503bc5f2577444e27ca531221bb6d929e8809ef10" }, "downloads": -1, "filename": "pyroomacoustics-0.2.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "33fa4d1d7caffd2b1bac31beb392946a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 277586, "upload_time": "2019-09-04T16:27:50", "url": "https://files.pythonhosted.org/packages/2d/5d/72581903dcaba22af022294deb290109424860f15ba951ddbb39a6d0490c/pyroomacoustics-0.2.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "1a9bb746ba6cfd084f04ab8b5f9fae4a", "sha256": "f2279c651c9b1c04a80c9d9b002e73658290f4af1c4a2d8ef1754b8f4ca1a66c" }, "downloads": -1, "filename": "pyroomacoustics-0.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", "has_sig": false, "md5_digest": "1a9bb746ba6cfd084f04ab8b5f9fae4a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 282376, "upload_time": "2019-09-04T15:27:53", "url": "https://files.pythonhosted.org/packages/5f/e1/de84a2deca42010862ed5cfea271ecc7fb27eb9598146ab94594f0a980e2/pyroomacoustics-0.2.0-cp37-cp37m-macosx_10_9_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "e0b3989cfd752d57318e546e7067cca7", "sha256": "6aca56e6148d696f31c080f644c6a737a2b560862303208387c17d4b7b0e4ff8" }, "downloads": -1, "filename": "pyroomacoustics-0.2.0-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "e0b3989cfd752d57318e546e7067cca7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 263264, "upload_time": "2019-09-04T16:34:56", "url": "https://files.pythonhosted.org/packages/56/df/66eceb11bc0603449ea99719bd3a22d2c63b2dd0bf010916877bee5afea7/pyroomacoustics-0.2.0-cp37-cp37m-win32.whl" }, { "comment_text": "", "digests": { "md5": "ca64cdb7682104cc670e484192817499", "sha256": "db04941ef5075aa720e4ffaafbfcc8c3f36b48d946cd27482a39cdec80147cbe" }, "downloads": -1, "filename": "pyroomacoustics-0.2.0-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "ca64cdb7682104cc670e484192817499", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 277523, "upload_time": "2019-09-04T16:41:43", "url": "https://files.pythonhosted.org/packages/2e/4a/b4fb28625f8e1638343493dc20d18ccdd09bcc212e681f4a7e6289b074ac/pyroomacoustics-0.2.0-cp37-cp37m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "785e57c8049fcfd8fe58b2441b2c218a", "sha256": "d070171ae9e1157528db928eb105246ef9a131bc1c74f084fa39991ba22a9584" }, "downloads": -1, "filename": "pyroomacoustics-0.2.0.tar.gz", "has_sig": false, "md5_digest": "785e57c8049fcfd8fe58b2441b2c218a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 170842, "upload_time": "2019-09-04T14:55:12", "url": "https://files.pythonhosted.org/packages/78/39/8169694419412cb5b9363ac48eaf9c94bf3c0653adcacb8d6c7fbf8d9a30/pyroomacoustics-0.2.0.tar.gz" } ] }