{ "info": { "author": "Irmen de Jong", "author_email": "irmen@razorvine.net", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "License :: OSI Approved :: MIT License", "Programming Language :: C", "Programming Language :: Python", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Topic :: Multimedia :: Sound/Audio", "Topic :: Multimedia :: Sound/Audio :: Capture/Recording", "Topic :: Multimedia :: Sound/Audio :: Conversion", "Topic :: Multimedia :: Sound/Audio :: Players" ], "description": "[![Latest Version](https://img.shields.io/pypi/v/miniaudio.svg)](https://pypi.python.org/pypi/miniaudio/)\n\n\n# Python miniaudio\n\nMultiplatform audio playback, recording, decoding and sample format conversion for\nLinux (including Raspberri Pi), Windows, Mac and probably other systems such as BSD.\n\nInstallation for most users: via [Pypi](https://pypi.org/project/miniaudio/), Raspberri Pi builds via [PiWheels](https://www.piwheels.org/project/miniaudio/).\n\n\nThis module provides:\n\n- playback, recording and sound conversion, handled by the embedded cross-platform [miniaudio](https://github.com/dr-soft/miniaudio/) library\n- uses their decoders for wav, flac, vorbis and mp3\n- python bindings for most of the functions offered in those libraries:\n - reading and decoding audio files\n - getting audio file properties (such as duration, number of channels, sample rate)\n - converting sample formats and frequencies\n - streaming large audio files\n - audio playback\n - audio recording\n- Audio file and Icecast internet radio streaming\n- TODO: filters\n- TODO: waveform generators\n\n\nThis library aims to provide a Pythonic interface to the miniaudio C library.\nSome of the main aspects of this are:\n - Python enums instead of just some integers for special values,\n - several classes to represent the main functions of the library,\n - generators for the Audio playback and recording\n - sample data is usually in the form of a Python ``array`` with appropriately sized elements\n depending on the sample width (rather than a raw block of bytes)\n\n\n*Requires Python 3.6 or newer. Also works on pypy3 (because it uses cffi).*\n\nThe library is primarily distributed in source form so you need a C compiler to build and install this\n(note: the setup script takes care of the actual compilation process, no need to worry about compiling things yourself).\nFor Linux and Mac this shouldn't be a problem. For Windows users, if the correct binary install\nis not available on pypi, you'll have to get it to compile as well which may be a bit of a hassle\non this platform. You have to make sure that the required tools that allow you to compile Python extension modules\nare installed (Visual Studio or the VC++ build tools).\n\nSoftware license for these Python bindings, miniaudio and the decoders: MIT\n\n## Synthesizer, modplayer?\n\nIf you like this library you may also be interested in my [software FM synthesizer](https://pypi.org/project/synthplayer/)\nor my [mod player](https://pypi.org/project/libxmplite/) which uses libxmp.\n\n\n## Examples\n\n### Most basic audio file playback\n\n```python\nimport miniaudio\nstream = miniaudio.stream_file(\"samples/music.mp3\")\nwith miniaudio.PlaybackDevice() as device:\n device.start(stream)\n input(\"Audio file playing in the background. Enter to stop playback: \")\n```\n\n### Playback of an unsupported file format\n\nThis example uses ffmpeg as an external tool to decode an audio file in a format\nthat miniaudio itself can't decode (m4a/aac in this case):\n\n```python\nimport subprocess\nimport miniaudio\n\nchannels = 2\nsample_rate = 44100\nsample_width = 2 # 16 bit pcm\nfilename = \"samples/music.m4a\" # AAC encoded audio file\n\ndef stream_pcm(source):\n required_frames = yield b\"\" # generator initialization\n while True:\n required_bytes = required_frames * channels * sample_width\n sample_data = source.read(required_bytes)\n if not sample_data:\n break\n print(\".\", end=\"\", flush=True)\n required_frames = yield sample_data\n\nwith miniaudio.PlaybackDevice(output_format=miniaudio.SampleFormat.SIGNED16,\n nchannels=channels, sample_rate=sample_rate) as device:\n ffmpeg = subprocess.Popen([\"ffmpeg\", \"-v\", \"fatal\", \"-hide_banner\", \"-nostdin\",\n \"-i\", filename, \"-f\", \"s16le\", \"-acodec\", \"pcm_s16le\",\n \"-ac\", str(channels), \"-ar\", str(sample_rate), \"-\"],\n stdin=None, stdout=subprocess.PIPE)\n stream = stream_pcm(ffmpeg.stdout)\n next(stream) # start the generator\n device.start(stream)\n input(\"Audio file playing in the background. Enter to stop playback: \")\n ffmpeg.terminate()\n```\n\n## API\n\n\n*enum class* ``Backend``\n names: ``WASAPI`` ``DSOUND`` ``WINMM`` ``COREAUDIO`` ``SNDIO`` ``AUDIO4`` ``OSS`` ``PULSEAUDIO`` ``ALSA`` ``JACK`` ``AAUDIO`` ``OPENSL`` ``WEBAUDIO`` ``CUSTOM`` ``NULL``\n> Operating system audio backend to use (only a subset will be available)\n\n\n*enum class* ``ChannelMixMode``\n names: ``RECTANGULAR`` ``SIMPLE`` ``CUSTOMWEIGHTS``\n> How to mix channels when converting\n\n\n*enum class* ``DeviceType``\n names: ``PLAYBACK`` ``CAPTURE`` ``DUPLEX``\n> Type of audio device\n\n\n*enum class* ``DitherMode``\n names: ``NONE`` ``RECTANGLE`` ``TRIANGLE``\n> How to dither when converting\n\n\n*enum class* ``FileFormat``\n names: ``UNKNOWN`` ``WAV`` ``FLAC`` ``VORBIS`` ``MP3``\n> Audio file format\n\n\n*enum class* ``SampleFormat``\n names: ``UNKNOWN`` ``UNSIGNED8`` ``SIGNED16`` ``SIGNED24`` ``SIGNED32`` ``FLOAT32``\n> Sample format in memory\n\n\n*enum class* ``SeekOrigin``\n names: ``START`` ``CURRENT``\n> How to seek() in a source\n\n\n*enum class* ``ThreadPriority``\n names: ``IDLE`` ``LOWEST`` ``LOW`` ``NORMAL`` ``HIGH`` ``HIGHEST`` ``REALTIME``\n> The priority of the worker thread (default=HIGHEST)\n\n\n*function* ``convert_frames (from_fmt: miniaudio.SampleFormat, from_numchannels: int, from_samplerate: int, sourcedata: bytes, to_fmt: miniaudio.SampleFormat, to_numchannels: int, to_samplerate: int) -> bytearray``\n> Convert audio frames in source sample format with a certain number of channels, to another sample\nformat and possibly down/upmixing the number of channels as well.\n\n\n*function* ``convert_sample_format (from_fmt: miniaudio.SampleFormat, sourcedata: bytes, to_fmt: miniaudio.SampleFormat, dither: miniaudio.DitherMode = ) -> bytearray``\n> Convert a raw buffer of pcm samples to another sample format. The result is returned as another\nraw pcm sample buffer\n\n\n*function* ``decode (data: bytes, output_format: miniaudio.SampleFormat = , nchannels: int = 2, sample_rate: int = 44100, dither: miniaudio.DitherMode = ) -> miniaudio.DecodedSoundFile``\n> Convenience function to decode any supported audio file in memory to raw PCM samples in your\nchosen format.\n\n\n*function* ``decode_file (filename: str, output_format: miniaudio.SampleFormat = , nchannels: int = 2, sample_rate: int = 44100, dither: miniaudio.DitherMode = ) -> miniaudio.DecodedSoundFile``\n> Convenience function to decode any supported audio file to raw PCM samples in your chosen format.\n\n\n*function* ``flac_get_file_info (filename: str) -> miniaudio.SoundFileInfo``\n> Fetch some information about the audio file (flac format).\n\n\n*function* ``flac_get_info (data: bytes) -> miniaudio.SoundFileInfo``\n> Fetch some information about the audio data (flac format).\n\n\n*function* ``flac_read_f32 (data: bytes) -> miniaudio.DecodedSoundFile``\n> Reads and decodes the whole flac audio file. Resulting sample format is 32 bits float.\n\n\n*function* ``flac_read_file_f32 (filename: str) -> miniaudio.DecodedSoundFile``\n> Reads and decodes the whole flac audio file. Resulting sample format is 32 bits float.\n\n\n*function* ``flac_read_file_s16 (filename: str) -> miniaudio.DecodedSoundFile``\n> Reads and decodes the whole flac audio file. Resulting sample format is 16 bits signed integer.\n\n\n*function* ``flac_read_file_s32 (filename: str) -> miniaudio.DecodedSoundFile``\n> Reads and decodes the whole flac audio file. Resulting sample format is 32 bits signed integer.\n\n\n*function* ``flac_read_s16 (data: bytes) -> miniaudio.DecodedSoundFile``\n> Reads and decodes the whole flac audio data. Resulting sample format is 16 bits signed integer.\n\n\n*function* ``flac_read_s32 (data: bytes) -> miniaudio.DecodedSoundFile``\n> Reads and decodes the whole flac audio data. Resulting sample format is 32 bits signed integer.\n\n\n*function* ``flac_stream_file (filename: str, frames_to_read: int = 1024, seek_frame: int = 0) -> Generator[array.array, NoneType, NoneType]``\n> Streams the flac audio file as interleaved 16 bit signed integer sample arrays segments. This uses\na fixed chunk size and cannot be used as a generic miniaudio decoder input stream. Consider using\nstream_file() instead.\n\n\n*function* ``get_enabled_backends () -> Set[miniaudio.Backend]``\n> Returns the set of available backends by the compilation environment for the underlying miniaudio\nC library\n\n\n*function* ``get_file_info (filename: str) -> miniaudio.SoundFileInfo``\n> Fetch some information about the audio file.\n\n\n*function* ``is_backend_enabled (backend: miniaudio.Backend) -> bool``\n> Determines whether or not the given backend is available by the compilation environment for the\nunderlying miniaudio C library\n\n\n*function* ``is_loopback_supported (backend: miniaudio.Backend) -> bool``\n> Determines whether or not loopback mode is support by a backend.\n\n\n*function* ``lib_version () -> str``\n> Returns the version string of the underlying miniaudio C library\n\n\n*function* ``mp3_get_file_info (filename: str) -> miniaudio.SoundFileInfo``\n> Fetch some information about the audio file (mp3 format).\n\n\n*function* ``mp3_get_info (data: bytes) -> miniaudio.SoundFileInfo``\n> Fetch some information about the audio data (mp3 format).\n\n\n*function* ``mp3_read_f32 (data: bytes) -> miniaudio.DecodedSoundFile``\n> Reads and decodes the whole mp3 audio data. Resulting sample format is 32 bits float.\n\n\n*function* ``mp3_read_file_f32 (filename: str) -> miniaudio.DecodedSoundFile``\n> Reads and decodes the whole mp3 audio file. Resulting sample format is 32 bits float.\n\n\n*function* ``mp3_read_file_s16 (filename: str) -> miniaudio.DecodedSoundFile``\n> Reads and decodes the whole mp3 audio file. Resulting sample format is 16 bits signed integer.\n\n\n*function* ``mp3_read_s16 (data: bytes) -> miniaudio.DecodedSoundFile``\n> Reads and decodes the whole mp3 audio data. Resulting sample format is 16 bits signed integer.\n\n\n*function* ``mp3_stream_file (filename: str, frames_to_read: int = 1024, seek_frame: int = 0) -> Generator[array.array, NoneType, NoneType]``\n> Streams the mp3 audio file as interleaved 16 bit signed integer sample arrays segments. This uses\na fixed chunk size and cannot be used as a generic miniaudio decoder input stream. Consider using\nstream_file() instead.\n\n\n*function* ``read_file (filename: str, convert_to_16bit: bool = False) -> miniaudio.DecodedSoundFile``\n> Reads and decodes the whole audio file. Miniaudio will attempt to return the sound data in exactly\nthe same format as in the file. Unless you set convert_convert_to_16bit to True, then the result is\nalways a 16 bit sample format.\n\n\n*function* ``stream_any (source: miniaudio.StreamableSource, source_format: miniaudio.FileFormat = , output_format: miniaudio.SampleFormat = , nchannels: int = 2, sample_rate: int = 44100, frames_to_read: int = 1024, dither: miniaudio.DitherMode = , seek_frame: int = 0) -> Generator[array.array, int, NoneType]``\n> Convenience function that returns a generator to decode and stream any source of encoded audio\ndata (such as a network stream). Stream result is chunks of raw PCM samples in the chosen format. If\nyou send() a number into the generator rather than just using next() on it, you'll get that given\nnumber of frames, instead of the default configured amount. This is particularly useful to plug this\nstream into an audio device callback that wants a variable number of frames per call.\n\n\n*function* ``stream_file (filename: str, output_format: miniaudio.SampleFormat = , nchannels: int = 2, sample_rate: int = 44100, frames_to_read: int = 1024, dither: miniaudio.DitherMode = , seek_frame: int = 0) -> Generator[array.array, int, NoneType]``\n> Convenience generator function to decode and stream any supported audio file as chunks of raw PCM\nsamples in the chosen format. If you send() a number into the generator rather than just using\nnext() on it, you'll get that given number of frames, instead of the default configured amount. This\nis particularly useful to plug this stream into an audio device callback that wants a variable\nnumber of frames per call.\n\n\n*function* ``stream_memory (data: bytes, output_format: miniaudio.SampleFormat = , nchannels: int = 2, sample_rate: int = 44100, frames_to_read: int = 1024, dither: miniaudio.DitherMode = ) -> Generator[array.array, int, NoneType]``\n> Convenience generator function to decode and stream any supported audio file in memory as chunks\nof raw PCM samples in the chosen format. If you send() a number into the generator rather than just\nusing next() on it, you'll get that given number of frames, instead of the default configured\namount. This is particularly useful to plug this stream into an audio device callback that wants a\nvariable number of frames per call.\n\n\n*function* ``vorbis_get_file_info (filename: str) -> miniaudio.SoundFileInfo``\n> Fetch some information about the audio file (vorbis format).\n\n\n*function* ``vorbis_get_info (data: bytes) -> miniaudio.SoundFileInfo``\n> Fetch some information about the audio data (vorbis format).\n\n\n*function* ``vorbis_read (data: bytes) -> miniaudio.DecodedSoundFile``\n> Reads and decodes the whole vorbis audio data. Resulting sample format is 16 bits signed integer.\n\n\n*function* ``vorbis_read_file (filename: str) -> miniaudio.DecodedSoundFile``\n> Reads and decodes the whole vorbis audio file. Resulting sample format is 16 bits signed integer.\n\n\n*function* ``vorbis_stream_file (filename: str, seek_frame: int = 0) -> Generator[array.array, NoneType, NoneType]``\n> Streams the ogg vorbis audio file as interleaved 16 bit signed integer sample arrays segments.\nThis uses a variable unconfigurable chunk size and cannot be used as a generic miniaudio decoder\ninput stream. Consider using stream_file() instead.\n\n\n*function* ``wav_get_file_info (filename: str) -> miniaudio.SoundFileInfo``\n> Fetch some information about the audio file (wav format).\n\n\n*function* ``wav_get_info (data: bytes) -> miniaudio.SoundFileInfo``\n> Fetch some information about the audio data (wav format).\n\n\n*function* ``wav_read_f32 (data: bytes) -> miniaudio.DecodedSoundFile``\n> Reads and decodes the whole wav audio data. Resulting sample format is 32 bits float.\n\n\n*function* ``wav_read_file_f32 (filename: str) -> miniaudio.DecodedSoundFile``\n> Reads and decodes the whole wav audio file. Resulting sample format is 32 bits float.\n\n\n*function* ``wav_read_file_s16 (filename: str) -> miniaudio.DecodedSoundFile``\n> Reads and decodes the whole wav audio file. Resulting sample format is 16 bits signed integer.\n\n\n*function* ``wav_read_file_s32 (filename: str) -> miniaudio.DecodedSoundFile``\n> Reads and decodes the whole wav audio file. Resulting sample format is 32 bits signed integer.\n\n\n*function* ``wav_read_s16 (data: bytes) -> miniaudio.DecodedSoundFile``\n> Reads and decodes the whole wav audio data. Resulting sample format is 16 bits signed integer.\n\n\n*function* ``wav_read_s32 (data: bytes) -> miniaudio.DecodedSoundFile``\n> Reads and decodes the whole wav audio data. Resulting sample format is 32 bits signed integer.\n\n\n*function* ``wav_stream_file (filename: str, frames_to_read: int = 1024, seek_frame: int = 0) -> Generator[array.array, NoneType, NoneType]``\n> Streams the WAV audio file as interleaved 16 bit signed integer sample arrays segments. This uses\na fixed chunk size and cannot be used as a generic miniaudio decoder input stream. Consider using\nstream_file() instead.\n\n\n*function* ``wav_write_file (filename: str, sound: miniaudio.DecodedSoundFile) ``\n> Writes the pcm sound to a WAV file\n\n\n*class* ``CaptureDevice``\n\n``CaptureDevice (self, input_format: miniaudio.SampleFormat = , nchannels: int = 2, sample_rate: int = 44100, buffersize_msec: int = 200, device_id: Optional[_cffi_backend._CDataBase] = None, callback_periods: int = 0, backends: Optional[List[miniaudio.Backend]] = None, thread_prio: miniaudio.ThreadPriority = , app_name: str = '') ``\n> An audio device provided by miniaudio, for audio capture (recording).\n\n> *method* ``close (self) ``\n> > Halt playback or capture and close down the device. If you use the device as a context manager,\nit will be closed automatically.\n\n> *method* ``start (self, callback_generator: Generator[NoneType, Union[bytes, array.array], NoneType]) ``\n> > Start the audio device: capture (recording) begins. The recorded audio data is sent to the given\ncallback generator as raw bytes. (it should already be started before)\n\n> *method* ``stop (self) ``\n> > Halt playback or capture.\n\n\n*class* ``DecodeError``\n\n``DecodeError (self, /, *args, **kwargs)``\n> When something went wrong during decoding an audio file.\n\n\n*class* ``DecodedSoundFile``\n\n``DecodedSoundFile (self, name: str, nchannels: int, sample_rate: int, sample_format: miniaudio.SampleFormat, samples: array.array) ``\n> Contains various properties and also the PCM frames of a fully decoded audio file.\n\n\n*class* ``Devices``\n\n``Devices (self, backends: Optional[List[miniaudio.Backend]] = None) ``\n> Query the audio playback and record devices that miniaudio provides\n\n> *method* ``get_captures (self) -> List[Dict[str, Any]]``\n> > Get a list of capture devices and some details about them\n\n> *method* ``get_playbacks (self) -> List[Dict[str, Any]]``\n> > Get a list of playback devices and some details about them\n\n\n*class* ``DuplexStream``\n\n``DuplexStream (self, playback_format: miniaudio.SampleFormat = , playback_channels: int = 2, capture_format: miniaudio.SampleFormat = , capture_channels: int = 2, sample_rate: int = 44100, buffersize_msec: int = 200, playback_device_id: Optional[_cffi_backend._CDataBase] = None, capture_device_id: Optional[_cffi_backend._CDataBase] = None, callback_periods: int = 0, backends: Optional[List[miniaudio.Backend]] = None, thread_prio: miniaudio.ThreadPriority = , app_name: str = '') ``\n> Joins a capture device and a playback device.\n\n> *method* ``close (self) ``\n> > Halt playback or capture and close down the device. If you use the device as a context manager,\nit will be closed automatically.\n\n> *method* ``start (self, callback_generator: Generator[Union[bytes, array.array], Union[bytes, array.array], NoneType]) ``\n> > Start the audio device: playback and capture begin. The audio data for playback is provided by\nthe given callback generator, which is sent the recorded audio data at the same time. (it should\nalready be started before passing it in)\n\n> *method* ``stop (self) ``\n> > Halt playback or capture.\n\n\n*class* ``IceCastClient``\n\n``IceCastClient (self, url: str, update_stream_title: Callable[[ForwardRef('IceCastClient'), str], NoneType] = None) ``\n> A simple client for IceCast audio streams as miniaudio streamable source. If the stream has Icy\nMeta Data, the stream_title attribute will be updated with the actual title taken from the meta\ndata. You can also provide a callback to be called when a new stream title is available. The\ndownloading of the data from the internet is done in a background thread and it tries to keep a\n(small) buffer filled with available data to read.\n\n> *method* ``close (self) ``\n> > Stop the stream, aborting the background downloading.\n\n> *method* ``read (self, num_bytes: int) -> bytes``\n> > Read a chunk of data from the stream.\n\n> *method* ``seek (self, offset: int, origin: miniaudio.SeekOrigin) -> bool``\n> > Override this if the stream supports seeking. Note: seek support is sometimes not needed if you\ngive the file type to a decoder upfront. You can ignore this method then.\n\n\n*class* ``MiniaudioError``\n\n``MiniaudioError (self, /, *args, **kwargs)``\n> When a miniaudio specific error occurs.\n\n\n*class* ``PlaybackDevice``\n\n``PlaybackDevice (self, output_format: miniaudio.SampleFormat = , nchannels: int = 2, sample_rate: int = 44100, buffersize_msec: int = 200, device_id: Optional[_cffi_backend._CDataBase] = None, callback_periods: int = 0, backends: Optional[List[miniaudio.Backend]] = None, thread_prio: miniaudio.ThreadPriority = , app_name: str = '') ``\n> An audio device provided by miniaudio, for audio playback.\n\n> *method* ``close (self) ``\n> > Halt playback or capture and close down the device. If you use the device as a context manager,\nit will be closed automatically.\n\n> *method* ``start (self, callback_generator: Generator[Union[bytes, array.array], int, NoneType]) ``\n> > Start the audio device: playback begins. The audio data is provided by the given callback\ngenerator. The generator gets sent the required number of frames and should yield the sample data as\nraw bytes, a memoryview, an array.array, or as a numpy array with shape (numframes, numchannels).\nThe generator should already be started before passing it in.\n\n> *method* ``stop (self) ``\n> > Halt playback or capture.\n\n\n*class* ``SoundFileInfo``\n\n``SoundFileInfo (self, name: str, file_format: miniaudio.FileFormat, nchannels: int, sample_rate: int, sample_format: miniaudio.SampleFormat, duration: float, num_frames: int) ``\n> Contains various properties of an audio file.\n\n\n*class* ``StreamableSource``\n\n``StreamableSource (self, /, *args, **kwargs)``\n> Base class for streams of audio data bytes. Can be used as a contextmanager, to properly call\nclose().\n\n> *method* ``close (self) ``\n> > Override this to properly close the stream and free resources.\n\n> *method* ``read (self, num_bytes: int) -> Union[bytes, memoryview]``\n> > override this to provide data bytes to the consumer of the stream\n\n> *method* ``seek (self, offset: int, origin: miniaudio.SeekOrigin) -> bool``\n> > Override this if the stream supports seeking. Note: seek support is sometimes not needed if you\ngive the file type to a decoder upfront. You can ignore this method then.\n\n\n*class* ``WavFileReadStream``\n\n``WavFileReadStream (self, pcm_sample_gen: Generator[Union[bytes, array.array], int, NoneType], sample_rate: int, nchannels: int, output_format: miniaudio.SampleFormat, max_frames: int = 0) ``\n> An IO stream that reads as a .wav file, and which gets its pcm samples from the provided producer\n\n> *method* ``close (self) ``\n> > Close the file\n\n> *method* ``read (self, amount: int = 9223372036854775807) -> Optional[bytes]``\n> > Read up to the given amount of bytes from the file.\n\n\n\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/irmen/pyminiaudio", "keywords": "sound,audio,playback,recording,conversion,decoding", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "miniaudio", "package_url": "https://pypi.org/project/miniaudio/", "platform": "", "project_url": "https://pypi.org/project/miniaudio/", "project_urls": { "Homepage": "https://github.com/irmen/pyminiaudio" }, "release_url": "https://pypi.org/project/miniaudio/1.46/", "requires_dist": [ "cffi (>=1.12.0)" ], "requires_python": "", "summary": "python bindings for the miniaudio library and its decoders (mp3, flac, ogg vorbis, wav)", "version": "1.46", "yanked": false, "yanked_reason": null }, "last_serial": 12486164, "releases": { "1.0": [ { "comment_text": "", "digests": { "md5": "c055f7dc349cd56d1c6d8cbbd5977c04", "sha256": "481ab1a1d986a3de542bdd7b6b5027891be56ac4a57cc34ba001cc7cc776eba6" }, "downloads": -1, "filename": "miniaudio-1.0.tar.gz", "has_sig": false, "md5_digest": "c055f7dc349cd56d1c6d8cbbd5977c04", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 413725, "upload_time": "2019-06-15T16:54:59", "upload_time_iso_8601": "2019-06-15T16:54:59.711060Z", "url": "https://files.pythonhosted.org/packages/64/ff/26a1c7ae9ba5b98af3829ec50faa895e8b00b2c384ab27c9a64628cbafe4/miniaudio-1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "9ac19a1d29ceb55dc32f9af536bd66d9", "sha256": "f05aadf1a8d0898db451be6ce0b40134bb29cf06dd144870659eb88d59792985" }, "downloads": -1, "filename": "miniaudio-1.0.1.tar.gz", "has_sig": false, "md5_digest": "9ac19a1d29ceb55dc32f9af536bd66d9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 418941, "upload_time": "2019-06-15T17:42:56", "upload_time_iso_8601": "2019-06-15T17:42:56.995932Z", "url": "https://files.pythonhosted.org/packages/dc/d8/4e6c3b4f18352d0a66879bc8a60071f47fd6cea35ee67821d16ac885d55f/miniaudio-1.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1": [ { "comment_text": "", "digests": { "md5": "bc805ac2327c24f69812c64c04a2a5f3", "sha256": "0e133dd0fb25081f1343317a9e27d413d4b440a0749c954dd73d4c1ae6b45a57" }, "downloads": -1, "filename": "miniaudio-1.1.tar.gz", "has_sig": false, "md5_digest": "bc805ac2327c24f69812c64c04a2a5f3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 418761, "upload_time": "2019-06-15T21:12:02", "upload_time_iso_8601": "2019-06-15T21:12:02.090095Z", "url": "https://files.pythonhosted.org/packages/72/20/173a2cc3178ff99519cb15c4b9e63f695471fae9e01b20cea28d0d8502bd/miniaudio-1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.10": [ { "comment_text": "", "digests": { "md5": "02344d1b777f9850420f39a51b1a72bf", "sha256": "ccc3477c2ada14024375c66cc61837c194ee9aef2d879b97ca96b205ef4e8307" }, "downloads": -1, "filename": "miniaudio-1.10-cp37-cp37m-linux_armv7l.whl", "has_sig": false, "md5_digest": "02344d1b777f9850420f39a51b1a72bf", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 373687, "upload_time": "2020-02-02T15:28:57", "upload_time_iso_8601": "2020-02-02T15:28:57.842628Z", "url": "https://files.pythonhosted.org/packages/d4/87/c49cb509e5535a452346e283ef4a494487a0175be79c6ae04a1e42b34e29/miniaudio-1.10-cp37-cp37m-linux_armv7l.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "62339aac6a189115d3b234479805dee5", "sha256": "2bfbdaebbeb66db47fb92bd5652f2643fb139ba6277e4f2d4d6a8a05a6ec592a" }, "downloads": -1, "filename": "miniaudio-1.10-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "62339aac6a189115d3b234479805dee5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 233903, "upload_time": "2020-01-15T21:56:50", "upload_time_iso_8601": "2020-01-15T21:56:50.867797Z", "url": "https://files.pythonhosted.org/packages/0e/15/1e49e10e92f1b85aed14b9c1b04dec6b259aaa712d31490e87df743c5b97/miniaudio-1.10-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e3b301446fc7944bfe41cf41f2bb8c78", "sha256": "1e06013f1ffe7025d381ede4ebd1d41c69204e36ad3b1a13aef8eb0f82e24cc7" }, "downloads": -1, "filename": "miniaudio-1.10-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "e3b301446fc7944bfe41cf41f2bb8c78", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 272953, "upload_time": "2020-01-15T21:56:49", "upload_time_iso_8601": "2020-01-15T21:56:49.040537Z", "url": "https://files.pythonhosted.org/packages/d2/e9/19027984201c0af361ade662e5ed598f0d1f025e07379f6d70ccee4a3d51/miniaudio-1.10-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e40ce0241ac3869b3bede7d686ab8882", "sha256": "011a0fc70e32121a9af1875a254e05f8b100f7f2b847c820641af0b0222806ae" }, "downloads": -1, "filename": "miniaudio-1.10-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "e40ce0241ac3869b3bede7d686ab8882", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 233906, "upload_time": "2020-01-15T21:56:55", "upload_time_iso_8601": "2020-01-15T21:56:55.340430Z", "url": "https://files.pythonhosted.org/packages/54/ba/6371eed0adf5ca4e0194307b76aee277cbbde9bc544f9ea5c9af9dfa3f80/miniaudio-1.10-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e7908e45b887c687dec6819dbbe55dfe", "sha256": "879b2b8145deaf787f9ca9ff0f845e3cb0a809657112ed93c2a2ee05bb2e5233" }, "downloads": -1, "filename": "miniaudio-1.10-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "e7908e45b887c687dec6819dbbe55dfe", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 272971, "upload_time": "2020-01-15T21:56:53", "upload_time_iso_8601": "2020-01-15T21:56:53.265369Z", "url": "https://files.pythonhosted.org/packages/8b/b3/6f350a5dbc19c14de3e67008e52576d5d4fb15282a3da48bc0602b4f3184/miniaudio-1.10-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "faa606a4c913663d474bc8dbf0bfeea2", "sha256": "4e470284db4caaa1e5dd811674e2cb257e6df827fb06e3618eb62572cb7fe54d" }, "downloads": -1, "filename": "miniaudio-1.10.tar.gz", "has_sig": false, "md5_digest": "faa606a4c913663d474bc8dbf0bfeea2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 473571, "upload_time": "2020-01-15T21:56:24", "upload_time_iso_8601": "2020-01-15T21:56:24.934492Z", "url": "https://files.pythonhosted.org/packages/62/cf/19e6868ab7176b875baf8ffdabb49f008600c18629388c1bde34f69d6387/miniaudio-1.10.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2": [ { "comment_text": "", "digests": { "md5": "26f910466c321fdccaea98859db33b0a", "sha256": "dae7248baa84045d74a05fc47b213273c34a4d05f41f03670d482904f0855226" }, "downloads": -1, "filename": "miniaudio-1.2.tar.gz", "has_sig": false, "md5_digest": "26f910466c321fdccaea98859db33b0a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 422447, "upload_time": "2019-06-16T04:12:37", "upload_time_iso_8601": "2019-06-16T04:12:37.086628Z", "url": "https://files.pythonhosted.org/packages/0b/08/e5710fdefe240b0998582706dfee03c9f43aa3afc0523121f6e3789de723/miniaudio-1.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "76385856a0d82197d47a3f3e5590c93d", "sha256": "11f45c071bdb6117ba4e6532236ae9fddee4cd0e5d60bca4f396819eda32bd24" }, "downloads": -1, "filename": "miniaudio-1.2.2-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "76385856a0d82197d47a3f3e5590c93d", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 194509, "upload_time": "2019-06-16T12:38:41", "upload_time_iso_8601": "2019-06-16T12:38:41.595489Z", "url": "https://files.pythonhosted.org/packages/fc/0b/2e04ad679128ada4c116201a87014483c1255a9b5f27b59dfcb9625a90ed/miniaudio-1.2.2-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3ca92f63be769b73341fd716d768832f", "sha256": "01dca54d43fd24ca16b3ba494b4cdaac999b887407ee4ba539e54685723b8367" }, "downloads": -1, "filename": "miniaudio-1.2.2-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "3ca92f63be769b73341fd716d768832f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 226419, "upload_time": "2019-06-16T12:38:43", "upload_time_iso_8601": "2019-06-16T12:38:43.527739Z", "url": "https://files.pythonhosted.org/packages/51/6a/f134bc282181bb3b6ba1387f304e313fc662b3a77714061666045b86bd2b/miniaudio-1.2.2-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a79b45b0153fe879843cfe2a7f0fe45e", "sha256": "a650483d7800be09498ed54947024214343dbcad7960302184afa61682830c18" }, "downloads": -1, "filename": "miniaudio-1.2.2.tar.gz", "has_sig": false, "md5_digest": "a79b45b0153fe879843cfe2a7f0fe45e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 422496, "upload_time": "2019-06-16T05:00:02", "upload_time_iso_8601": "2019-06-16T05:00:02.449893Z", "url": "https://files.pythonhosted.org/packages/ca/63/2bc537dac48cd307e8ffe138d29a94a0162fdf2f06fe2ebe9a9b30195faa/miniaudio-1.2.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.20": [ { "comment_text": "", "digests": { "md5": "7bb99f9a0f0c98107cbae6302e76a36e", "sha256": "65dbbed4a47ec2ce1fa1b05f25386926bf38e5aa3451f281a69adb675666c777" }, "downloads": -1, "filename": "miniaudio-1.20-cp37-cp37m-linux_armv7l.whl", "has_sig": false, "md5_digest": "7bb99f9a0f0c98107cbae6302e76a36e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 419048, "upload_time": "2020-04-15T18:00:31", "upload_time_iso_8601": "2020-04-15T18:00:31.476127Z", "url": "https://files.pythonhosted.org/packages/d8/9d/9fbef688ff38e94fc3d2577cf6524e88cc0b07c525cd671330942dd73485/miniaudio-1.20-cp37-cp37m-linux_armv7l.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e67409592ed5411b80d6bf3aa090e484", "sha256": "cead63a7332b061829a005c38028f8b1b541587fd9c01738789a6f843dd476ff" }, "downloads": -1, "filename": "miniaudio-1.20-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "e67409592ed5411b80d6bf3aa090e484", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 234165, "upload_time": "2020-04-15T17:47:25", "upload_time_iso_8601": "2020-04-15T17:47:25.237849Z", "url": "https://files.pythonhosted.org/packages/0a/a3/038a69820891343c18198fe4e63f5de61db252ba038546b4804e6e8b4051/miniaudio-1.20-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "26c9b46c516b5f4a6bbe5b25ce532875", "sha256": "c3b3611f8b3f7d6da50c259de88fbeac200d1f2930556fbe0fd01b4e52c59e03" }, "downloads": -1, "filename": "miniaudio-1.20-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "26c9b46c516b5f4a6bbe5b25ce532875", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 270487, "upload_time": "2020-04-15T17:47:23", "upload_time_iso_8601": "2020-04-15T17:47:23.315383Z", "url": "https://files.pythonhosted.org/packages/bd/19/622f17828d5aff17604ce5c9c88883e161ff37a794408f4294da28b091ad/miniaudio-1.20-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "26d850499295f14afc5448e29c8b0ce5", "sha256": "04f503c5996175793d54143e6a9d749ee02c0a9047c3fa25d91872551fceb77a" }, "downloads": -1, "filename": "miniaudio-1.20-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "26d850499295f14afc5448e29c8b0ce5", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 234225, "upload_time": "2020-04-15T17:47:28", "upload_time_iso_8601": "2020-04-15T17:47:28.781408Z", "url": "https://files.pythonhosted.org/packages/11/ac/bfac07af4e2f14f11e26d6ba93bfc28965ea986d3a2c0b0da55966193f65/miniaudio-1.20-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b01d2799cf087e1a47747c321faa963c", "sha256": "53320e40ef21bed96da11ffca2921e2c10e5e55f46c7b898394c504028aed67a" }, "downloads": -1, "filename": "miniaudio-1.20-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "b01d2799cf087e1a47747c321faa963c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 270516, "upload_time": "2020-04-15T17:47:26", "upload_time_iso_8601": "2020-04-15T17:47:26.849245Z", "url": "https://files.pythonhosted.org/packages/fd/be/b2d4616aea003fa60f76712054fa468845f9e765f6163de3b2061c50c0a2/miniaudio-1.20-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ab8131fbeb2b4704a6246542633bf9c3", "sha256": "395d9d1013eabda57e6125aa2bcffd59c14b2cca26b409ce09317b555987b0ed" }, "downloads": -1, "filename": "miniaudio-1.20.tar.gz", "has_sig": false, "md5_digest": "ab8131fbeb2b4704a6246542633bf9c3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 529165, "upload_time": "2020-04-15T17:44:44", "upload_time_iso_8601": "2020-04-15T17:44:44.571132Z", "url": "https://files.pythonhosted.org/packages/d9/b7/e79f689257e725e6def6b70d45b0cc94c46a7331b86cec6e345d04cfc4e1/miniaudio-1.20.tar.gz", "yanked": false, "yanked_reason": null } ], "1.21": [ { "comment_text": "", "digests": { "md5": "f4e747ca7995871cf78a4806001c10eb", "sha256": "aeb3cc232f9a852313461dda6fc2f90a51cd8567cbb59b0ff5e28922fedc16a8" }, "downloads": -1, "filename": "miniaudio-1.21-cp37-cp37m-linux_armv7l.whl", "has_sig": false, "md5_digest": "f4e747ca7995871cf78a4806001c10eb", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 405271, "upload_time": "2020-05-10T12:48:55", "upload_time_iso_8601": "2020-05-10T12:48:55.083004Z", "url": "https://files.pythonhosted.org/packages/d2/36/4891ba1185ecfffe09204934314d97f2fa93471341fb75e4ee51205b15b7/miniaudio-1.21-cp37-cp37m-linux_armv7l.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "92dd13f477b5bad92b5cb0b2aa25d8e3", "sha256": "e21d62f336843924b55a2a1359c40e1157f6186d1c3cb2fe74aab62098e7cc2b" }, "downloads": -1, "filename": "miniaudio-1.21-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "92dd13f477b5bad92b5cb0b2aa25d8e3", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 234115, "upload_time": "2020-05-10T11:55:50", "upload_time_iso_8601": "2020-05-10T11:55:50.850408Z", "url": "https://files.pythonhosted.org/packages/7e/ec/25af054d78e5abc03aaf0953bc438bf0560c214dd7aa3a091ef33296bfcc/miniaudio-1.21-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0368ea29540921483cbe9bc4af581428", "sha256": "cee2bae0f6995969adac81749fef4ad81a894b842adabd94cabff4c492e45be1" }, "downloads": -1, "filename": "miniaudio-1.21-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "0368ea29540921483cbe9bc4af581428", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 269892, "upload_time": "2020-05-10T11:55:49", "upload_time_iso_8601": "2020-05-10T11:55:49.040176Z", "url": "https://files.pythonhosted.org/packages/79/3c/4f0dcc7bc589530526dedc7d35cda957d3dee4d8b398ea8887730374d728/miniaudio-1.21-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "458e5452e71f681a634d50729a473ddd", "sha256": "b9d6ac1f68b252f72f35a316b526a90ef34e47a27ef040ef1dd743ddd5b5484f" }, "downloads": -1, "filename": "miniaudio-1.21-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "458e5452e71f681a634d50729a473ddd", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 234150, "upload_time": "2020-05-10T11:55:54", "upload_time_iso_8601": "2020-05-10T11:55:54.494560Z", "url": "https://files.pythonhosted.org/packages/9b/16/06daa39275befe2958e62a323e0320d56d905fde1bce614031f6adc767e8/miniaudio-1.21-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1086dc54a826b67961e3f8a713938f05", "sha256": "e691950cb24dbf80104310f1bae213d4b0992eeeeb41825ed9c3c3655a179870" }, "downloads": -1, "filename": "miniaudio-1.21-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "1086dc54a826b67961e3f8a713938f05", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 269924, "upload_time": "2020-05-10T11:55:52", "upload_time_iso_8601": "2020-05-10T11:55:52.692437Z", "url": "https://files.pythonhosted.org/packages/1a/d0/d636f39d3d8329d121a3466ec628a82a4ff88dcbdae4f080946bcf4a20d8/miniaudio-1.21-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2ce8fff451b900ed01bcde616e260e00", "sha256": "6313f471f243621e4e739dae5af567c6af537448a0c1fae7041f9803dc917534" }, "downloads": -1, "filename": "miniaudio-1.21.tar.gz", "has_sig": false, "md5_digest": "2ce8fff451b900ed01bcde616e260e00", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 531390, "upload_time": "2020-05-10T11:51:49", "upload_time_iso_8601": "2020-05-10T11:51:49.526262Z", "url": "https://files.pythonhosted.org/packages/33/92/bfc4668692a06b7591ceb473d21f7ee0c0148f67ae861cc29196ecf9183b/miniaudio-1.21.tar.gz", "yanked": false, "yanked_reason": null } ], "1.22": [ { "comment_text": "", "digests": { "md5": "c80801aeabcc199bdbf87888562ad4c0", "sha256": "65c4c3a943c115f13709bab61a6bfa720d70daa680e374ebfbfb85d9f2bba3b9" }, "downloads": -1, "filename": "miniaudio-1.22-cp37-cp37m-linux_armv7l.whl", "has_sig": false, "md5_digest": "c80801aeabcc199bdbf87888562ad4c0", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 414318, "upload_time": "2020-06-02T21:08:12", "upload_time_iso_8601": "2020-06-02T21:08:12.127710Z", "url": "https://files.pythonhosted.org/packages/75/87/46343c112a8d0a253a8df6ae974164322f2f1e63ee1126e72f81d08d1cc0/miniaudio-1.22-cp37-cp37m-linux_armv7l.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b480e07d80d282cd5865817fc1f9469e", "sha256": "5316739f9f1b9c5e20940d74adf2f53a9a2d7e82d28277beb4b0a7d263d6b90c" }, "downloads": -1, "filename": "miniaudio-1.22-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "b480e07d80d282cd5865817fc1f9469e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 236129, "upload_time": "2020-06-02T20:53:56", "upload_time_iso_8601": "2020-06-02T20:53:56.999560Z", "url": "https://files.pythonhosted.org/packages/e7/5c/6cdf7afdf49d53e3eaa69e134a0f6840f33f44e52fd7129f035ccf26dfe2/miniaudio-1.22-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8b5e02ccb75a1aae1381d3362beb1fbc", "sha256": "d060a54496229faa873ff1eaba2fea44bf30ec94ca08d7f2f71265dfb767d4a8" }, "downloads": -1, "filename": "miniaudio-1.22-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "8b5e02ccb75a1aae1381d3362beb1fbc", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 270983, "upload_time": "2020-06-02T20:53:55", "upload_time_iso_8601": "2020-06-02T20:53:55.270314Z", "url": "https://files.pythonhosted.org/packages/d8/56/1214a0d5fee4a71b90d110670578b06db59507df8417f9f29e931ceac26d/miniaudio-1.22-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1aeed8b5c45143ad5130762fdb378902", "sha256": "ef09c15ea4702edb67a78bb35f8178aa18e49fcbdf758331fa2dfe9cb9b60163" }, "downloads": -1, "filename": "miniaudio-1.22-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "1aeed8b5c45143ad5130762fdb378902", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 236169, "upload_time": "2020-06-02T20:54:01", "upload_time_iso_8601": "2020-06-02T20:54:01.130948Z", "url": "https://files.pythonhosted.org/packages/be/62/03666ea96ae08a711cd085e68f8f75fe9302f805d18456df3b18ca10e338/miniaudio-1.22-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0062e5f74803f16afa4c43e07731ea48", "sha256": "4e2964a26e4cf8a7f28c8ff41206ca6f1740458188c3c9914556592e91421302" }, "downloads": -1, "filename": "miniaudio-1.22-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "0062e5f74803f16afa4c43e07731ea48", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 271003, "upload_time": "2020-06-02T20:53:58", "upload_time_iso_8601": "2020-06-02T20:53:58.827008Z", "url": "https://files.pythonhosted.org/packages/cc/f2/30c6ab4ce03f1a64191829fc787cf4e1efbdadd929aaa11d5084a617970d/miniaudio-1.22-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ee0e407beae1f38a87b76ea8c9d66c08", "sha256": "d0707d369c2cc383dcdc2cdce118292e58da172b544522dd764b28aeb485015c" }, "downloads": -1, "filename": "miniaudio-1.22.tar.gz", "has_sig": false, "md5_digest": "ee0e407beae1f38a87b76ea8c9d66c08", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 538228, "upload_time": "2020-06-02T20:51:17", "upload_time_iso_8601": "2020-06-02T20:51:17.904022Z", "url": "https://files.pythonhosted.org/packages/19/17/a7f0af4b2cc5bd08de11bed33562caa020ac1862bd3015a6fc352135c2ca/miniaudio-1.22.tar.gz", "yanked": false, "yanked_reason": null } ], "1.23": [ { "comment_text": "", "digests": { "md5": "4e85c2b6dbfafd73e4ff723e54a80d6c", "sha256": "e4fe8be644a26d0890e7587e3576d2ac0897ef755c0c2413c0e625cff04d911b" }, "downloads": -1, "filename": "miniaudio-1.23-cp37-cp37m-linux_armv7l.whl", "has_sig": false, "md5_digest": "4e85c2b6dbfafd73e4ff723e54a80d6c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 423553, "upload_time": "2020-06-22T21:45:39", "upload_time_iso_8601": "2020-06-22T21:45:39.136596Z", "url": "https://files.pythonhosted.org/packages/79/cf/7579b03286e0b53df446af850a0e1e266223a9064edc76def3ee3e79318c/miniaudio-1.23-cp37-cp37m-linux_armv7l.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "612cb36bb73637d0feaabd03b003300a", "sha256": "164ba732a1f68f0083c59d1cd9b6370292e2e08d0e026a36c32567084988cd03" }, "downloads": -1, "filename": "miniaudio-1.23-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "612cb36bb73637d0feaabd03b003300a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 238884, "upload_time": "2020-06-22T21:44:24", "upload_time_iso_8601": "2020-06-22T21:44:24.256940Z", "url": "https://files.pythonhosted.org/packages/89/c4/5b27b257dc4281747687371d009e1eca10ecff164c05076229dcc0d679a7/miniaudio-1.23-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "40a431135d8f85bbb4c5f049d70410db", "sha256": "453510eb2a2e1298b39607106a913acad1619cdc16927c1203378e8a7b50d248" }, "downloads": -1, "filename": "miniaudio-1.23-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "40a431135d8f85bbb4c5f049d70410db", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 275133, "upload_time": "2020-06-22T21:44:22", "upload_time_iso_8601": "2020-06-22T21:44:22.584601Z", "url": "https://files.pythonhosted.org/packages/4e/7c/37dcfcaf340bba9fdf76078b5e96ece1b2fbf0cae3805b998d79cbe104fc/miniaudio-1.23-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b9b4f9d012bfca43d0b00978f959c17c", "sha256": "8f0c525cae599d9fa93b0a4e25a67cfa30f5bc944ab8564c9e92666178b8e83a" }, "downloads": -1, "filename": "miniaudio-1.23-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "b9b4f9d012bfca43d0b00978f959c17c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 238894, "upload_time": "2020-06-22T21:44:27", "upload_time_iso_8601": "2020-06-22T21:44:27.674891Z", "url": "https://files.pythonhosted.org/packages/ad/53/ded6b1bd88eb8de46c21d5253c1cf5d6dd23dd872c3e9bbea1c57428d82d/miniaudio-1.23-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dfd6a1d37a0a46da56129d59466a1ceb", "sha256": "42c3372381ab5c727b4b279cbf216377db118ff7c73c10121ec85a39784b3a70" }, "downloads": -1, "filename": "miniaudio-1.23-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "dfd6a1d37a0a46da56129d59466a1ceb", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 275203, "upload_time": "2020-06-22T21:44:26", "upload_time_iso_8601": "2020-06-22T21:44:26.118985Z", "url": "https://files.pythonhosted.org/packages/44/79/a9a4ed3076247f1ae6101c75110a4b1463579219d96751db9e544b4f64dd/miniaudio-1.23-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6ce77660cab7d73246a64d95fa67f74b", "sha256": "2b84148af20c868ffac008e74b6b3577f69bd0d2c5ee9f78fce71b069c7dd908" }, "downloads": -1, "filename": "miniaudio-1.23.tar.gz", "has_sig": false, "md5_digest": "6ce77660cab7d73246a64d95fa67f74b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 547252, "upload_time": "2020-06-22T21:44:09", "upload_time_iso_8601": "2020-06-22T21:44:09.074951Z", "url": "https://files.pythonhosted.org/packages/9a/88/fc37d8443f2df4e35311334d70477baf447e180b1d456d767b7db9edcaf7/miniaudio-1.23.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3": [ { "comment_text": "", "digests": { "md5": "62e775f914d48f40813ba67872e73353", "sha256": "622e24af8f229e37ac032fda99f26e5b7dcb84bf691cc4a7a1a9b21b63003ed7" }, "downloads": -1, "filename": "miniaudio-1.3-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "62e775f914d48f40813ba67872e73353", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 195840, "upload_time": "2019-06-17T17:42:04", "upload_time_iso_8601": "2019-06-17T17:42:04.508336Z", "url": "https://files.pythonhosted.org/packages/2d/bb/8ce218233f27fa63945818cd14cb131ee635ecace948f6a6e1197653417b/miniaudio-1.3-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a1657408e35faa8681440ec28e4a5dcb", "sha256": "e297c7354588a5711b453f22a4cd4c19c00c6cf22c4f8d78fcb7b1a23cdb0245" }, "downloads": -1, "filename": "miniaudio-1.3-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "a1657408e35faa8681440ec28e4a5dcb", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 227592, "upload_time": "2019-06-17T17:42:07", "upload_time_iso_8601": "2019-06-17T17:42:07.044922Z", "url": "https://files.pythonhosted.org/packages/f3/d3/b0a23447dac15d036f1cd882534bf2bddb4e4acea709b8b81d0ecb1838fa/miniaudio-1.3-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f1570552bd6b508bbff3d75342b9eef1", "sha256": "9377d7a61970a18a6cb75671aeb7cb5211162843f59207362181d3251d3c6506" }, "downloads": -1, "filename": "miniaudio-1.3.tar.gz", "has_sig": false, "md5_digest": "f1570552bd6b508bbff3d75342b9eef1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 425064, "upload_time": "2019-06-17T17:41:40", "upload_time_iso_8601": "2019-06-17T17:41:40.562293Z", "url": "https://files.pythonhosted.org/packages/ec/53/d5cadf60351bde7052436c87403b3490988cb8b5a03471c4bc94b0844e2d/miniaudio-1.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.30": [ { "comment_text": "", "digests": { "md5": "f67a666acaa1a10ade15999a9ebde133", "sha256": "082b21fdf126899219e3de5dbd9f714dffc433dc2f6179103db9161cde72b2ac" }, "downloads": -1, "filename": "miniaudio-1.30-cp37-cp37m-linux_armv7l.whl", "has_sig": false, "md5_digest": "f67a666acaa1a10ade15999a9ebde133", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 433571, "upload_time": "2020-06-29T21:32:37", "upload_time_iso_8601": "2020-06-29T21:32:37.106778Z", "url": "https://files.pythonhosted.org/packages/c3/0b/dd9b1936b19cb915be75e131dbc74a27b931804fcf275b4265ca4bc59e4f/miniaudio-1.30-cp37-cp37m-linux_armv7l.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "114648f1149f0694e99267a78b780417", "sha256": "fd482787a1924264552a2f49850768505b2091889821d36ce8a4f50d720e080f" }, "downloads": -1, "filename": "miniaudio-1.30-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "114648f1149f0694e99267a78b780417", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 237513, "upload_time": "2020-06-29T21:28:15", "upload_time_iso_8601": "2020-06-29T21:28:15.238172Z", "url": "https://files.pythonhosted.org/packages/1d/03/362e9d9f3742802e143bcfb2912eb478f310fe66f3591a38da28e9a27a41/miniaudio-1.30-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d6a8dcb6d4196c92117c7e3ebf7499cd", "sha256": "01931af9463eda0ab2ea2633492dfbf49b8260bf9b6def23f74139d015fc9996" }, "downloads": -1, "filename": "miniaudio-1.30-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "d6a8dcb6d4196c92117c7e3ebf7499cd", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 273012, "upload_time": "2020-06-29T21:28:13", "upload_time_iso_8601": "2020-06-29T21:28:13.634779Z", "url": "https://files.pythonhosted.org/packages/d7/d8/74a41459eabba35b8ad97fca114b0dd405db6282ea6de6260046e59d4f55/miniaudio-1.30-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "031bbb4a148dac7233b68c50d5272778", "sha256": "f889d6735d081516693662d6d1fe5bf056d4004e1a5f08f8db42cbe213ac7df4" }, "downloads": -1, "filename": "miniaudio-1.30-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "031bbb4a148dac7233b68c50d5272778", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 237553, "upload_time": "2020-06-29T21:28:18", "upload_time_iso_8601": "2020-06-29T21:28:18.775438Z", "url": "https://files.pythonhosted.org/packages/35/58/9fe4907ddd4586cfa7be95b912b45e445dd28d22df471b7346c1f37ea12c/miniaudio-1.30-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e380c2730f0f2bc1c6fb4a62e3a6da5d", "sha256": "6401dcf1520b7bf142bfca87c985925e02c56ea6a6e34671974f373f1223d92a" }, "downloads": -1, "filename": "miniaudio-1.30-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "e380c2730f0f2bc1c6fb4a62e3a6da5d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 273014, "upload_time": "2020-06-29T21:28:16", "upload_time_iso_8601": "2020-06-29T21:28:16.906545Z", "url": "https://files.pythonhosted.org/packages/15/ee/26e029f722ba90001f582383a250db8c09ce19fc27ba864f79a4241c3318/miniaudio-1.30-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4d08b1f61c19d59ed7a5a82264ab9375", "sha256": "398aab84cb0f34048231a103fe30bcea316c376f4a20a2aa24cfdc3a93414f86" }, "downloads": -1, "filename": "miniaudio-1.30.tar.gz", "has_sig": false, "md5_digest": "4d08b1f61c19d59ed7a5a82264ab9375", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 491783, "upload_time": "2020-06-29T21:23:58", "upload_time_iso_8601": "2020-06-29T21:23:58.138463Z", "url": "https://files.pythonhosted.org/packages/4f/74/9030ecc7a5235600b7637a99ce82952f4839ea0ba1b33808f37dd1a0181b/miniaudio-1.30.tar.gz", "yanked": false, "yanked_reason": null } ], "1.31": [ { "comment_text": "", "digests": { "md5": "871be2a1640b5896eaddb6a12643463e", "sha256": "7893c3982a025797264dc97fd71010172053071edeff1dc67faf0725c1a94ecb" }, "downloads": -1, "filename": "miniaudio-1.31-cp37-cp37m-linux_armv7l.whl", "has_sig": false, "md5_digest": "871be2a1640b5896eaddb6a12643463e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 455432, "upload_time": "2020-07-12T17:20:04", "upload_time_iso_8601": "2020-07-12T17:20:04.202687Z", "url": "https://files.pythonhosted.org/packages/ea/4f/ab12d9d1014b2bbec0176966d5f51a0406f4b2e661ccb3a9a22086aea01f/miniaudio-1.31-cp37-cp37m-linux_armv7l.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "98a4f6b6d5e6988f7d114bba4545c6c5", "sha256": "f85afde80142c2516004633cdc2e19a687fed961f8dc181d46ad6ce5fa112464" }, "downloads": -1, "filename": "miniaudio-1.31-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "98a4f6b6d5e6988f7d114bba4545c6c5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 237634, "upload_time": "2020-07-12T17:17:26", "upload_time_iso_8601": "2020-07-12T17:17:26.064906Z", "url": "https://files.pythonhosted.org/packages/c7/70/d7621ddda07f23e6969fd81f9469ac8d531870a578f85fc872e066b9a520/miniaudio-1.31-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "32ce538645277d6b707b2def2428986c", "sha256": "05b4995ae5c4a090fb314f23577f03b0e881e996e9d7030952782808d4ad6137" }, "downloads": -1, "filename": "miniaudio-1.31-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "32ce538645277d6b707b2def2428986c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 273333, "upload_time": "2020-07-12T17:17:24", "upload_time_iso_8601": "2020-07-12T17:17:24.455952Z", "url": "https://files.pythonhosted.org/packages/bd/ad/c99424d2047f894297a0a9dea1abffb9800f212b4f374bd4922aa975b9f5/miniaudio-1.31-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c4cef30d2f932a061b6250a28fe0b164", "sha256": "76d416e4af9967732cd62d1f5d342e7218edac86e5b64fa7762cf8d7fcb1cd2e" }, "downloads": -1, "filename": "miniaudio-1.31-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "c4cef30d2f932a061b6250a28fe0b164", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 237670, "upload_time": "2020-07-12T17:17:28", "upload_time_iso_8601": "2020-07-12T17:17:28.998692Z", "url": "https://files.pythonhosted.org/packages/bb/24/3f95522a3544ccab01f1efba7603568bd38a5465222d400157769450d17a/miniaudio-1.31-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "992a248ef809038b02da7cf6c0402772", "sha256": "f0fa23146bf90f7a2e380e1a584bdd7ab9337efdb93ee56fe7114e7bfd51f3ae" }, "downloads": -1, "filename": "miniaudio-1.31-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "992a248ef809038b02da7cf6c0402772", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 273341, "upload_time": "2020-07-12T17:17:27", "upload_time_iso_8601": "2020-07-12T17:17:27.587231Z", "url": "https://files.pythonhosted.org/packages/48/ee/955d898229e75b165a79e01eb0ed35710b6f72283d1dcc09ae271c945196/miniaudio-1.31-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "db5a22da319dfa94ef5be123b394b3e5", "sha256": "2b5f05fbfddd2b70fb92f8a768714668b44ca780f95ba863a4b6f3da99cf2bd3" }, "downloads": -1, "filename": "miniaudio-1.31.tar.gz", "has_sig": false, "md5_digest": "db5a22da319dfa94ef5be123b394b3e5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 492943, "upload_time": "2020-07-12T17:17:12", "upload_time_iso_8601": "2020-07-12T17:17:12.515981Z", "url": "https://files.pythonhosted.org/packages/1c/81/6209c3e20963b7e74c95e44a3fd9bbcc066e75ac4ab9da60198722a2b46c/miniaudio-1.31.tar.gz", "yanked": false, "yanked_reason": null } ], "1.32": [ { "comment_text": "", "digests": { "md5": "7e98a71426fd540a1042d11c5696d9d9", "sha256": "82e21f7766c11a225e14a9b91de0d2ab7ad7214cb8d54b47f61d6ca9f8a57298" }, "downloads": -1, "filename": "miniaudio-1.32-cp37-cp37m-linux_armv7l.whl", "has_sig": false, "md5_digest": "7e98a71426fd540a1042d11c5696d9d9", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 456061, "upload_time": "2020-07-24T16:07:44", "upload_time_iso_8601": "2020-07-24T16:07:44.646789Z", "url": "https://files.pythonhosted.org/packages/26/51/76104fc4874c6fc8ed8782aebdf3186cf727a024d73c9f1d79efc0360851/miniaudio-1.32-cp37-cp37m-linux_armv7l.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e7795624c8a2f16c330af6f963c440ee", "sha256": "3597d8352d6f067e1c3d6e0bb55694ddb8aac16dc44d19379e68e12a70e30357" }, "downloads": -1, "filename": "miniaudio-1.32-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "e7795624c8a2f16c330af6f963c440ee", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 237687, "upload_time": "2020-07-24T16:09:29", "upload_time_iso_8601": "2020-07-24T16:09:29.884337Z", "url": "https://files.pythonhosted.org/packages/d0/58/8b4d82cf3f0c18775613c0798e5f43f3d0f5d88dc01e4b5a293422320b02/miniaudio-1.32-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6c8aee5f512e76298cd8b9b72620d6f1", "sha256": "46fab9064d53c54d0b049eb50d3fbc9df1064c7e1661c325da805c901067d1ec" }, "downloads": -1, "filename": "miniaudio-1.32-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "6c8aee5f512e76298cd8b9b72620d6f1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 273411, "upload_time": "2020-07-24T16:09:28", "upload_time_iso_8601": "2020-07-24T16:09:28.379365Z", "url": "https://files.pythonhosted.org/packages/82/b5/c6c514684cffcffdc404314ad0f200773c21341be11da2450c7e19838d15/miniaudio-1.32-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ae79dc365e36ff3f7150c74f63ed1ad1", "sha256": "84c74fa950d2663e5c650ee06a582c76288f86155267edd1614d16a058015cd5" }, "downloads": -1, "filename": "miniaudio-1.32-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "ae79dc365e36ff3f7150c74f63ed1ad1", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 237713, "upload_time": "2020-07-24T16:09:33", "upload_time_iso_8601": "2020-07-24T16:09:33.442362Z", "url": "https://files.pythonhosted.org/packages/03/c0/47d621671d30fa319e629b4b85b92dea6f81fd97a9a608ee2a2dade70a9c/miniaudio-1.32-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2bfa9ac8b3ff23fc96ed94e0aa78201c", "sha256": "d07964abd9257af2729fa76d1346fb7baf6c2262753b83b226b4289a3c83e3f7" }, "downloads": -1, "filename": "miniaudio-1.32-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "2bfa9ac8b3ff23fc96ed94e0aa78201c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 273445, "upload_time": "2020-07-24T16:09:31", "upload_time_iso_8601": "2020-07-24T16:09:31.607030Z", "url": "https://files.pythonhosted.org/packages/4d/02/0faed6d06a46d56038480c0b7071ffafc1257d48165bc4b10a31b0709f34/miniaudio-1.32-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2a3182bd4d60e0393664ee124fd7cdc2", "sha256": "76800b70ad02b92f9493a801098f045dbb797edf3f2ce6eeff3cbf13e97177b8" }, "downloads": -1, "filename": "miniaudio-1.32.tar.gz", "has_sig": false, "md5_digest": "2a3182bd4d60e0393664ee124fd7cdc2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 493751, "upload_time": "2020-07-24T16:07:17", "upload_time_iso_8601": "2020-07-24T16:07:17.935257Z", "url": "https://files.pythonhosted.org/packages/0c/1b/660f05d4a1ee1f9476811dda96882c6a2c7df768849243a0dd275be09e0b/miniaudio-1.32.tar.gz", "yanked": false, "yanked_reason": null } ], "1.33": [ { "comment_text": "", "digests": { "md5": "965409a65c95376589941b6c7153ceea", "sha256": "493fcc05a2431fdc0ea99a9897391714fd4149bb092f8f191b52d26cb46ee060" }, "downloads": -1, "filename": "miniaudio-1.33-cp37-cp37m-linux_armv7l.whl", "has_sig": false, "md5_digest": "965409a65c95376589941b6c7153ceea", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 457344, "upload_time": "2020-08-22T09:43:24", "upload_time_iso_8601": "2020-08-22T09:43:24.874782Z", "url": "https://files.pythonhosted.org/packages/a3/e9/917c7b5522f3a3a77912afa1713af5ee428e0db75f694e9b7571657266bd/miniaudio-1.33-cp37-cp37m-linux_armv7l.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e8a6fc644863336cb822bdd94484b31b", "sha256": "94bbdfac2c3cf2ab2ab24768c2beed4560b7369665d8d0c893161c2367d976b2" }, "downloads": -1, "filename": "miniaudio-1.33-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "e8a6fc644863336cb822bdd94484b31b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 237504, "upload_time": "2020-08-22T09:42:32", "upload_time_iso_8601": "2020-08-22T09:42:32.806781Z", "url": "https://files.pythonhosted.org/packages/36/fa/b0875abefd9b3ecb3375bd25b3fe98bad5b3a3d14b449cb97acf874eaff8/miniaudio-1.33-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b7db0ab1a4e79ef5cd2d3c9cb5e5c62c", "sha256": "27f58edfd13289b54f0e908b17dd58f499fd134bf3cf1f22d54afb03f57c6b5b" }, "downloads": -1, "filename": "miniaudio-1.33-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "b7db0ab1a4e79ef5cd2d3c9cb5e5c62c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 273518, "upload_time": "2020-08-22T09:42:30", "upload_time_iso_8601": "2020-08-22T09:42:30.928861Z", "url": "https://files.pythonhosted.org/packages/29/6a/97b2faf94da065ac43a8776448bb19aa1602b1fba19a809936745d691c74/miniaudio-1.33-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3db86e981172202a7f587bca24650978", "sha256": "72ebb7358faf061172279c0d695e3dc6760771c37b6f7d626cea24ac9a31b150" }, "downloads": -1, "filename": "miniaudio-1.33-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "3db86e981172202a7f587bca24650978", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 237530, "upload_time": "2020-08-22T09:42:36", "upload_time_iso_8601": "2020-08-22T09:42:36.128043Z", "url": "https://files.pythonhosted.org/packages/fd/8a/b4e42987002cae7f7eeb0b2c0e9f6b178c92c04a61f673694d8a86400b96/miniaudio-1.33-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4461d8c95647814b258314dc68fe1923", "sha256": "23ff31b632c61bbd206dd963890f7f6878c423c9e6d3b373e3d7fe1410b7f3b7" }, "downloads": -1, "filename": "miniaudio-1.33-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "4461d8c95647814b258314dc68fe1923", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 273571, "upload_time": "2020-08-22T09:42:34", "upload_time_iso_8601": "2020-08-22T09:42:34.429795Z", "url": "https://files.pythonhosted.org/packages/87/71/c907f36df51f9970a659759828beb370da8e8f01fa33b189699a63171e7b/miniaudio-1.33-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "de7d75efcd34b3843ab2951db33d2770", "sha256": "6e5c170ac4d62d4502d11895107dc23c70c7257dfe0e7fa149d9d59aabd27194" }, "downloads": -1, "filename": "miniaudio-1.33.tar.gz", "has_sig": false, "md5_digest": "de7d75efcd34b3843ab2951db33d2770", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 497709, "upload_time": "2020-08-22T09:41:24", "upload_time_iso_8601": "2020-08-22T09:41:24.019438Z", "url": "https://files.pythonhosted.org/packages/4d/68/e8f0bb66bc7653a338286f3b36d951c2029d4e5876520961cd5e02552b45/miniaudio-1.33.tar.gz", "yanked": false, "yanked_reason": null } ], "1.34": [ { "comment_text": "", "digests": { "md5": "035098b60f98570d25a6ee3cae4b620a", "sha256": "80a7101af75232e2891b943755c830f04c687f356736f9f414cd095e0ff60eec" }, "downloads": -1, "filename": "miniaudio-1.34-cp37-cp37m-linux_armv7l.whl", "has_sig": false, "md5_digest": "035098b60f98570d25a6ee3cae4b620a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 456354, "upload_time": "2020-08-30T23:53:36", "upload_time_iso_8601": "2020-08-30T23:53:36.620685Z", "url": "https://files.pythonhosted.org/packages/9a/64/cea65b328ece0bb33526480ad2a1b553236a79d723b992b836d74a958d96/miniaudio-1.34-cp37-cp37m-linux_armv7l.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "60ddee3caaa906d6beff0066557f0f7b", "sha256": "a8123b12b2c14495d9a929505ec3911615ad6eb1ee5fd02f0729dadaef01d204" }, "downloads": -1, "filename": "miniaudio-1.34-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "60ddee3caaa906d6beff0066557f0f7b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 237758, "upload_time": "2020-08-30T23:53:04", "upload_time_iso_8601": "2020-08-30T23:53:04.975323Z", "url": "https://files.pythonhosted.org/packages/16/e3/2bf19854f7800d3dec12438c39821a3cd5e00560453c58b7aa1360eb47e3/miniaudio-1.34-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ef999f4a0a185ba5bf09077b6a220ecd", "sha256": "2d24778e69371a486bcc8f6f782ecb664f749c81e9c4f57233fd65f46c6d945b" }, "downloads": -1, "filename": "miniaudio-1.34-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "ef999f4a0a185ba5bf09077b6a220ecd", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 273801, "upload_time": "2020-08-30T23:53:02", "upload_time_iso_8601": "2020-08-30T23:53:02.887240Z", "url": "https://files.pythonhosted.org/packages/d0/58/a99fc73ef4a01fd9552651089d8e35ea91ff3bc73098509d55edd16c803b/miniaudio-1.34-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fc4e95ca73a3e5f8456da4c65b4bb7fb", "sha256": "3cc0e3542f8924a46957eac7d6e06119a3b818a1976bfdecd4942a1f85fda6de" }, "downloads": -1, "filename": "miniaudio-1.34-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "fc4e95ca73a3e5f8456da4c65b4bb7fb", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 237787, "upload_time": "2020-08-30T23:53:08", "upload_time_iso_8601": "2020-08-30T23:53:08.810355Z", "url": "https://files.pythonhosted.org/packages/9f/de/8274f9c1ec59cb9194dffce2eb3c27ad0cf7f1252c11b22bff882b0ac230/miniaudio-1.34-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f1bf9361813d69bb8ce730cdc881747f", "sha256": "09e37394545045e1cd93515137f0801b1e5a4fab5ce790ccbf24c51b12a240b9" }, "downloads": -1, "filename": "miniaudio-1.34-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "f1bf9361813d69bb8ce730cdc881747f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 273844, "upload_time": "2020-08-30T23:53:06", "upload_time_iso_8601": "2020-08-30T23:53:06.956105Z", "url": "https://files.pythonhosted.org/packages/6b/01/920e8853caa8c91cf9bab2b78a5f5ce17db6cc0ce6e085b3f1c4f0cae303/miniaudio-1.34-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "efb0c4a787bcb4ad0697d08441089aff", "sha256": "f2b3e5ef1057cd1a227282b6da9976ac4b42245eebf0904fbb2c3f5ed0cc06f7" }, "downloads": -1, "filename": "miniaudio-1.34.tar.gz", "has_sig": false, "md5_digest": "efb0c4a787bcb4ad0697d08441089aff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 498305, "upload_time": "2020-08-30T23:52:51", "upload_time_iso_8601": "2020-08-30T23:52:51.391618Z", "url": "https://files.pythonhosted.org/packages/7e/01/6574fbf41283cebe7e353a374f4f1d3f23cc4771ff9d42158bd2c520ef63/miniaudio-1.34.tar.gz", "yanked": false, "yanked_reason": null } ], "1.35": [ { "comment_text": "", "digests": { "md5": "e20096d7324b9fb8a988ce11c96c6139", "sha256": "b79bc42866149ba7bef53107dd8e191d64e4ddbf8265d91ee0e9f6edafef16e6" }, "downloads": -1, "filename": "miniaudio-1.35-cp37-cp37m-linux_armv7l.whl", "has_sig": false, "md5_digest": "e20096d7324b9fb8a988ce11c96c6139", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 456438, "upload_time": "2020-09-23T16:02:15", "upload_time_iso_8601": "2020-09-23T16:02:15.903711Z", "url": "https://files.pythonhosted.org/packages/54/07/46817beb63fb7b5e6e8b460de5b24cc0525a1fa56b5c9cf47594a1e8180d/miniaudio-1.35-cp37-cp37m-linux_armv7l.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "17cb8d009ebf9a01fefab63fc6b426c2", "sha256": "f549031b9a5871f6903d025dee7f566e7ef8e80405172fbd9f30966ef390af0e" }, "downloads": -1, "filename": "miniaudio-1.35-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "17cb8d009ebf9a01fefab63fc6b426c2", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 237861, "upload_time": "2020-09-23T16:03:34", "upload_time_iso_8601": "2020-09-23T16:03:34.823441Z", "url": "https://files.pythonhosted.org/packages/b8/f9/c14207138af4e6bbd4bf4bd3bcd6280327c22306c71e50a59b0118957935/miniaudio-1.35-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d4a6cb802351b4a215e6ea04ee2e6c5e", "sha256": "7be4612c2d4702c4f71a0efa3972d8500d07ca994a63029d456c30211a4adf71" }, "downloads": -1, "filename": "miniaudio-1.35-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "d4a6cb802351b4a215e6ea04ee2e6c5e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 273823, "upload_time": "2020-09-23T16:03:33", "upload_time_iso_8601": "2020-09-23T16:03:33.089960Z", "url": "https://files.pythonhosted.org/packages/00/82/22bdab157ece31f8faa9d8f96ad46a094ccfcd4a0114344a5cc495a470db/miniaudio-1.35-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ea4c9d25b2ce0346d493429ddd212a23", "sha256": "0fe1e924990e34c5969bbde7db79147b0da7fcfcc13cdc2cf7fbe33c811276a4" }, "downloads": -1, "filename": "miniaudio-1.35-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "ea4c9d25b2ce0346d493429ddd212a23", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 237898, "upload_time": "2020-09-23T16:03:38", "upload_time_iso_8601": "2020-09-23T16:03:38.782781Z", "url": "https://files.pythonhosted.org/packages/af/02/545f41da3d0de7ac73c3df821d29432a64f586085bd9a9ab605836762efc/miniaudio-1.35-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e2aa24e0b7caae7b26c65d7d6e0c06c0", "sha256": "02268e68f7d009503d351810b4eb7b5e3a6ec4bd5eb1d2c51451787f00db1d73" }, "downloads": -1, "filename": "miniaudio-1.35-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "e2aa24e0b7caae7b26c65d7d6e0c06c0", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 273884, "upload_time": "2020-09-23T16:03:36", "upload_time_iso_8601": "2020-09-23T16:03:36.614857Z", "url": "https://files.pythonhosted.org/packages/c5/62/9c54a7c6cb9dc86c47b7e9da43784feb1198f717948bac3b8ab4005200a2/miniaudio-1.35-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "71036ea8f34152846a1d7b9c79babd06", "sha256": "7f32a89da01abbe9cdeda87553a71ed84df9091837968688e8d625e88365451f" }, "downloads": -1, "filename": "miniaudio-1.35.tar.gz", "has_sig": false, "md5_digest": "71036ea8f34152846a1d7b9c79babd06", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 498635, "upload_time": "2020-09-23T15:55:33", "upload_time_iso_8601": "2020-09-23T15:55:33.629169Z", "url": "https://files.pythonhosted.org/packages/81/c8/5eff434e2cfcc6b24d6203c7b1eecbc112a7b85b6dc89ed1ceea4f1b60ee/miniaudio-1.35.tar.gz", "yanked": false, "yanked_reason": null } ], "1.36": [ { "comment_text": "", "digests": { "md5": "7c9454629d70f408deecd7ac8b88a6b1", "sha256": "12f0ca0d5450bb90decb279eadac486ce8647b59f3a095dd138a868e1527e783" }, "downloads": -1, "filename": "miniaudio-1.36-cp37-cp37m-linux_armv7l.whl", "has_sig": false, "md5_digest": "7c9454629d70f408deecd7ac8b88a6b1", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 458055, "upload_time": "2020-10-30T11:51:41", "upload_time_iso_8601": "2020-10-30T11:51:41.339237Z", "url": "https://files.pythonhosted.org/packages/8c/a0/b3bc40f1767d863ae20388eb223383b62d9f3f81f4ebe33bd1457092721a/miniaudio-1.36-cp37-cp37m-linux_armv7l.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "94688ff854f1c928b0844af89b80209c", "sha256": "d9cce1d4e186e1c081687a68acc5444d0a6fb26d2f768da8897767ce940d5079" }, "downloads": -1, "filename": "miniaudio-1.36-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "94688ff854f1c928b0844af89b80209c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 238147, "upload_time": "2020-10-30T11:52:58", "upload_time_iso_8601": "2020-10-30T11:52:58.974777Z", "url": "https://files.pythonhosted.org/packages/ed/c9/57fd6113e9bf4d230e7d872e64b30d2b553670fe51f9996c542184cdac8c/miniaudio-1.36-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "045f9ab0f084dbd5c9e589d4f22e9220", "sha256": "f5a28ee145cea5eeb3c0c74f80e0b9ebf8d2ff8f6f047c9e39be8d3c35be6397" }, "downloads": -1, "filename": "miniaudio-1.36-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "045f9ab0f084dbd5c9e589d4f22e9220", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 273766, "upload_time": "2020-10-30T11:52:57", "upload_time_iso_8601": "2020-10-30T11:52:57.106779Z", "url": "https://files.pythonhosted.org/packages/44/f3/4f0103378aed5369a83fb4d592c1482b317493411c40372d57e1abb495a5/miniaudio-1.36-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "76e0e457b6c29d58c2a1a0c2905ee73c", "sha256": "1a2b8e11d79dee3f1cb03252ed63e3ba727089cb949745b1be3bc9f002dc2114" }, "downloads": -1, "filename": "miniaudio-1.36-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "76e0e457b6c29d58c2a1a0c2905ee73c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 238185, "upload_time": "2020-10-30T11:53:03", "upload_time_iso_8601": "2020-10-30T11:53:03.422784Z", "url": "https://files.pythonhosted.org/packages/f0/02/170a17b9bc605239c5496ef350774085d5d78927a8669b919cef8675715e/miniaudio-1.36-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "57c72c46ecf0d2243bcfee68422d3862", "sha256": "83707b9577495ded92e1ecadc0d7ee8a0a57145051a1ad8bbe5fb08fe5dcb9ca" }, "downloads": -1, "filename": "miniaudio-1.36-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "57c72c46ecf0d2243bcfee68422d3862", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 273774, "upload_time": "2020-10-30T11:53:01", "upload_time_iso_8601": "2020-10-30T11:53:01.263005Z", "url": "https://files.pythonhosted.org/packages/05/1c/3437f8d27de524a0fd5057098cf82827263309c09c46f2b2f422668b8f19/miniaudio-1.36-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "93b81a78eed566d0dd45563ddcd94801", "sha256": "b708c121861b0ae9211677c9926a3240de7b8433c46c197e8eab04c53a2b336f" }, "downloads": -1, "filename": "miniaudio-1.36.tar.gz", "has_sig": false, "md5_digest": "93b81a78eed566d0dd45563ddcd94801", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 500673, "upload_time": "2020-10-30T11:52:17", "upload_time_iso_8601": "2020-10-30T11:52:17.258857Z", "url": "https://files.pythonhosted.org/packages/5f/14/46e6f0ca4c1b5323c8a6d6b7408368cbbec20b4fb5c3dcb0b8d488af0996/miniaudio-1.36.tar.gz", "yanked": false, "yanked_reason": null } ], "1.37": [ { "comment_text": "", "digests": { "md5": "e42bcd827184f2de6a464951b52b8982", "sha256": "bc7d42756add6551125a78af89f62addee67f2540eefa4937e1c023a68244c82" }, "downloads": -1, "filename": "miniaudio-1.37-cp37-cp37m-linux_armv7l.whl", "has_sig": false, "md5_digest": "e42bcd827184f2de6a464951b52b8982", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 458722, "upload_time": "2020-11-01T03:39:51", "upload_time_iso_8601": "2020-11-01T03:39:51.450037Z", "url": "https://files.pythonhosted.org/packages/65/06/5515880a993db3f74ed1539096fba9524c2c9243b5762c107ec90265603b/miniaudio-1.37-cp37-cp37m-linux_armv7l.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5efdcc7c4877e274070edf2c8081cc3f", "sha256": "b0e3876a8c4e8c1aeda6995128191abc96fe326ba087dee96dfa4abef7e1c510" }, "downloads": -1, "filename": "miniaudio-1.37-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "5efdcc7c4877e274070edf2c8081cc3f", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 238417, "upload_time": "2020-11-01T03:36:33", "upload_time_iso_8601": "2020-11-01T03:36:33.541234Z", "url": "https://files.pythonhosted.org/packages/20/54/1d3ecd86a3dea23043cc5fc5a1a19be419bc97bc9b3622412ad48a211548/miniaudio-1.37-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "58ba92fe480f8d4db7c137c26bbeb972", "sha256": "f050bbc8609aaa8c2593cf3e19d8babaf9755394560ddbb02d76d8dc32ca01a3" }, "downloads": -1, "filename": "miniaudio-1.37-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "58ba92fe480f8d4db7c137c26bbeb972", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 274140, "upload_time": "2020-11-01T03:36:31", "upload_time_iso_8601": "2020-11-01T03:36:31.677350Z", "url": "https://files.pythonhosted.org/packages/21/aa/adeed4a05f0cc46d53b1ef4566c1556963864f1bc589293d8d11e054cd47/miniaudio-1.37-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "18ff1113fb44a479c48972890270b9fb", "sha256": "063d921103a417a75863cae45b56d69921e6ba47687e016f293867831b9e2f4c" }, "downloads": -1, "filename": "miniaudio-1.37-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "18ff1113fb44a479c48972890270b9fb", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 238447, "upload_time": "2020-11-01T03:36:37", "upload_time_iso_8601": "2020-11-01T03:36:37.065881Z", "url": "https://files.pythonhosted.org/packages/81/55/363c0652797ebdd771b8772503d8477c80693f1b77f897c2b626ebfae188/miniaudio-1.37-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "28526a3c42307e89cbfb474684f8e5dd", "sha256": "90d04793482ec711efe97d12715a445f43cb90cff02a9ce88f1650098bae6029" }, "downloads": -1, "filename": "miniaudio-1.37-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "28526a3c42307e89cbfb474684f8e5dd", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 274160, "upload_time": "2020-11-01T03:36:35", "upload_time_iso_8601": "2020-11-01T03:36:35.502498Z", "url": "https://files.pythonhosted.org/packages/73/f0/65f7b8b55d6e264ae9ea8bd5ef472556889f2a2194a7c35d6138309b6ffc/miniaudio-1.37-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fd7b7c70715e6c8894528b70cf46abd2", "sha256": "7f6b65262dbdf2a5dbeff7745bfc36feaf81916b2acfd40c7d0a4320bfcb0b4f" }, "downloads": -1, "filename": "miniaudio-1.37.tar.gz", "has_sig": false, "md5_digest": "fd7b7c70715e6c8894528b70cf46abd2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 501278, "upload_time": "2020-11-01T03:34:37", "upload_time_iso_8601": "2020-11-01T03:34:37.807070Z", "url": "https://files.pythonhosted.org/packages/92/e0/b3709de742af2727aa3a7d17b68449f4be508908981f2bb3334ad346048b/miniaudio-1.37.tar.gz", "yanked": false, "yanked_reason": null } ], "1.38": [ { "comment_text": "", "digests": { "md5": "e3574e9d2bd7c2db16a5718fa2a35abb", "sha256": "d5fc8b808bb8b14095833b4bd886de072d68f8b98fc728592fd3f7bb687fbc67" }, "downloads": -1, "filename": "miniaudio-1.38-cp37-cp37m-linux_armv7l.whl", "has_sig": false, "md5_digest": "e3574e9d2bd7c2db16a5718fa2a35abb", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 459760, "upload_time": "2020-11-16T20:59:53", "upload_time_iso_8601": "2020-11-16T20:59:53.036910Z", "url": "https://files.pythonhosted.org/packages/eb/45/4c36fd5cf5392826243cc3a041445e26b86a7d570da035a61345c324898f/miniaudio-1.38-cp37-cp37m-linux_armv7l.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5c73f2836f022dfa86151860131b675a", "sha256": "5e8ab4bb5d94b7c0c9acd56566e830ec6c91d676aee9cd659172eaae5d064647" }, "downloads": -1, "filename": "miniaudio-1.38-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "5c73f2836f022dfa86151860131b675a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 240000, "upload_time": "2020-11-16T20:59:08", "upload_time_iso_8601": "2020-11-16T20:59:08.938109Z", "url": "https://files.pythonhosted.org/packages/72/f8/b2146829d32a937e72e397ecf8524d6457e64b1cfdae77a2b2dea84644dd/miniaudio-1.38-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f64bad35501e340f1add939583844329", "sha256": "5097f69de06400f81c427f172980933f7b5ebd9cac68510e30b2988952e12d23" }, "downloads": -1, "filename": "miniaudio-1.38-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "f64bad35501e340f1add939583844329", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 275866, "upload_time": "2020-11-16T20:59:07", "upload_time_iso_8601": "2020-11-16T20:59:07.013045Z", "url": "https://files.pythonhosted.org/packages/7e/b4/b7559df0640e84a3433d4b3cc39e772af0278447df2ca0b2f40029d2c660/miniaudio-1.38-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "15c733f40dea4e20fc6bb6bfcd37456c", "sha256": "3dc41c4c0200d3852b46e18ff282d195163d5325e778132172a89e07abee4a83" }, "downloads": -1, "filename": "miniaudio-1.38-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "15c733f40dea4e20fc6bb6bfcd37456c", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 240028, "upload_time": "2020-11-16T20:59:12", "upload_time_iso_8601": "2020-11-16T20:59:12.720699Z", "url": "https://files.pythonhosted.org/packages/4d/93/bcb0a0c6f1db40566e7c61f829d8de762b6bce396ca83a2ab9e766b9a5d8/miniaudio-1.38-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "daf6a27c3bdd03b86a6c60ce063ec1ee", "sha256": "1b3d95e7c3453bcff210167aebac86b888b785788f59f0e9a8da764b02aa72f9" }, "downloads": -1, "filename": "miniaudio-1.38-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "daf6a27c3bdd03b86a6c60ce063ec1ee", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 275878, "upload_time": "2020-11-16T20:59:10", "upload_time_iso_8601": "2020-11-16T20:59:10.705001Z", "url": "https://files.pythonhosted.org/packages/13/33/4ef0fc735eaaa5e9f80e5dc6db97ee10d47016ccdfaef838d38bbcf488c7/miniaudio-1.38-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cdbc678087c4b4ea03790e10a09de751", "sha256": "d71f99e3585276cf2035aeaa03d65f99386dc541f654af13bff4001b1a8de756" }, "downloads": -1, "filename": "miniaudio-1.38.tar.gz", "has_sig": false, "md5_digest": "cdbc678087c4b4ea03790e10a09de751", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 516005, "upload_time": "2020-11-16T20:58:54", "upload_time_iso_8601": "2020-11-16T20:58:54.841080Z", "url": "https://files.pythonhosted.org/packages/11/98/214fb5ffccf164b98f55b3e2680de099a24fb542fdfadb653c53d0ab479c/miniaudio-1.38.tar.gz", "yanked": false, "yanked_reason": null } ], "1.39": [ { "comment_text": "", "digests": { "md5": "05bb39ff605469dbc4089f0c7c6b5fa9", "sha256": "637346541f80e44b51a4cb7f4bfb952a1effba1d5a1b3dbcbbe9fc398121d603" }, "downloads": -1, "filename": "miniaudio-1.39-cp37-cp37m-linux_armv7l.whl", "has_sig": false, "md5_digest": "05bb39ff605469dbc4089f0c7c6b5fa9", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 461028, "upload_time": "2020-11-29T12:31:48", "upload_time_iso_8601": "2020-11-29T12:31:48.818552Z", "url": "https://files.pythonhosted.org/packages/a6/64/848c5bba2e9c228337859cb1f90b6505a0a933acb0c06e108fc0dbd7a42f/miniaudio-1.39-cp37-cp37m-linux_armv7l.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7ace4eabcf999f02e0bada46a4d7623b", "sha256": "ac9f36d49e49cec683198f4b4687e01f289b641842c4ff37717db2313490018f" }, "downloads": -1, "filename": "miniaudio-1.39-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "7ace4eabcf999f02e0bada46a4d7623b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 241208, "upload_time": "2020-11-29T12:30:31", "upload_time_iso_8601": "2020-11-29T12:30:31.449553Z", "url": "https://files.pythonhosted.org/packages/f4/3c/8f1235f62e32cb62b97c8f47fe1885be814635f28660cbffd74fa941dc5f/miniaudio-1.39-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7cf99d0f60c689cec8d2335200f9770a", "sha256": "666136ec4b62a177e67d3c237b187522923d3a1feb036f580833bb7876c0e1c9" }, "downloads": -1, "filename": "miniaudio-1.39-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "7cf99d0f60c689cec8d2335200f9770a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 277098, "upload_time": "2020-11-29T12:30:29", "upload_time_iso_8601": "2020-11-29T12:30:29.678754Z", "url": "https://files.pythonhosted.org/packages/d6/75/7f35cbd837d782144e49d01b2a28639b71312a54750cfc3dba9fd43cebe8/miniaudio-1.39-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d2f11010f63de70cc6834d79d774c3bf", "sha256": "76c2b8790d7476adcd4d21f209e0c85f922a729b65b2f2af6d193cd719e6b066" }, "downloads": -1, "filename": "miniaudio-1.39-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "d2f11010f63de70cc6834d79d774c3bf", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 241240, "upload_time": "2020-11-29T12:30:34", "upload_time_iso_8601": "2020-11-29T12:30:34.561178Z", "url": "https://files.pythonhosted.org/packages/a9/f0/ed7cf55fb40da7731b9782e405d3dddd4c69c01a2fb3028e7f0e7c8838e2/miniaudio-1.39-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "50cd0bd818655d3aa9067c29cbed9a96", "sha256": "6b1d9dd6b07b3b8aa29a943228db7f3c03d21c8f027981b82c7dbdc1822e9296" }, "downloads": -1, "filename": "miniaudio-1.39-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "50cd0bd818655d3aa9067c29cbed9a96", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 277113, "upload_time": "2020-11-29T12:30:32", "upload_time_iso_8601": "2020-11-29T12:30:32.910172Z", "url": "https://files.pythonhosted.org/packages/4a/85/94438d926152b01cd4eb5d44fb28df649bcdfaf6af6f958b88ff92971067/miniaudio-1.39-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3242e73239f5e3991e6675d45b33d486", "sha256": "dd1cfd5625636c9a91d4e2ade3c44dc4ab8d9a5f2523196e116c5743c34c6ed6" }, "downloads": -1, "filename": "miniaudio-1.39.tar.gz", "has_sig": false, "md5_digest": "3242e73239f5e3991e6675d45b33d486", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 517863, "upload_time": "2020-11-29T12:30:16", "upload_time_iso_8601": "2020-11-29T12:30:16.953165Z", "url": "https://files.pythonhosted.org/packages/ea/b4/aee81186c07e59bef878109e906e57926d895111335d231bec2cfe6f8b33/miniaudio-1.39.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4": [ { "comment_text": "", "digests": { "md5": "71dae159703bb03e516d07548c82f85e", "sha256": "5654df20137f9f35b3714b96b04dd6a9e08593d8bb62ec21327350706ef34c66" }, "downloads": -1, "filename": "miniaudio-1.4-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "71dae159703bb03e516d07548c82f85e", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 199658, "upload_time": "2019-07-03T11:51:39", "upload_time_iso_8601": "2019-07-03T11:51:39.070022Z", "url": "https://files.pythonhosted.org/packages/b0/ae/cfe5498aa1ee9de6e9c544a4801c517225cb737d45c3c03fdf55960ae260/miniaudio-1.4-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1f1b8616964b77c8baa927b2a83f3180", "sha256": "7656bce6f95234ed713029cf88fd987c644878e24dbe42a5965cf5188d9f2a33" }, "downloads": -1, "filename": "miniaudio-1.4-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "1f1b8616964b77c8baa927b2a83f3180", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 231876, "upload_time": "2019-07-03T11:51:41", "upload_time_iso_8601": "2019-07-03T11:51:41.409587Z", "url": "https://files.pythonhosted.org/packages/ae/42/0d36cf22f2bcaa75f3f34cc6891fcbea5f9fbae1ea5c71532201f8619cd3/miniaudio-1.4-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c858abc9856f04fd1b56ce85ed5de39d", "sha256": "6f581f20073bce77d8512d47eec3bbcda931c58351d76faa680cae2f61abf640" }, "downloads": -1, "filename": "miniaudio-1.4.tar.gz", "has_sig": false, "md5_digest": "c858abc9856f04fd1b56ce85ed5de39d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 427373, "upload_time": "2019-07-03T11:50:05", "upload_time_iso_8601": "2019-07-03T11:50:05.126892Z", "url": "https://files.pythonhosted.org/packages/b4/76/99c6d97bc447227057d31ed656b22e7a987760d96f2fc5a3170ade0049f2/miniaudio-1.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.40": [ { "comment_text": "", "digests": { "md5": "af6672249498c22ef6ddcdb25c3cee7c", "sha256": "99291369ecf41d998238358e79e74b2cb579f4d25a2e606c0e0646dba36aa56e" }, "downloads": -1, "filename": "miniaudio-1.40-cp37-cp37m-linux_armv7l.whl", "has_sig": false, "md5_digest": "af6672249498c22ef6ddcdb25c3cee7c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 461166, "upload_time": "2020-11-29T17:16:21", "upload_time_iso_8601": "2020-11-29T17:16:21.398139Z", "url": "https://files.pythonhosted.org/packages/d3/e8/86bec80d08ac553a084343e7bcfadfe31ee38257629a857232315e73467f/miniaudio-1.40-cp37-cp37m-linux_armv7l.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9f9c203f2e1afcaa1c13c7f81c8e787a", "sha256": "0f692dca6bb623f68d26201ad83e1570f1ad53101de4e527feb020417540e3b3" }, "downloads": -1, "filename": "miniaudio-1.40-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "9f9c203f2e1afcaa1c13c7f81c8e787a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 241352, "upload_time": "2020-11-29T17:14:38", "upload_time_iso_8601": "2020-11-29T17:14:38.854427Z", "url": "https://files.pythonhosted.org/packages/5e/5d/f81756f15390e53c70ada1bd9a8ebbba5cc44a55a61ee05675a2865209a4/miniaudio-1.40-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e37bdae46f4fa6c39daf8006d9538142", "sha256": "e93e1277844c2cfb577bdb9f123e727990b72fb2e707152fa54fc63b16f3079d" }, "downloads": -1, "filename": "miniaudio-1.40-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "e37bdae46f4fa6c39daf8006d9538142", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 277240, "upload_time": "2020-11-29T17:14:37", "upload_time_iso_8601": "2020-11-29T17:14:37.417009Z", "url": "https://files.pythonhosted.org/packages/60/c8/abfe97c1d6d678989c3096a50dfef566a09c2ec8d33f257c4e35c39fb3ec/miniaudio-1.40-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "18a6b368edbc8067e2f343382f37a142", "sha256": "f3243b08fbd469271633c6af06071365987a4dd91fff15577d1269c38dce8617" }, "downloads": -1, "filename": "miniaudio-1.40-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "18a6b368edbc8067e2f343382f37a142", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 241384, "upload_time": "2020-11-29T17:14:42", "upload_time_iso_8601": "2020-11-29T17:14:42.345680Z", "url": "https://files.pythonhosted.org/packages/9a/bb/a856a7148a029cbbdd604eb01a6ec71c9b267ab253bfc8d3bbe772414561/miniaudio-1.40-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3f6a220aa8b937ae94a40cc201bd70c3", "sha256": "f6a8d18ec0844f83c2f4380bcba1260ca43669f313e786686f92e6d3060421ab" }, "downloads": -1, "filename": "miniaudio-1.40-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "3f6a220aa8b937ae94a40cc201bd70c3", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 277258, "upload_time": "2020-11-29T17:14:40", "upload_time_iso_8601": "2020-11-29T17:14:40.819664Z", "url": "https://files.pythonhosted.org/packages/81/c0/5a492dc7ae075cd44f6bf54f463cf4b1287d6ff6f6d0aacdd28c487cb2d9/miniaudio-1.40-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ed3c8865c44e110176de69e51de63e3e", "sha256": "6c3c467396f834b9b6e0d9bffd0df4af171bd6a8722402048f3275917e0ab08e" }, "downloads": -1, "filename": "miniaudio-1.40.tar.gz", "has_sig": false, "md5_digest": "ed3c8865c44e110176de69e51de63e3e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 518007, "upload_time": "2020-11-29T17:14:25", "upload_time_iso_8601": "2020-11-29T17:14:25.877376Z", "url": "https://files.pythonhosted.org/packages/2d/7b/0eaf8a1091b6769c3440378e82e470ad33fe30b4a228c746ad333f8d3553/miniaudio-1.40.tar.gz", "yanked": false, "yanked_reason": null } ], "1.41": [ { "comment_text": "", "digests": { "md5": "6e5d8fa46697c2adeec708e40eaf4443", "sha256": "6898e009001cb350edb8cbaff29af75e50b6d87da9b5a87352c0d61aae758b49" }, "downloads": -1, "filename": "miniaudio-1.41-cp37-cp37m-linux_armv7l.whl", "has_sig": false, "md5_digest": "6e5d8fa46697c2adeec708e40eaf4443", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 461577, "upload_time": "2020-11-29T18:10:09", "upload_time_iso_8601": "2020-11-29T18:10:09.610035Z", "url": "https://files.pythonhosted.org/packages/2b/64/19f0a0b6b0190e2e67891d65a8cd4741c9eec6442adbac3c30fa7ab30793/miniaudio-1.41-cp37-cp37m-linux_armv7l.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "58957e340198f5279791ac53e823ccbc", "sha256": "f50ef1e0d77b95235aa830b4a15dfe13acdcbb22bf9e954cb7c1fd232c987cf1" }, "downloads": -1, "filename": "miniaudio-1.41-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "58957e340198f5279791ac53e823ccbc", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 241763, "upload_time": "2020-11-29T18:08:41", "upload_time_iso_8601": "2020-11-29T18:08:41.796742Z", "url": "https://files.pythonhosted.org/packages/3c/6f/2bc79cb519767c220f3558cea6138b8402e92c79dcc0a6e6acac5da29713/miniaudio-1.41-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b13ba93e7badd3862a300505a15fe697", "sha256": "f5863476037068bb55e9990b7c1895a3e4c6f6ff20ae0b50054384f9740c7d3f" }, "downloads": -1, "filename": "miniaudio-1.41-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "b13ba93e7badd3862a300505a15fe697", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 277658, "upload_time": "2020-11-29T18:08:40", "upload_time_iso_8601": "2020-11-29T18:08:40.012157Z", "url": "https://files.pythonhosted.org/packages/6b/e1/ab89b374e72b46b804ddd5fd2a830a08aff2b30145c5659381710fddb174/miniaudio-1.41-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a20c35d91c9727e51a43fed5ca10996d", "sha256": "6ba8a648a899e2b9351bff39f93993b5b0fc2c01007591ef564a6b6725df014e" }, "downloads": -1, "filename": "miniaudio-1.41-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "a20c35d91c9727e51a43fed5ca10996d", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 241794, "upload_time": "2020-11-29T18:08:45", "upload_time_iso_8601": "2020-11-29T18:08:45.420947Z", "url": "https://files.pythonhosted.org/packages/9f/c1/fe79804d2392f0e76d92df6caa752fca4b8e64cd9ee285ae2b43dbaba521/miniaudio-1.41-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "18e61ae158f9ae4fe084ed6c3ed649f3", "sha256": "16dbfc2e23d75b56d344ccc5c2ea85b36b16850a122e9e66748a5588f2cf1622" }, "downloads": -1, "filename": "miniaudio-1.41-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "18e61ae158f9ae4fe084ed6c3ed649f3", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 277672, "upload_time": "2020-11-29T18:08:43", "upload_time_iso_8601": "2020-11-29T18:08:43.662428Z", "url": "https://files.pythonhosted.org/packages/43/8c/e5656b171d977f205b32202a0efba456cd39280ede2032317730e847734a/miniaudio-1.41-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "78d10c404adb2ee494afad900f823d91", "sha256": "e8354582c435f6e6d0d150b252005fb5377d5b86d80851ede864a112ffdde361" }, "downloads": -1, "filename": "miniaudio-1.41.tar.gz", "has_sig": false, "md5_digest": "78d10c404adb2ee494afad900f823d91", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 518774, "upload_time": "2020-11-29T17:43:25", "upload_time_iso_8601": "2020-11-29T17:43:25.371778Z", "url": "https://files.pythonhosted.org/packages/fa/5e/3a58cbe3425e81099e1be42ba341c2b57398552363c3b928b26120fed610/miniaudio-1.41.tar.gz", "yanked": false, "yanked_reason": null } ], "1.42": [ { "comment_text": "", "digests": { "md5": "b2524274aab116ebf3132adf7a413eaf", "sha256": "cc8ebb194614cd7a47dd63438cc5966a2eceda6214d3c16154418531da2ab73f" }, "downloads": -1, "filename": "miniaudio-1.42-cp37-cp37m-linux_armv7l.whl", "has_sig": false, "md5_digest": "b2524274aab116ebf3132adf7a413eaf", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 463129, "upload_time": "2021-01-23T03:31:13", "upload_time_iso_8601": "2021-01-23T03:31:13.006661Z", "url": "https://files.pythonhosted.org/packages/df/b0/5cc7b48b738e425b1e451e215d056c8c0d93a938686da129a4e06c105b39/miniaudio-1.42-cp37-cp37m-linux_armv7l.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5f2171f419d2f9f9e2201531c1a6f8c8", "sha256": "ce1fdf2ef2c3f401f1598b953255e1c24a17483f7edc705e0cb758de1a940810" }, "downloads": -1, "filename": "miniaudio-1.42-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "5f2171f419d2f9f9e2201531c1a6f8c8", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 278232, "upload_time": "2021-01-23T03:31:29", "upload_time_iso_8601": "2021-01-23T03:31:29.485277Z", "url": "https://files.pythonhosted.org/packages/aa/42/9577060e9a87c97bba1e6ededcb21b89d10d9d2a91dcea6a6e4b2e160703/miniaudio-1.42-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "97a59e8d744eec7d73a33987c891dd77", "sha256": "6de7b5f5e9fa26ff3b7dce126ea394560e363c948f0dd1e0458ed5b37eeecddf" }, "downloads": -1, "filename": "miniaudio-1.42-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "97a59e8d744eec7d73a33987c891dd77", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 278253, "upload_time": "2021-01-23T03:31:31", "upload_time_iso_8601": "2021-01-23T03:31:31.509472Z", "url": "https://files.pythonhosted.org/packages/3e/99/57b88c1f38308fa0329df56520bac3b4f32d1aceb4c97f4e9a5368bf0221/miniaudio-1.42-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "646d1ac832052c60cec7c7637fe9cf43", "sha256": "bdb31c9070a159244424d02b90e495bff537efd990dccccbfcbd5553b8f35bcd" }, "downloads": -1, "filename": "miniaudio-1.42-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "646d1ac832052c60cec7c7637fe9cf43", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 283833, "upload_time": "2021-01-23T03:31:33", "upload_time_iso_8601": "2021-01-23T03:31:33.458785Z", "url": "https://files.pythonhosted.org/packages/ca/14/454dc8151da0980669fa2a2de9b1fdb6f9978fc98c6a81e92c7591fbf53e/miniaudio-1.42-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "35d5d7123adf42f9220c58cd1b107b00", "sha256": "564ca484908ec622ce98451ed1e3191108000f0f343f621c86591db62a8689a1" }, "downloads": -1, "filename": "miniaudio-1.42.tar.gz", "has_sig": false, "md5_digest": "35d5d7123adf42f9220c58cd1b107b00", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 524474, "upload_time": "2021-01-23T03:32:36", "upload_time_iso_8601": "2021-01-23T03:32:36.476824Z", "url": "https://files.pythonhosted.org/packages/f8/78/66d6ced36ca2e243ae53fad118d69907a2bbb39018c328ee077b2af5be5e/miniaudio-1.42.tar.gz", "yanked": false, "yanked_reason": null } ], "1.43": [ { "comment_text": "", "digests": { "md5": "54db5c62ed6987b59f5f30e06841eea6", "sha256": "cdd62f0932bad1623670dc9813091892829cbb0617e9fca3d2a72087ba1809a8" }, "downloads": -1, "filename": "miniaudio-1.43-cp37-cp37m-linux_armv7l.whl", "has_sig": false, "md5_digest": "54db5c62ed6987b59f5f30e06841eea6", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 458998, "upload_time": "2021-03-25T20:09:37", "upload_time_iso_8601": "2021-03-25T20:09:37.626920Z", "url": "https://files.pythonhosted.org/packages/c7/4d/fd2167979cffb255a6d564937f99da2e760ef8037c3322367ca20bef69ec/miniaudio-1.43-cp37-cp37m-linux_armv7l.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "de3e50da594d431d53e86f61e489d30a", "sha256": "6097358aa75f2710329aad96fd99d7669fe9efdff4fd9dbb431cfca666301ba6" }, "downloads": -1, "filename": "miniaudio-1.43-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "de3e50da594d431d53e86f61e489d30a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 279646, "upload_time": "2021-03-25T20:05:24", "upload_time_iso_8601": "2021-03-25T20:05:24.666169Z", "url": "https://files.pythonhosted.org/packages/6b/c2/452f4c39d958935b339aad579cf0b9771d7573df61d86375a40a521cd5dd/miniaudio-1.43-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "06a4bdb61bf99e9907be75e54d079117", "sha256": "d6c3690cf1d66e2e698721dca8b6ff38fbff3f8ddeef11bed2d5507a9b0def80" }, "downloads": -1, "filename": "miniaudio-1.43-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "06a4bdb61bf99e9907be75e54d079117", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 279658, "upload_time": "2021-03-25T20:05:26", "upload_time_iso_8601": "2021-03-25T20:05:26.809242Z", "url": "https://files.pythonhosted.org/packages/0b/57/eea78862302882c52dc13181232271b65232e5d3d25311f1b36e4b972eca/miniaudio-1.43-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a55663a80b667cb090b8514188182166", "sha256": "24af120101d40ed30e09262d3738e7b86eb53b9b46724bfd5559b85f725df7e1" }, "downloads": -1, "filename": "miniaudio-1.43-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "a55663a80b667cb090b8514188182166", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 285035, "upload_time": "2021-03-25T20:05:28", "upload_time_iso_8601": "2021-03-25T20:05:28.938191Z", "url": "https://files.pythonhosted.org/packages/af/c5/95b1fc4682d4248fe84091f13760ea899aab132618b8509078c5a3510dd6/miniaudio-1.43-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "217588140019b48498f54feb260e56a0", "sha256": "dac6494a190bcc365f581848324d3954d102778c4ad713688af36e6aaa5200c9" }, "downloads": -1, "filename": "miniaudio-1.43.tar.gz", "has_sig": false, "md5_digest": "217588140019b48498f54feb260e56a0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 524639, "upload_time": "2021-03-25T20:05:09", "upload_time_iso_8601": "2021-03-25T20:05:09.606801Z", "url": "https://files.pythonhosted.org/packages/5e/77/d51441ada1f81d7c0ec40321b73eec1fcdf48cd446656318d57803161a46/miniaudio-1.43.tar.gz", "yanked": false, "yanked_reason": null } ], "1.44": [ { "comment_text": "", "digests": { "md5": "0992776a44c3ee3dd8888a3eed956723", "sha256": "b84b5892cd4c36085acfc535b59e08c0d141b8ac6d97b26cbea47e3cdb037383" }, "downloads": -1, "filename": "miniaudio-1.44-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "0992776a44c3ee3dd8888a3eed956723", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 280384, "upload_time": "2021-05-25T16:16:43", "upload_time_iso_8601": "2021-05-25T16:16:43.069539Z", "url": "https://files.pythonhosted.org/packages/d7/ee/4d84b241aea4f2da87b07c7f85c4443de68730c703406f266b8cd85370cc/miniaudio-1.44-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d8beac3c5d8b08f8bc514aecfd9db65f", "sha256": "18d1ea9e26aa154bfd79a1f579c513042b73d7f081d476b1b339c114142fe89c" }, "downloads": -1, "filename": "miniaudio-1.44-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "d8beac3c5d8b08f8bc514aecfd9db65f", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 280411, "upload_time": "2021-05-25T16:16:44", "upload_time_iso_8601": "2021-05-25T16:16:44.954279Z", "url": "https://files.pythonhosted.org/packages/9a/63/cbc9bbe408a717b36936623e8836e9857dbebb53e511b671d2950d4e23c8/miniaudio-1.44-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "15fffb0b37e9e2588d422c5010c573c0", "sha256": "9c9926eba1fc6d25965dc35ef9351fd7d14e27df27a25d0b2c1b4492de89bb03" }, "downloads": -1, "filename": "miniaudio-1.44-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "15fffb0b37e9e2588d422c5010c573c0", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 285760, "upload_time": "2021-05-25T16:16:47", "upload_time_iso_8601": "2021-05-25T16:16:47.109591Z", "url": "https://files.pythonhosted.org/packages/33/e0/11a8e030f27d6fe6e7fe650260d51cff15326ca087d1a812f349d539543f/miniaudio-1.44-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "899e66e3158fe063d2108e9cf67d1c8b", "sha256": "4edd08a9b5a9ceb570a06cda9844f453cf3f0145bb4a19828df8f04ecfdf9993" }, "downloads": -1, "filename": "miniaudio-1.44.tar.gz", "has_sig": false, "md5_digest": "899e66e3158fe063d2108e9cf67d1c8b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 524145, "upload_time": "2021-05-25T16:16:26", "upload_time_iso_8601": "2021-05-25T16:16:26.174499Z", "url": "https://files.pythonhosted.org/packages/87/e5/7d8fcaba04f8d7d851f0300a4269da03c084beb7e69bde87520b35069068/miniaudio-1.44.tar.gz", "yanked": false, "yanked_reason": null } ], "1.45": [ { "comment_text": "", "digests": { "md5": "0cc030ad079e99690bd9785c380caece", "sha256": "73699ba2cf5e9142a1ec732a657c30a575cdcf3973bd86c989806fadb3ecc567" }, "downloads": -1, "filename": "miniaudio-1.45-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "0cc030ad079e99690bd9785c380caece", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 306899, "upload_time": "2021-10-15T17:12:33", "upload_time_iso_8601": "2021-10-15T17:12:33.611628Z", "url": "https://files.pythonhosted.org/packages/ef/bf/4ef122786737d3b25ea4b34dddcd0d2d4e00770400c0589c6a4b05c6c720/miniaudio-1.45-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "33081a18cff33872fd296f57f856a869", "sha256": "db1ba6ea31a3ed6d89e36ccf484235db2bdc4f97164c26faac72047babe69cf8" }, "downloads": -1, "filename": "miniaudio-1.45-cp37-cp37m-linux_armv7l.whl", "has_sig": false, "md5_digest": "33081a18cff33872fd296f57f856a869", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 488136, "upload_time": "2021-10-15T17:14:30", "upload_time_iso_8601": "2021-10-15T17:14:30.931596Z", "url": "https://files.pythonhosted.org/packages/c2/43/969de48225f8f3b25e8ab11f7e95207561337b3627797d2b028b75d72bf5/miniaudio-1.45-cp37-cp37m-linux_armv7l.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2421dbbca2548e17a88f42edd3e884ed", "sha256": "fa8a71d89a23c1b0d7601f47983c675d2fdbacec352e420b0235cd21af14f1df" }, "downloads": -1, "filename": "miniaudio-1.45-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "2421dbbca2548e17a88f42edd3e884ed", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 301454, "upload_time": "2021-10-15T17:12:35", "upload_time_iso_8601": "2021-10-15T17:12:35.428898Z", "url": "https://files.pythonhosted.org/packages/e9/54/6d036dca5a431a444da21cdd40c2f534a8ebe17f923c0602fe696697d2bc/miniaudio-1.45-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e024ba6f9bce032f9e563c5cacfca5b1", "sha256": "4b73bdf09a04c1eeae84667e4546ced5e7fd4919cfe1eea9d4ada1fc8e1c497e" }, "downloads": -1, "filename": "miniaudio-1.45-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "e024ba6f9bce032f9e563c5cacfca5b1", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 301512, "upload_time": "2021-10-15T17:12:37", "upload_time_iso_8601": "2021-10-15T17:12:37.577338Z", "url": "https://files.pythonhosted.org/packages/01/cc/ebb1061198e08927a24aa1305dc77af37e23290247a706b620331de779d7/miniaudio-1.45-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "62e36a08c07fb5857735e7d53f51d952", "sha256": "4abaefdd2f362f353034f90350434015894f972e41bd7b324f3fab19b1a98f32" }, "downloads": -1, "filename": "miniaudio-1.45-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "62e36a08c07fb5857735e7d53f51d952", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 306886, "upload_time": "2021-10-15T17:12:39", "upload_time_iso_8601": "2021-10-15T17:12:39.518351Z", "url": "https://files.pythonhosted.org/packages/73/8a/e2fc24045ba78ae84979beec9a9a554aebf7c6b59580a71edfc7b31aa4c3/miniaudio-1.45-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "625bb04f571b555f69769da76dfad8a4", "sha256": "793d78d0e64a0100f25c30f548f54ac678766106366a500d5cf9e6315ea73199" }, "downloads": -1, "filename": "miniaudio-1.45.tar.gz", "has_sig": false, "md5_digest": "625bb04f571b555f69769da76dfad8a4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 545636, "upload_time": "2021-10-15T17:11:55", "upload_time_iso_8601": "2021-10-15T17:11:55.693074Z", "url": "https://files.pythonhosted.org/packages/70/7b/715f4fa15ce86e13d95762382b50a1cca6daa1c95cc47a55c1dd88d35283/miniaudio-1.45.tar.gz", "yanked": false, "yanked_reason": null } ], "1.46": [ { "comment_text": "", "digests": { "md5": "a9f7ce48df2605b364d910a55567ff38", "sha256": "d9007f9ce2e2034135f9edf70f25d1eaf4df54117369f14cc066313c10195d5d" }, "downloads": -1, "filename": "miniaudio-1.46-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "a9f7ce48df2605b364d910a55567ff38", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 618476, "upload_time": "2022-01-05T17:14:30", "upload_time_iso_8601": "2022-01-05T17:14:30.976712Z", "url": "https://files.pythonhosted.org/packages/a6/b8/b47cafa974067dea967034ed9e1c609cd171bae49e16afa8ccfce6f23ddf/miniaudio-1.46-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "78f2d2996ac0cf3211f07c01bf41b390", "sha256": "1ebfcfcc6aecc03d259986387413df3525368f727b85d2bb3fd78109d2f8badb" }, "downloads": -1, "filename": "miniaudio-1.46-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "78f2d2996ac0cf3211f07c01bf41b390", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 552124, "upload_time": "2022-01-05T17:14:32", "upload_time_iso_8601": "2022-01-05T17:14:32.886409Z", "url": "https://files.pythonhosted.org/packages/be/f1/7b81a974ee5f8a00a77d54c934726cb250489e2283c61dc437260fe2a469/miniaudio-1.46-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "06289e3fa5615ad48db124a33cfbd85f", "sha256": "6e031d750f3a1cc43b6c3d88f7879d52f1055e85ac97634592aca341d3cb9c42" }, "downloads": -1, "filename": "miniaudio-1.46-cp310-cp310-musllinux_1_1_i686.whl", "has_sig": false, "md5_digest": "06289e3fa5615ad48db124a33cfbd85f", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 521889, "upload_time": "2022-01-05T17:14:34", "upload_time_iso_8601": "2022-01-05T17:14:34.585402Z", "url": "https://files.pythonhosted.org/packages/44/c3/80e09c066d8e81454cd6c2d6596d6dd526771788f3bc3eb3ad6514599753/miniaudio-1.46-cp310-cp310-musllinux_1_1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "95affe45e92d8f190573e9467875bb24", "sha256": "5870aa1178d904fc30a327d35fe35c08c45b0d8d9336f7c0487df538673b91a1" }, "downloads": -1, "filename": "miniaudio-1.46-cp310-cp310-musllinux_1_1_x86_64.whl", "has_sig": false, "md5_digest": "95affe45e92d8f190573e9467875bb24", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 548529, "upload_time": "2022-01-05T17:14:36", "upload_time_iso_8601": "2022-01-05T17:14:36.206361Z", "url": "https://files.pythonhosted.org/packages/cb/ac/b3a3755f73496a2f6f1aa53d47174bfa1e01cb36f91249d44bfe18488018/miniaudio-1.46-cp310-cp310-musllinux_1_1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a1331055db6f5ceca1412db779c9acc0", "sha256": "8b4886bb095417c615153621ebdeda80b7f4b4e4c08abc4226df25397c59094a" }, "downloads": -1, "filename": "miniaudio-1.46-cp310-cp310-win32.whl", "has_sig": false, "md5_digest": "a1331055db6f5ceca1412db779c9acc0", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 267467, "upload_time": "2022-01-05T17:14:37", "upload_time_iso_8601": "2022-01-05T17:14:37.786741Z", "url": "https://files.pythonhosted.org/packages/f0/3a/9dc1e42675f28656143a3d297426eaf71b4128c37a9844adfd3fcbb036d1/miniaudio-1.46-cp310-cp310-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "52704a05afed021b24f68f224bedf1c6", "sha256": "5b17d5566d9875787cb1653f80fbf1644ce92df98a466a1bbd0a141659bf5e79" }, "downloads": -1, "filename": "miniaudio-1.46-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "52704a05afed021b24f68f224bedf1c6", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 315573, "upload_time": "2022-01-05T17:14:39", "upload_time_iso_8601": "2022-01-05T17:14:39.335100Z", "url": "https://files.pythonhosted.org/packages/2e/88/24c21b1a0451ec3a1349f216f07edcca9cb2c0b22d9900d2755fa8f6a3df/miniaudio-1.46-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "14ac16787f9a077ac8b1516a8852f97a", "sha256": "ffcba30e51fb2838d96da6a64e26610da3ca16595cef90fb663fc067c3ce3477" }, "downloads": -1, "filename": "miniaudio-1.46-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "14ac16787f9a077ac8b1516a8852f97a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 618234, "upload_time": "2022-01-05T17:14:40", "upload_time_iso_8601": "2022-01-05T17:14:40.687228Z", "url": "https://files.pythonhosted.org/packages/6e/cb/f9bf5a4667fbd72eb22a3678a2fe59ee561cd14e4ee421952904bf03183b/miniaudio-1.46-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "59c185aa3c2229df1791012955cc8dec", "sha256": "cedb7ae248594edb077e6fb8767fa4af7624c9d25d02f9b1fed2ad5d5698541e" }, "downloads": -1, "filename": "miniaudio-1.46-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "59c185aa3c2229df1791012955cc8dec", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 551832, "upload_time": "2022-01-05T17:14:41", "upload_time_iso_8601": "2022-01-05T17:14:41.818139Z", "url": "https://files.pythonhosted.org/packages/f8/ad/4965f88d116bd4a88997ab6bceb466804b011fc7ee2d381d8afb037d3953/miniaudio-1.46-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b5d600999dac026c564d95a231df9404", "sha256": "6a17733ff66e8394685c67455ec9f41860be60809c08ebbbf521b79fd96fd139" }, "downloads": -1, "filename": "miniaudio-1.46-cp36-cp36m-musllinux_1_1_i686.whl", "has_sig": false, "md5_digest": "b5d600999dac026c564d95a231df9404", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 521563, "upload_time": "2022-01-05T17:14:42", "upload_time_iso_8601": "2022-01-05T17:14:42.976780Z", "url": "https://files.pythonhosted.org/packages/ca/d5/6ac65f58bf0abfcb953b2ee070ea7a49d2f09e1844d58ceceb9db1442d18/miniaudio-1.46-cp36-cp36m-musllinux_1_1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9410b47b0124cdd6506b7645fd878a6d", "sha256": "528d9d99f3fabfb49221fa9a4dc787b02a927e6632434beaa12f11e77bca5afa" }, "downloads": -1, "filename": "miniaudio-1.46-cp36-cp36m-musllinux_1_1_x86_64.whl", "has_sig": false, "md5_digest": "9410b47b0124cdd6506b7645fd878a6d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 548143, "upload_time": "2022-01-05T17:14:44", "upload_time_iso_8601": "2022-01-05T17:14:44.161720Z", "url": "https://files.pythonhosted.org/packages/c8/6d/f5b019d1c5ff6fa0ea660467784d1676c539e92e9283797c4d87eea0bf6d/miniaudio-1.46-cp36-cp36m-musllinux_1_1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9303dfe15fea20373cfab9fcf0a0fdd5", "sha256": "c20378a2d160f053383e74b0655c401975c3fb166629aac040bf2ea40a0e0e50" }, "downloads": -1, "filename": "miniaudio-1.46-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "9303dfe15fea20373cfab9fcf0a0fdd5", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 267465, "upload_time": "2022-01-05T17:14:45", "upload_time_iso_8601": "2022-01-05T17:14:45.349886Z", "url": "https://files.pythonhosted.org/packages/fd/ae/75cedd077deaad94a6dcd5faf56687a78f46fce514c9983f8b5f88847d96/miniaudio-1.46-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "095e4acc4c45c007c1f244e79c4c7e95", "sha256": "1b49f0467d584c0f6bbafcdcfba7e384912bfb798ed7fb5d5c2ceaae005fac47" }, "downloads": -1, "filename": "miniaudio-1.46-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "095e4acc4c45c007c1f244e79c4c7e95", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 315512, "upload_time": "2022-01-05T17:14:46", "upload_time_iso_8601": "2022-01-05T17:14:46.543452Z", "url": "https://files.pythonhosted.org/packages/dc/70/c199703f31809e73b8bc0c688f65b1bdddc1fb7420ee772ab43009b04d04/miniaudio-1.46-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "07f63665d2ca07dfb57db015599321e5", "sha256": "1bc0c92c9b9983ea2224fcc3ea0ace71bbfb466e0ea7e734dde7f106d0286127" }, "downloads": -1, "filename": "miniaudio-1.46-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "07f63665d2ca07dfb57db015599321e5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 618234, "upload_time": "2022-01-05T17:14:47", "upload_time_iso_8601": "2022-01-05T17:14:47.722411Z", "url": "https://files.pythonhosted.org/packages/42/06/3acc52d6173bb8ec99066aab513b04fce53796e757292085bdbaa1fb29b8/miniaudio-1.46-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c99baec96275d64ee359fe28618ed30b", "sha256": "e68c0fda639fbcabca3e2c18852f27a02f6003785b63318c9e081c1308936306" }, "downloads": -1, "filename": "miniaudio-1.46-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "c99baec96275d64ee359fe28618ed30b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 551820, "upload_time": "2022-01-05T17:14:48", "upload_time_iso_8601": "2022-01-05T17:14:48.982215Z", "url": "https://files.pythonhosted.org/packages/5d/3b/318c3c3a9bc28adb4d3a1915224390d937a2e1766c5742268e7c431f1c67/miniaudio-1.46-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "18c9edada5761912614e882ffbf64299", "sha256": "24bdca08bcb617a54e76ab74d1df861269740915e4bbe15b9831f7bf4fd0243a" }, "downloads": -1, "filename": "miniaudio-1.46-cp37-cp37m-musllinux_1_1_i686.whl", "has_sig": false, "md5_digest": "18c9edada5761912614e882ffbf64299", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 521565, "upload_time": "2022-01-05T17:14:50", "upload_time_iso_8601": "2022-01-05T17:14:50.420401Z", "url": "https://files.pythonhosted.org/packages/0e/96/6c190b67d502ede42cfc54ea9bbbcfe707b1cbff7087ec968e21da9072ab/miniaudio-1.46-cp37-cp37m-musllinux_1_1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b4b67ca168ca4afe6ce4976b6122e6bd", "sha256": "79c4458bde867069119baedff60e6bcfbf20517db7d1005895216040c1329cd1" }, "downloads": -1, "filename": "miniaudio-1.46-cp37-cp37m-musllinux_1_1_x86_64.whl", "has_sig": false, "md5_digest": "b4b67ca168ca4afe6ce4976b6122e6bd", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 548136, "upload_time": "2022-01-05T17:14:51", "upload_time_iso_8601": "2022-01-05T17:14:51.512948Z", "url": "https://files.pythonhosted.org/packages/e5/81/b59469aad18d3f1ff7caf9025f4d9a4c021c2102dd81b086643c82b5792e/miniaudio-1.46-cp37-cp37m-musllinux_1_1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3d945d48be0dd1164eda85fce9ff4ed7", "sha256": "709b13c856071195a40a22d0bffc167ff8c08b5c8fc67ce1fba1bf437cf6e69f" }, "downloads": -1, "filename": "miniaudio-1.46-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "3d945d48be0dd1164eda85fce9ff4ed7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 267464, "upload_time": "2022-01-05T17:14:52", "upload_time_iso_8601": "2022-01-05T17:14:52.660134Z", "url": "https://files.pythonhosted.org/packages/9e/25/a9943fc15d9d725df4005f017eaf5005324933fcde673fcfa0ad3ebc0b8e/miniaudio-1.46-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5afa28af2bf189c2047344ff9f2af511", "sha256": "42302e8f8c2e1999a74c27278010556d0c222c8cdd61b056f7f4a4a8e94ce72f" }, "downloads": -1, "filename": "miniaudio-1.46-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "5afa28af2bf189c2047344ff9f2af511", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 315512, "upload_time": "2022-01-05T17:14:53", "upload_time_iso_8601": "2022-01-05T17:14:53.764572Z", "url": "https://files.pythonhosted.org/packages/7f/3a/62535a4fc051f2399249c40b7a4c6d405e064208aec64074f12aaef8730e/miniaudio-1.46-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3aa50bde1c927f100fc351bc30bf99c6", "sha256": "27882b882debc19c571fba623cce02be5380222d5bbcc9857b830d236c8d0529" }, "downloads": -1, "filename": "miniaudio-1.46-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "3aa50bde1c927f100fc351bc30bf99c6", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 618473, "upload_time": "2022-01-05T17:14:54", "upload_time_iso_8601": "2022-01-05T17:14:54.808933Z", "url": "https://files.pythonhosted.org/packages/7a/b9/2d60f760749e96cdb41826f567b1b8b7ed714545ddddb4a042d06d42998c/miniaudio-1.46-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eba71769b82322658a3bb92be4ea5645", "sha256": "7b6a83f8eaa183e4eabf69dd027f561533d0ea1b55d74c84ab4fa3751d91640f" }, "downloads": -1, "filename": "miniaudio-1.46-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "eba71769b82322658a3bb92be4ea5645", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 552131, "upload_time": "2022-01-05T17:14:55", "upload_time_iso_8601": "2022-01-05T17:14:55.929397Z", "url": "https://files.pythonhosted.org/packages/e8/8d/8b73c9d266893ffd4ce97d6159b0d25d1bc82b44a429b264b214b781d2ce/miniaudio-1.46-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a0755531dff150b9df8aef7bd39f1387", "sha256": "ec404587997b07d87cb9b4f0b895bd0502c49b72bd7209597f9f19fcfb8fdb61" }, "downloads": -1, "filename": "miniaudio-1.46-cp38-cp38-musllinux_1_1_i686.whl", "has_sig": false, "md5_digest": "a0755531dff150b9df8aef7bd39f1387", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 521872, "upload_time": "2022-01-05T17:14:57", "upload_time_iso_8601": "2022-01-05T17:14:57.014347Z", "url": "https://files.pythonhosted.org/packages/d9/ea/9c41cea7b98fd39d37b0be28d37fe156aeb534569cf39c56c35f9322fa01/miniaudio-1.46-cp38-cp38-musllinux_1_1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0135904425cd152575414d4563c8266a", "sha256": "115ddde6401b4e4c5f302e86487bd09efcd2ba413b582f0aee4800edb9f5bfd6" }, "downloads": -1, "filename": "miniaudio-1.46-cp38-cp38-musllinux_1_1_x86_64.whl", "has_sig": false, "md5_digest": "0135904425cd152575414d4563c8266a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 548531, "upload_time": "2022-01-05T17:14:58", "upload_time_iso_8601": "2022-01-05T17:14:58.205281Z", "url": "https://files.pythonhosted.org/packages/2c/0d/8948dbbe8ee08ac2ddd66f6c9b3135f5f8644c3877806c4af9bd4b931669/miniaudio-1.46-cp38-cp38-musllinux_1_1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ddba63600c4fac6e2258e5cc472a8ed0", "sha256": "168e84c6ef19aef76d8c70ea4657d02d132ad16c66defc372eedb835d86555f7" }, "downloads": -1, "filename": "miniaudio-1.46-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "ddba63600c4fac6e2258e5cc472a8ed0", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 267479, "upload_time": "2022-01-05T17:14:59", "upload_time_iso_8601": "2022-01-05T17:14:59.346515Z", "url": "https://files.pythonhosted.org/packages/f9/9b/2c3e3032039fe27ac87065b4cd1274b0a012695ae4b015c258c17a57075b/miniaudio-1.46-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5f5ac835d678977fc29699eea891423e", "sha256": "9c300516e7751598170b17455d8e275c6bfe65385e0273a379a0d1c52503cc39" }, "downloads": -1, "filename": "miniaudio-1.46-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "5f5ac835d678977fc29699eea891423e", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 315583, "upload_time": "2022-01-05T17:15:00", "upload_time_iso_8601": "2022-01-05T17:15:00.552938Z", "url": "https://files.pythonhosted.org/packages/01/d7/fe04d73223c8eab2c071b5492a95578360f547db14e6d9cc013daea8d70a/miniaudio-1.46-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9ceee7f6d9c50ecc7bcc28da44e18809", "sha256": "15cd766d4ef15976c5a09883fd0a54f343d80f0a6dfd8c998faa16132582311f" }, "downloads": -1, "filename": "miniaudio-1.46-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "9ceee7f6d9c50ecc7bcc28da44e18809", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 618477, "upload_time": "2022-01-05T17:15:01", "upload_time_iso_8601": "2022-01-05T17:15:01.673577Z", "url": "https://files.pythonhosted.org/packages/28/17/31a627bef5402a75e24aa18d45543ca6ded306a25bab29ab38b02b34aab0/miniaudio-1.46-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "809f8ce318eb175b0a504cebd28b278b", "sha256": "11a98a03f5bc962bc78355af3ef243de4d741a1efbb89fe6eda9f892d2b85709" }, "downloads": -1, "filename": "miniaudio-1.46-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "809f8ce318eb175b0a504cebd28b278b", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 552113, "upload_time": "2022-01-05T17:15:03", "upload_time_iso_8601": "2022-01-05T17:15:03.301780Z", "url": "https://files.pythonhosted.org/packages/e8/c0/20582a4e70f8bccc50681a34c16e7f4346c265821ba326bd10c7955af2de/miniaudio-1.46-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a81d97798b230e59d47c074bf367e993", "sha256": "2c5974421982e5fc29b56d9c94ce52247435d877984553326bd8964ca5c7d417" }, "downloads": -1, "filename": "miniaudio-1.46-cp39-cp39-musllinux_1_1_i686.whl", "has_sig": false, "md5_digest": "a81d97798b230e59d47c074bf367e993", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 521883, "upload_time": "2022-01-05T17:15:04", "upload_time_iso_8601": "2022-01-05T17:15:04.667359Z", "url": "https://files.pythonhosted.org/packages/c8/2f/2cfbdf2a818ab721a05702a62a748f377e5f519bafd7b56df87e5377107c/miniaudio-1.46-cp39-cp39-musllinux_1_1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "21e07e7838c22441e43d64809a505c53", "sha256": "55e2ed9e592f45dd6225c8aeaa3ba09c1c779b83ae312a2df2502e3fd123a8b1" }, "downloads": -1, "filename": "miniaudio-1.46-cp39-cp39-musllinux_1_1_x86_64.whl", "has_sig": false, "md5_digest": "21e07e7838c22441e43d64809a505c53", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 548518, "upload_time": "2022-01-05T17:15:05", "upload_time_iso_8601": "2022-01-05T17:15:05.860832Z", "url": "https://files.pythonhosted.org/packages/2a/6d/217a6a7c219be615a50d072286045dc8ad64002d6ec2fe151c8c17fccaa2/miniaudio-1.46-cp39-cp39-musllinux_1_1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "55572c77d159b4e8673ea5429a500206", "sha256": "37222e0a7b9d3a014b398b1312c8b0690a73fe97d3ba9547a2d828d99b3a7528" }, "downloads": -1, "filename": "miniaudio-1.46-cp39-cp39-win32.whl", "has_sig": false, "md5_digest": "55572c77d159b4e8673ea5429a500206", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 267467, "upload_time": "2022-01-05T17:15:06", "upload_time_iso_8601": "2022-01-05T17:15:06.957516Z", "url": "https://files.pythonhosted.org/packages/15/6b/11748e68f678b1a88ee795e86c26c8d9de11f34377f8dde05180a780143c/miniaudio-1.46-cp39-cp39-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f7e39660588b6cfbafeadb7ecd4f3234", "sha256": "1bd04958abff8e0d865f369c4df8b181bcd5a9b8715eb68c19d2f8376829cf35" }, "downloads": -1, "filename": "miniaudio-1.46-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "f7e39660588b6cfbafeadb7ecd4f3234", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 315572, "upload_time": "2022-01-05T17:15:08", "upload_time_iso_8601": "2022-01-05T17:15:08.091028Z", "url": "https://files.pythonhosted.org/packages/92/a5/f66e66ddf3fd732210f25cf2146fff0c6dfc90f87d4b7c367d9e994104e1/miniaudio-1.46-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "57db1b9bf357d3386f1a99eec2f9d1a5", "sha256": "ffdf7100957f8b11f88b3b6acc94ed644fdbc2ac9db655fa77764fc7384f8f8d" }, "downloads": -1, "filename": "miniaudio-1.46-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "57db1b9bf357d3386f1a99eec2f9d1a5", "packagetype": "bdist_wheel", "python_version": "pp37", "requires_python": null, "size": 1156544, "upload_time": "2022-01-05T17:15:09", "upload_time_iso_8601": "2022-01-05T17:15:09.204196Z", "url": "https://files.pythonhosted.org/packages/0f/a2/1756b0502b4dbe70f0d50f2767f1d75e106c4119505182a547fab5a1ee5c/miniaudio-1.46-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f2287d086241ee30232ee42338c29d40", "sha256": "98f00b97c26f236ea707ccd5d67da2f93b1324b4534af1084590a9f054f3796e" }, "downloads": -1, "filename": "miniaudio-1.46-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "f2287d086241ee30232ee42338c29d40", "packagetype": "bdist_wheel", "python_version": "pp37", "requires_python": null, "size": 1032754, "upload_time": "2022-01-05T17:15:11", "upload_time_iso_8601": "2022-01-05T17:15:11.080914Z", "url": "https://files.pythonhosted.org/packages/a0/af/0e9556d9f35c7e984af2ff0c1c8f323cd2a28d799ea636c79263aa12d393/miniaudio-1.46-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8b9b3dee847fa7f8bb4a801749652411", "sha256": "dfc8db6978b93eb87b80b828133db4df98103c17cb1f93ecce4f7b0928abcb7a" }, "downloads": -1, "filename": "miniaudio-1.46-pp37-pypy37_pp73-win_amd64.whl", "has_sig": false, "md5_digest": "8b9b3dee847fa7f8bb4a801749652411", "packagetype": "bdist_wheel", "python_version": "pp37", "requires_python": null, "size": 581068, "upload_time": "2022-01-05T17:15:12", "upload_time_iso_8601": "2022-01-05T17:15:12.227031Z", "url": "https://files.pythonhosted.org/packages/4c/66/c6b3fff209947d98fea773368cbf649b6d8f79fc7925863bbe56b1f0f8b4/miniaudio-1.46-pp37-pypy37_pp73-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4541c92350da7f7c56d8fe1a5ab19ed2", "sha256": "1bb0616c1f151dfbadb4e94c62de6e36a1a1b4e770c5ecd066b4ab0d367007ac" }, "downloads": -1, "filename": "miniaudio-1.46-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "4541c92350da7f7c56d8fe1a5ab19ed2", "packagetype": "bdist_wheel", "python_version": "pp38", "requires_python": null, "size": 1156776, "upload_time": "2022-01-05T17:15:13", "upload_time_iso_8601": "2022-01-05T17:15:13.259326Z", "url": "https://files.pythonhosted.org/packages/20/6f/c3f1ff25410303361da59bcc8c57f8ad7a82e233dac5189bbaa9f34d4c0e/miniaudio-1.46-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4ccaa24f648ac3198c09ad0b1487eb1f", "sha256": "e38b9815be03512eb30e65d10300fa266181c11e22e938800a2554cf19df8b49" }, "downloads": -1, "filename": "miniaudio-1.46-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "4ccaa24f648ac3198c09ad0b1487eb1f", "packagetype": "bdist_wheel", "python_version": "pp38", "requires_python": null, "size": 1033062, "upload_time": "2022-01-05T17:15:14", "upload_time_iso_8601": "2022-01-05T17:15:14.420020Z", "url": "https://files.pythonhosted.org/packages/b9/12/203c827857dcb9bf12f20f8ec675b9b512ba12033011c03d8415586ca67e/miniaudio-1.46-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d51376e693d98a066e8003740339198b", "sha256": "19dea51000da116759c3b28f708cd5df6fbe9aed96e5d301d36b48980ab477a5" }, "downloads": -1, "filename": "miniaudio-1.46-pp38-pypy38_pp73-win_amd64.whl", "has_sig": false, "md5_digest": "d51376e693d98a066e8003740339198b", "packagetype": "bdist_wheel", "python_version": "pp38", "requires_python": null, "size": 581144, "upload_time": "2022-01-05T17:15:15", "upload_time_iso_8601": "2022-01-05T17:15:15.630747Z", "url": "https://files.pythonhosted.org/packages/ba/0d/b259284aaea706b00a2a2302e76687a9b4edb19346d9ae2d65f27c77354f/miniaudio-1.46-pp38-pypy38_pp73-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7493b00e6c6106c5139a316dd15d05e9", "sha256": "1ea6f13960fe3803904dd4eb368ad94b282aa34db13d3f2175d2be8f4e06eb21" }, "downloads": -1, "filename": "miniaudio-1.46.tar.gz", "has_sig": false, "md5_digest": "7493b00e6c6106c5139a316dd15d05e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 546729, "upload_time": "2022-01-05T17:15:16", "upload_time_iso_8601": "2022-01-05T17:15:16.745509Z", "url": "https://files.pythonhosted.org/packages/5b/a0/c1039d2c73988d3ab69766f3f8ef3c1f7cc15d8dc44287ccfa85b9f0390b/miniaudio-1.46.tar.gz", "yanked": false, "yanked_reason": null } ], "1.5": [ { "comment_text": "", "digests": { "md5": "bfdcdb313300cab17f73e38605d3228c", "sha256": "85fffe8a45c8852283a1a721a5c8688a8fb4a74807c6711e2da2935db26c0913" }, "downloads": -1, "filename": "miniaudio-1.5-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "bfdcdb313300cab17f73e38605d3228c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 204568, "upload_time": "2019-07-04T15:54:45", "upload_time_iso_8601": "2019-07-04T15:54:45.177048Z", "url": "https://files.pythonhosted.org/packages/42/e2/27155fa1e62e70f4529669dfdd18673d689fc694f40c1ea3788d8a86618f/miniaudio-1.5-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a14f5e86e17f5d1f4f116da11a1b20fa", "sha256": "0509a07c50e21741f32e638202a586de1dea09d5a86810b8e217e25e8e699ea1" }, "downloads": -1, "filename": "miniaudio-1.5-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "a14f5e86e17f5d1f4f116da11a1b20fa", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 237430, "upload_time": "2019-07-04T15:54:43", "upload_time_iso_8601": "2019-07-04T15:54:43.346783Z", "url": "https://files.pythonhosted.org/packages/46/0c/c49372c4cd5f8d9f8fd379bee79bc18c6c0cd10a3567fa3546c06c7c2b15/miniaudio-1.5-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "71132e215a915da48b5baa40eaad103b", "sha256": "e2873979b04655d885a9b2a9e8cb0f382f5fc1a671018e6e628efb88b1049fbe" }, "downloads": -1, "filename": "miniaudio-1.5.tar.gz", "has_sig": false, "md5_digest": "71132e215a915da48b5baa40eaad103b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 459591, "upload_time": "2019-07-04T15:53:50", "upload_time_iso_8601": "2019-07-04T15:53:50.834630Z", "url": "https://files.pythonhosted.org/packages/51/43/b893840ccf931abc2392640a5497e3b655f6e2252281b279f1da25ecf268/miniaudio-1.5.tar.gz", "yanked": false, "yanked_reason": null } ], "1.6": [ { "comment_text": "", "digests": { "md5": "7bfe324193eb5e7959e2230320e3ba2b", "sha256": "170c5b1583ab67c040dc2c3a05a58acfa7e69fbf808d7556c7d6b36afac8a53c" }, "downloads": -1, "filename": "miniaudio-1.6-cp37-cp37m-linux_armv7l.whl", "has_sig": false, "md5_digest": "7bfe324193eb5e7959e2230320e3ba2b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 350022, "upload_time": "2019-07-10T19:39:29", "upload_time_iso_8601": "2019-07-10T19:39:29.765203Z", "url": "https://files.pythonhosted.org/packages/f1/79/8d4e4421657970819844a52daeaaca9339e883e55fbde06f984cb01db4fb/miniaudio-1.6-cp37-cp37m-linux_armv7l.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d53fd4e04633927aeb739327c86bd643", "sha256": "ea52753e949abd86b174fe32ee4154c998d857ee4e3bda446dcf2adedd99f479" }, "downloads": -1, "filename": "miniaudio-1.6-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "d53fd4e04633927aeb739327c86bd643", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 212077, "upload_time": "2019-07-07T21:12:14", "upload_time_iso_8601": "2019-07-07T21:12:14.474280Z", "url": "https://files.pythonhosted.org/packages/61/5c/c13f503238af2d9b9180d3d90347398a0e079af72426b4c33e283d52329b/miniaudio-1.6-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2231efd7fd7e9d6d620d1e9ebac15d26", "sha256": "de0e749dcab734ef076ef70b9cc5d2a2a50277aa830e5cd35540e53589d22281" }, "downloads": -1, "filename": "miniaudio-1.6-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "2231efd7fd7e9d6d620d1e9ebac15d26", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 246749, "upload_time": "2019-07-07T21:12:12", "upload_time_iso_8601": "2019-07-07T21:12:12.648690Z", "url": "https://files.pythonhosted.org/packages/6b/97/56fbaee3dd2c726c6dbfc78d2293b16211b30a08effbdde16a077569b0b1/miniaudio-1.6-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7940f49cafd8f5a9e0fd1cf770df8810", "sha256": "b34a393bd593e335cc824b17c30a2b588d8fe67d86d54342dd073b97b925034d" }, "downloads": -1, "filename": "miniaudio-1.6.tar.gz", "has_sig": false, "md5_digest": "7940f49cafd8f5a9e0fd1cf770df8810", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 434979, "upload_time": "2019-07-07T21:12:02", "upload_time_iso_8601": "2019-07-07T21:12:02.805646Z", "url": "https://files.pythonhosted.org/packages/3b/41/a47a90d03039a56652068ae7e5592fd768bd14d4c5c846cfdbd35c4de5f6/miniaudio-1.6.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7": [ { "comment_text": "", "digests": { "md5": "aacfa9c89e36156562005ebc1816cf96", "sha256": "4d16994c8149087b924940cc125a4e2e1ce9bbcce297bb158754f9afb8379d27" }, "downloads": -1, "filename": "miniaudio-1.7-cp37-cp37m-linux_armv7l.whl", "has_sig": false, "md5_digest": "aacfa9c89e36156562005ebc1816cf96", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 353890, "upload_time": "2019-08-12T19:42:22", "upload_time_iso_8601": "2019-08-12T19:42:22.452339Z", "url": "https://files.pythonhosted.org/packages/8e/a7/4f2dd5032d5c9c8bed526ecaa10919877d9d33916b9d98fac2ca27e9b249/miniaudio-1.7-cp37-cp37m-linux_armv7l.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d76ce8a822ef515dc978af81d5f569b8", "sha256": "96c37d8927994746657829eadf27edaab9c01aa998cddf09e72b2afd0cc10cb0" }, "downloads": -1, "filename": "miniaudio-1.7-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "d76ce8a822ef515dc978af81d5f569b8", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 213123, "upload_time": "2019-08-12T19:31:20", "upload_time_iso_8601": "2019-08-12T19:31:20.297540Z", "url": "https://files.pythonhosted.org/packages/1f/9c/e88d9d9b1057f8fd38a7049f935bfcbe93f0f380b4de978b97549fddae4c/miniaudio-1.7-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fc2d827bfd1565e3b35c01b975e85ec5", "sha256": "a2b953609b15804d2f196aba4f0d0ce06630158b7923940e5b9d58347b0a219b" }, "downloads": -1, "filename": "miniaudio-1.7-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "fc2d827bfd1565e3b35c01b975e85ec5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 248492, "upload_time": "2019-08-12T19:31:17", "upload_time_iso_8601": "2019-08-12T19:31:17.986856Z", "url": "https://files.pythonhosted.org/packages/16/d8/04873adddda4749ab937b320a49f95e2158182862d1dc8f563414dd0cc0a/miniaudio-1.7-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ead9fce493a1c54e04560c8b8d4612f5", "sha256": "b1f76bb51af8d8be85e7b83240893e362f2b05fea254220d26c0f2e5c331c434" }, "downloads": -1, "filename": "miniaudio-1.7-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "ead9fce493a1c54e04560c8b8d4612f5", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 213178, "upload_time": "2019-10-21T19:19:22", "upload_time_iso_8601": "2019-10-21T19:19:22.304015Z", "url": "https://files.pythonhosted.org/packages/9b/43/12af562d3cdccb9ae1019e31fb0ad0ea855c2ef1e59f4f3c75c6b702068f/miniaudio-1.7-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8fcccd65dfe251f5a578b734d33c6a45", "sha256": "ee52f42f22f307356c99391d039d090442af87049c0d29520e32d4ebe3b6bb6c" }, "downloads": -1, "filename": "miniaudio-1.7-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "8fcccd65dfe251f5a578b734d33c6a45", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 248510, "upload_time": "2019-10-21T19:19:19", "upload_time_iso_8601": "2019-10-21T19:19:19.538887Z", "url": "https://files.pythonhosted.org/packages/94/9a/a2c73975a8701e9ba8b2814ca704abc46ce84f0eaa46f6997f3c658c32dc/miniaudio-1.7-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c6773ad99466aad00558bba9b68745d5", "sha256": "b577d847172245a98164389d0e4574ad0276889b47a64f3ba68d4b3d0b9ca964" }, "downloads": -1, "filename": "miniaudio-1.7.tar.gz", "has_sig": false, "md5_digest": "c6773ad99466aad00558bba9b68745d5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 437428, "upload_time": "2019-08-12T19:31:02", "upload_time_iso_8601": "2019-08-12T19:31:02.623979Z", "url": "https://files.pythonhosted.org/packages/75/9b/0c0e1b5f54e3cfa353ab8ac6dcf412dad3bf1e49419d5a16dde3705e5cf4/miniaudio-1.7.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8": [ { "comment_text": "", "digests": { "md5": "1052e311a94141c05d790298bf7af283", "sha256": "f09b738deabe887ec71c545ada11db5179b176b6dbeaa49152151d91eb4d2291" }, "downloads": -1, "filename": "miniaudio-1.8-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "1052e311a94141c05d790298bf7af283", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 233375, "upload_time": "2019-10-21T19:01:03", "upload_time_iso_8601": "2019-10-21T19:01:03.076636Z", "url": "https://files.pythonhosted.org/packages/4b/b8/4140e13bd514b3ca3402d5440dd75e447a7fd088d9057fbc3cdb21f1a9a9/miniaudio-1.8-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "87b85fba4dea86ceb9164f45eb972f8a", "sha256": "e191136c53ee18424f65768bd728f638dc4b6a25014b4cc27fd48ef4584feff9" }, "downloads": -1, "filename": "miniaudio-1.8-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "87b85fba4dea86ceb9164f45eb972f8a", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 272741, "upload_time": "2019-10-21T19:01:00", "upload_time_iso_8601": "2019-10-21T19:01:00.852722Z", "url": "https://files.pythonhosted.org/packages/27/78/aac16d4cedbf11489e994ec5b47df7a1e336394358ec20746b3956882a53/miniaudio-1.8-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "224d6079c22935bcdb130619447f3792", "sha256": "c85113fccfa8fdc22dd77849044075421ffebc6808e3a26ff7e7be45c1037ad7" }, "downloads": -1, "filename": "miniaudio-1.8-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "224d6079c22935bcdb130619447f3792", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 233409, "upload_time": "2019-10-21T19:12:02", "upload_time_iso_8601": "2019-10-21T19:12:02.004040Z", "url": "https://files.pythonhosted.org/packages/1e/f3/59eaf6fb73fc41c2c174283d18922c1fa2e188b4d65d6117b7edfec11245/miniaudio-1.8-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a976270fd46b544a6570d9deb8ccaef1", "sha256": "f100a87a10174056284eb489a48e1dc656197947b4033dd2bd31b239c40d9f51" }, "downloads": -1, "filename": "miniaudio-1.8-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "a976270fd46b544a6570d9deb8ccaef1", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 272850, "upload_time": "2019-10-21T19:11:59", "upload_time_iso_8601": "2019-10-21T19:11:59.457774Z", "url": "https://files.pythonhosted.org/packages/60/dc/43e80231d07b25b95d326bb9882fb28e12d2a1bb915a0fcd96146252a9cd/miniaudio-1.8-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "441cfc01581d5047749d25a2cd890160", "sha256": "8dba384970475ef2e1415749a4852205d5b7f9c5b9a53288a0d868cc21802f44" }, "downloads": -1, "filename": "miniaudio-1.8.tar.gz", "has_sig": false, "md5_digest": "441cfc01581d5047749d25a2cd890160", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 467865, "upload_time": "2019-10-21T18:45:08", "upload_time_iso_8601": "2019-10-21T18:45:08.689563Z", "url": "https://files.pythonhosted.org/packages/e6/92/5768230a926eef1f266c5489e73990d9e0a35f37deb35cc41b456eeff7b7/miniaudio-1.8.tar.gz", "yanked": false, "yanked_reason": null } ], "1.9": [ { "comment_text": "", "digests": { "md5": "97634a69274bacbd7ffb518fc7c854aa", "sha256": "ab222ed02740be12e4cbbb382fb095de48f5b39349596a8b4d1ce6d8bf88a41e" }, "downloads": -1, "filename": "miniaudio-1.9-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "97634a69274bacbd7ffb518fc7c854aa", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 233773, "upload_time": "2020-01-11T01:01:52", "upload_time_iso_8601": "2020-01-11T01:01:52.850778Z", "url": "https://files.pythonhosted.org/packages/a8/5e/bddc0ec7afd0294afadc6007fcad0e29f29fc53da16706e84bcf05975b23/miniaudio-1.9-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "810e410767de9ed4ebf0165d3b424a9c", "sha256": "65f6681a9639d88caebe7f94f9136628184550c940b434c470d2bb1b571b31cb" }, "downloads": -1, "filename": "miniaudio-1.9-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "810e410767de9ed4ebf0165d3b424a9c", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 272959, "upload_time": "2020-01-11T01:01:50", "upload_time_iso_8601": "2020-01-11T01:01:50.646532Z", "url": "https://files.pythonhosted.org/packages/19/d7/a79055491d6c920dc8ed36970f8a3761020f53789e141d649712c98d034e/miniaudio-1.9-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f875217bbe9f573d5cc5dc1e1f5baadc", "sha256": "aa891476e1c99433b0b8a5309a74ac770fbb6da12c9231b6498bfc6350b044a3" }, "downloads": -1, "filename": "miniaudio-1.9-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "f875217bbe9f573d5cc5dc1e1f5baadc", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 233758, "upload_time": "2020-01-11T01:01:57", "upload_time_iso_8601": "2020-01-11T01:01:57.593976Z", "url": "https://files.pythonhosted.org/packages/56/e9/8e163de0f69dbd873aefadd7266df0b7c6af0511160e29ee07f77a43b39c/miniaudio-1.9-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "37ba7e7e0214e11b1a9e62820daca264", "sha256": "62ba0c313257e08072c745cbcf63b410f24488517ffd04e6b247769fc522365c" }, "downloads": -1, "filename": "miniaudio-1.9-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "37ba7e7e0214e11b1a9e62820daca264", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 272990, "upload_time": "2020-01-11T01:01:55", "upload_time_iso_8601": "2020-01-11T01:01:55.239618Z", "url": "https://files.pythonhosted.org/packages/1c/3c/def3fc784551af9e0c6e32fdef23f74e0f2eb53a00fccd54f59275f87077/miniaudio-1.9-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c88defe591d1a90afdcfd54aa51050a0", "sha256": "a6736a31ee3595a508ed16d48b6d94bd7913aaa77244f362b770861d7e5dc095" }, "downloads": -1, "filename": "miniaudio-1.9.tar.gz", "has_sig": false, "md5_digest": "c88defe591d1a90afdcfd54aa51050a0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 473591, "upload_time": "2020-01-11T01:01:29", "upload_time_iso_8601": "2020-01-11T01:01:29.098711Z", "url": "https://files.pythonhosted.org/packages/63/44/a6bc09539db27638d84c2dda4f17dbcf3894f12a05d07b5208d2cc4c2568/miniaudio-1.9.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "a9f7ce48df2605b364d910a55567ff38", "sha256": "d9007f9ce2e2034135f9edf70f25d1eaf4df54117369f14cc066313c10195d5d" }, "downloads": -1, "filename": "miniaudio-1.46-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "a9f7ce48df2605b364d910a55567ff38", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 618476, "upload_time": "2022-01-05T17:14:30", "upload_time_iso_8601": "2022-01-05T17:14:30.976712Z", "url": "https://files.pythonhosted.org/packages/a6/b8/b47cafa974067dea967034ed9e1c609cd171bae49e16afa8ccfce6f23ddf/miniaudio-1.46-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "78f2d2996ac0cf3211f07c01bf41b390", "sha256": "1ebfcfcc6aecc03d259986387413df3525368f727b85d2bb3fd78109d2f8badb" }, "downloads": -1, "filename": "miniaudio-1.46-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "78f2d2996ac0cf3211f07c01bf41b390", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 552124, "upload_time": "2022-01-05T17:14:32", "upload_time_iso_8601": "2022-01-05T17:14:32.886409Z", "url": "https://files.pythonhosted.org/packages/be/f1/7b81a974ee5f8a00a77d54c934726cb250489e2283c61dc437260fe2a469/miniaudio-1.46-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "06289e3fa5615ad48db124a33cfbd85f", "sha256": "6e031d750f3a1cc43b6c3d88f7879d52f1055e85ac97634592aca341d3cb9c42" }, "downloads": -1, "filename": "miniaudio-1.46-cp310-cp310-musllinux_1_1_i686.whl", "has_sig": false, "md5_digest": "06289e3fa5615ad48db124a33cfbd85f", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 521889, "upload_time": "2022-01-05T17:14:34", "upload_time_iso_8601": "2022-01-05T17:14:34.585402Z", "url": "https://files.pythonhosted.org/packages/44/c3/80e09c066d8e81454cd6c2d6596d6dd526771788f3bc3eb3ad6514599753/miniaudio-1.46-cp310-cp310-musllinux_1_1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "95affe45e92d8f190573e9467875bb24", "sha256": "5870aa1178d904fc30a327d35fe35c08c45b0d8d9336f7c0487df538673b91a1" }, "downloads": -1, "filename": "miniaudio-1.46-cp310-cp310-musllinux_1_1_x86_64.whl", "has_sig": false, "md5_digest": "95affe45e92d8f190573e9467875bb24", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 548529, "upload_time": "2022-01-05T17:14:36", "upload_time_iso_8601": "2022-01-05T17:14:36.206361Z", "url": "https://files.pythonhosted.org/packages/cb/ac/b3a3755f73496a2f6f1aa53d47174bfa1e01cb36f91249d44bfe18488018/miniaudio-1.46-cp310-cp310-musllinux_1_1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a1331055db6f5ceca1412db779c9acc0", "sha256": "8b4886bb095417c615153621ebdeda80b7f4b4e4c08abc4226df25397c59094a" }, "downloads": -1, "filename": "miniaudio-1.46-cp310-cp310-win32.whl", "has_sig": false, "md5_digest": "a1331055db6f5ceca1412db779c9acc0", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 267467, "upload_time": "2022-01-05T17:14:37", "upload_time_iso_8601": "2022-01-05T17:14:37.786741Z", "url": "https://files.pythonhosted.org/packages/f0/3a/9dc1e42675f28656143a3d297426eaf71b4128c37a9844adfd3fcbb036d1/miniaudio-1.46-cp310-cp310-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "52704a05afed021b24f68f224bedf1c6", "sha256": "5b17d5566d9875787cb1653f80fbf1644ce92df98a466a1bbd0a141659bf5e79" }, "downloads": -1, "filename": "miniaudio-1.46-cp310-cp310-win_amd64.whl", "has_sig": false, "md5_digest": "52704a05afed021b24f68f224bedf1c6", "packagetype": "bdist_wheel", "python_version": "cp310", "requires_python": null, "size": 315573, "upload_time": "2022-01-05T17:14:39", "upload_time_iso_8601": "2022-01-05T17:14:39.335100Z", "url": "https://files.pythonhosted.org/packages/2e/88/24c21b1a0451ec3a1349f216f07edcca9cb2c0b22d9900d2755fa8f6a3df/miniaudio-1.46-cp310-cp310-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "14ac16787f9a077ac8b1516a8852f97a", "sha256": "ffcba30e51fb2838d96da6a64e26610da3ca16595cef90fb663fc067c3ce3477" }, "downloads": -1, "filename": "miniaudio-1.46-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "14ac16787f9a077ac8b1516a8852f97a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 618234, "upload_time": "2022-01-05T17:14:40", "upload_time_iso_8601": "2022-01-05T17:14:40.687228Z", "url": "https://files.pythonhosted.org/packages/6e/cb/f9bf5a4667fbd72eb22a3678a2fe59ee561cd14e4ee421952904bf03183b/miniaudio-1.46-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "59c185aa3c2229df1791012955cc8dec", "sha256": "cedb7ae248594edb077e6fb8767fa4af7624c9d25d02f9b1fed2ad5d5698541e" }, "downloads": -1, "filename": "miniaudio-1.46-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "59c185aa3c2229df1791012955cc8dec", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 551832, "upload_time": "2022-01-05T17:14:41", "upload_time_iso_8601": "2022-01-05T17:14:41.818139Z", "url": "https://files.pythonhosted.org/packages/f8/ad/4965f88d116bd4a88997ab6bceb466804b011fc7ee2d381d8afb037d3953/miniaudio-1.46-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b5d600999dac026c564d95a231df9404", "sha256": "6a17733ff66e8394685c67455ec9f41860be60809c08ebbbf521b79fd96fd139" }, "downloads": -1, "filename": "miniaudio-1.46-cp36-cp36m-musllinux_1_1_i686.whl", "has_sig": false, "md5_digest": "b5d600999dac026c564d95a231df9404", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 521563, "upload_time": "2022-01-05T17:14:42", "upload_time_iso_8601": "2022-01-05T17:14:42.976780Z", "url": "https://files.pythonhosted.org/packages/ca/d5/6ac65f58bf0abfcb953b2ee070ea7a49d2f09e1844d58ceceb9db1442d18/miniaudio-1.46-cp36-cp36m-musllinux_1_1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9410b47b0124cdd6506b7645fd878a6d", "sha256": "528d9d99f3fabfb49221fa9a4dc787b02a927e6632434beaa12f11e77bca5afa" }, "downloads": -1, "filename": "miniaudio-1.46-cp36-cp36m-musllinux_1_1_x86_64.whl", "has_sig": false, "md5_digest": "9410b47b0124cdd6506b7645fd878a6d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 548143, "upload_time": "2022-01-05T17:14:44", "upload_time_iso_8601": "2022-01-05T17:14:44.161720Z", "url": "https://files.pythonhosted.org/packages/c8/6d/f5b019d1c5ff6fa0ea660467784d1676c539e92e9283797c4d87eea0bf6d/miniaudio-1.46-cp36-cp36m-musllinux_1_1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9303dfe15fea20373cfab9fcf0a0fdd5", "sha256": "c20378a2d160f053383e74b0655c401975c3fb166629aac040bf2ea40a0e0e50" }, "downloads": -1, "filename": "miniaudio-1.46-cp36-cp36m-win32.whl", "has_sig": false, "md5_digest": "9303dfe15fea20373cfab9fcf0a0fdd5", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 267465, "upload_time": "2022-01-05T17:14:45", "upload_time_iso_8601": "2022-01-05T17:14:45.349886Z", "url": "https://files.pythonhosted.org/packages/fd/ae/75cedd077deaad94a6dcd5faf56687a78f46fce514c9983f8b5f88847d96/miniaudio-1.46-cp36-cp36m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "095e4acc4c45c007c1f244e79c4c7e95", "sha256": "1b49f0467d584c0f6bbafcdcfba7e384912bfb798ed7fb5d5c2ceaae005fac47" }, "downloads": -1, "filename": "miniaudio-1.46-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "095e4acc4c45c007c1f244e79c4c7e95", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 315512, "upload_time": "2022-01-05T17:14:46", "upload_time_iso_8601": "2022-01-05T17:14:46.543452Z", "url": "https://files.pythonhosted.org/packages/dc/70/c199703f31809e73b8bc0c688f65b1bdddc1fb7420ee772ab43009b04d04/miniaudio-1.46-cp36-cp36m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "07f63665d2ca07dfb57db015599321e5", "sha256": "1bc0c92c9b9983ea2224fcc3ea0ace71bbfb466e0ea7e734dde7f106d0286127" }, "downloads": -1, "filename": "miniaudio-1.46-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "07f63665d2ca07dfb57db015599321e5", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 618234, "upload_time": "2022-01-05T17:14:47", "upload_time_iso_8601": "2022-01-05T17:14:47.722411Z", "url": "https://files.pythonhosted.org/packages/42/06/3acc52d6173bb8ec99066aab513b04fce53796e757292085bdbaa1fb29b8/miniaudio-1.46-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c99baec96275d64ee359fe28618ed30b", "sha256": "e68c0fda639fbcabca3e2c18852f27a02f6003785b63318c9e081c1308936306" }, "downloads": -1, "filename": "miniaudio-1.46-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "c99baec96275d64ee359fe28618ed30b", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 551820, "upload_time": "2022-01-05T17:14:48", "upload_time_iso_8601": "2022-01-05T17:14:48.982215Z", "url": "https://files.pythonhosted.org/packages/5d/3b/318c3c3a9bc28adb4d3a1915224390d937a2e1766c5742268e7c431f1c67/miniaudio-1.46-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "18c9edada5761912614e882ffbf64299", "sha256": "24bdca08bcb617a54e76ab74d1df861269740915e4bbe15b9831f7bf4fd0243a" }, "downloads": -1, "filename": "miniaudio-1.46-cp37-cp37m-musllinux_1_1_i686.whl", "has_sig": false, "md5_digest": "18c9edada5761912614e882ffbf64299", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 521565, "upload_time": "2022-01-05T17:14:50", "upload_time_iso_8601": "2022-01-05T17:14:50.420401Z", "url": "https://files.pythonhosted.org/packages/0e/96/6c190b67d502ede42cfc54ea9bbbcfe707b1cbff7087ec968e21da9072ab/miniaudio-1.46-cp37-cp37m-musllinux_1_1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b4b67ca168ca4afe6ce4976b6122e6bd", "sha256": "79c4458bde867069119baedff60e6bcfbf20517db7d1005895216040c1329cd1" }, "downloads": -1, "filename": "miniaudio-1.46-cp37-cp37m-musllinux_1_1_x86_64.whl", "has_sig": false, "md5_digest": "b4b67ca168ca4afe6ce4976b6122e6bd", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 548136, "upload_time": "2022-01-05T17:14:51", "upload_time_iso_8601": "2022-01-05T17:14:51.512948Z", "url": "https://files.pythonhosted.org/packages/e5/81/b59469aad18d3f1ff7caf9025f4d9a4c021c2102dd81b086643c82b5792e/miniaudio-1.46-cp37-cp37m-musllinux_1_1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3d945d48be0dd1164eda85fce9ff4ed7", "sha256": "709b13c856071195a40a22d0bffc167ff8c08b5c8fc67ce1fba1bf437cf6e69f" }, "downloads": -1, "filename": "miniaudio-1.46-cp37-cp37m-win32.whl", "has_sig": false, "md5_digest": "3d945d48be0dd1164eda85fce9ff4ed7", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 267464, "upload_time": "2022-01-05T17:14:52", "upload_time_iso_8601": "2022-01-05T17:14:52.660134Z", "url": "https://files.pythonhosted.org/packages/9e/25/a9943fc15d9d725df4005f017eaf5005324933fcde673fcfa0ad3ebc0b8e/miniaudio-1.46-cp37-cp37m-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5afa28af2bf189c2047344ff9f2af511", "sha256": "42302e8f8c2e1999a74c27278010556d0c222c8cdd61b056f7f4a4a8e94ce72f" }, "downloads": -1, "filename": "miniaudio-1.46-cp37-cp37m-win_amd64.whl", "has_sig": false, "md5_digest": "5afa28af2bf189c2047344ff9f2af511", "packagetype": "bdist_wheel", "python_version": "cp37", "requires_python": null, "size": 315512, "upload_time": "2022-01-05T17:14:53", "upload_time_iso_8601": "2022-01-05T17:14:53.764572Z", "url": "https://files.pythonhosted.org/packages/7f/3a/62535a4fc051f2399249c40b7a4c6d405e064208aec64074f12aaef8730e/miniaudio-1.46-cp37-cp37m-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3aa50bde1c927f100fc351bc30bf99c6", "sha256": "27882b882debc19c571fba623cce02be5380222d5bbcc9857b830d236c8d0529" }, "downloads": -1, "filename": "miniaudio-1.46-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "3aa50bde1c927f100fc351bc30bf99c6", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 618473, "upload_time": "2022-01-05T17:14:54", "upload_time_iso_8601": "2022-01-05T17:14:54.808933Z", "url": "https://files.pythonhosted.org/packages/7a/b9/2d60f760749e96cdb41826f567b1b8b7ed714545ddddb4a042d06d42998c/miniaudio-1.46-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eba71769b82322658a3bb92be4ea5645", "sha256": "7b6a83f8eaa183e4eabf69dd027f561533d0ea1b55d74c84ab4fa3751d91640f" }, "downloads": -1, "filename": "miniaudio-1.46-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "eba71769b82322658a3bb92be4ea5645", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 552131, "upload_time": "2022-01-05T17:14:55", "upload_time_iso_8601": "2022-01-05T17:14:55.929397Z", "url": "https://files.pythonhosted.org/packages/e8/8d/8b73c9d266893ffd4ce97d6159b0d25d1bc82b44a429b264b214b781d2ce/miniaudio-1.46-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a0755531dff150b9df8aef7bd39f1387", "sha256": "ec404587997b07d87cb9b4f0b895bd0502c49b72bd7209597f9f19fcfb8fdb61" }, "downloads": -1, "filename": "miniaudio-1.46-cp38-cp38-musllinux_1_1_i686.whl", "has_sig": false, "md5_digest": "a0755531dff150b9df8aef7bd39f1387", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 521872, "upload_time": "2022-01-05T17:14:57", "upload_time_iso_8601": "2022-01-05T17:14:57.014347Z", "url": "https://files.pythonhosted.org/packages/d9/ea/9c41cea7b98fd39d37b0be28d37fe156aeb534569cf39c56c35f9322fa01/miniaudio-1.46-cp38-cp38-musllinux_1_1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0135904425cd152575414d4563c8266a", "sha256": "115ddde6401b4e4c5f302e86487bd09efcd2ba413b582f0aee4800edb9f5bfd6" }, "downloads": -1, "filename": "miniaudio-1.46-cp38-cp38-musllinux_1_1_x86_64.whl", "has_sig": false, "md5_digest": "0135904425cd152575414d4563c8266a", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 548531, "upload_time": "2022-01-05T17:14:58", "upload_time_iso_8601": "2022-01-05T17:14:58.205281Z", "url": "https://files.pythonhosted.org/packages/2c/0d/8948dbbe8ee08ac2ddd66f6c9b3135f5f8644c3877806c4af9bd4b931669/miniaudio-1.46-cp38-cp38-musllinux_1_1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ddba63600c4fac6e2258e5cc472a8ed0", "sha256": "168e84c6ef19aef76d8c70ea4657d02d132ad16c66defc372eedb835d86555f7" }, "downloads": -1, "filename": "miniaudio-1.46-cp38-cp38-win32.whl", "has_sig": false, "md5_digest": "ddba63600c4fac6e2258e5cc472a8ed0", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 267479, "upload_time": "2022-01-05T17:14:59", "upload_time_iso_8601": "2022-01-05T17:14:59.346515Z", "url": "https://files.pythonhosted.org/packages/f9/9b/2c3e3032039fe27ac87065b4cd1274b0a012695ae4b015c258c17a57075b/miniaudio-1.46-cp38-cp38-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5f5ac835d678977fc29699eea891423e", "sha256": "9c300516e7751598170b17455d8e275c6bfe65385e0273a379a0d1c52503cc39" }, "downloads": -1, "filename": "miniaudio-1.46-cp38-cp38-win_amd64.whl", "has_sig": false, "md5_digest": "5f5ac835d678977fc29699eea891423e", "packagetype": "bdist_wheel", "python_version": "cp38", "requires_python": null, "size": 315583, "upload_time": "2022-01-05T17:15:00", "upload_time_iso_8601": "2022-01-05T17:15:00.552938Z", "url": "https://files.pythonhosted.org/packages/01/d7/fe04d73223c8eab2c071b5492a95578360f547db14e6d9cc013daea8d70a/miniaudio-1.46-cp38-cp38-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9ceee7f6d9c50ecc7bcc28da44e18809", "sha256": "15cd766d4ef15976c5a09883fd0a54f343d80f0a6dfd8c998faa16132582311f" }, "downloads": -1, "filename": "miniaudio-1.46-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "9ceee7f6d9c50ecc7bcc28da44e18809", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 618477, "upload_time": "2022-01-05T17:15:01", "upload_time_iso_8601": "2022-01-05T17:15:01.673577Z", "url": "https://files.pythonhosted.org/packages/28/17/31a627bef5402a75e24aa18d45543ca6ded306a25bab29ab38b02b34aab0/miniaudio-1.46-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "809f8ce318eb175b0a504cebd28b278b", "sha256": "11a98a03f5bc962bc78355af3ef243de4d741a1efbb89fe6eda9f892d2b85709" }, "downloads": -1, "filename": "miniaudio-1.46-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "809f8ce318eb175b0a504cebd28b278b", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 552113, "upload_time": "2022-01-05T17:15:03", "upload_time_iso_8601": "2022-01-05T17:15:03.301780Z", "url": "https://files.pythonhosted.org/packages/e8/c0/20582a4e70f8bccc50681a34c16e7f4346c265821ba326bd10c7955af2de/miniaudio-1.46-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a81d97798b230e59d47c074bf367e993", "sha256": "2c5974421982e5fc29b56d9c94ce52247435d877984553326bd8964ca5c7d417" }, "downloads": -1, "filename": "miniaudio-1.46-cp39-cp39-musllinux_1_1_i686.whl", "has_sig": false, "md5_digest": "a81d97798b230e59d47c074bf367e993", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 521883, "upload_time": "2022-01-05T17:15:04", "upload_time_iso_8601": "2022-01-05T17:15:04.667359Z", "url": "https://files.pythonhosted.org/packages/c8/2f/2cfbdf2a818ab721a05702a62a748f377e5f519bafd7b56df87e5377107c/miniaudio-1.46-cp39-cp39-musllinux_1_1_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "21e07e7838c22441e43d64809a505c53", "sha256": "55e2ed9e592f45dd6225c8aeaa3ba09c1c779b83ae312a2df2502e3fd123a8b1" }, "downloads": -1, "filename": "miniaudio-1.46-cp39-cp39-musllinux_1_1_x86_64.whl", "has_sig": false, "md5_digest": "21e07e7838c22441e43d64809a505c53", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 548518, "upload_time": "2022-01-05T17:15:05", "upload_time_iso_8601": "2022-01-05T17:15:05.860832Z", "url": "https://files.pythonhosted.org/packages/2a/6d/217a6a7c219be615a50d072286045dc8ad64002d6ec2fe151c8c17fccaa2/miniaudio-1.46-cp39-cp39-musllinux_1_1_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "55572c77d159b4e8673ea5429a500206", "sha256": "37222e0a7b9d3a014b398b1312c8b0690a73fe97d3ba9547a2d828d99b3a7528" }, "downloads": -1, "filename": "miniaudio-1.46-cp39-cp39-win32.whl", "has_sig": false, "md5_digest": "55572c77d159b4e8673ea5429a500206", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 267467, "upload_time": "2022-01-05T17:15:06", "upload_time_iso_8601": "2022-01-05T17:15:06.957516Z", "url": "https://files.pythonhosted.org/packages/15/6b/11748e68f678b1a88ee795e86c26c8d9de11f34377f8dde05180a780143c/miniaudio-1.46-cp39-cp39-win32.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f7e39660588b6cfbafeadb7ecd4f3234", "sha256": "1bd04958abff8e0d865f369c4df8b181bcd5a9b8715eb68c19d2f8376829cf35" }, "downloads": -1, "filename": "miniaudio-1.46-cp39-cp39-win_amd64.whl", "has_sig": false, "md5_digest": "f7e39660588b6cfbafeadb7ecd4f3234", "packagetype": "bdist_wheel", "python_version": "cp39", "requires_python": null, "size": 315572, "upload_time": "2022-01-05T17:15:08", "upload_time_iso_8601": "2022-01-05T17:15:08.091028Z", "url": "https://files.pythonhosted.org/packages/92/a5/f66e66ddf3fd732210f25cf2146fff0c6dfc90f87d4b7c367d9e994104e1/miniaudio-1.46-cp39-cp39-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "57db1b9bf357d3386f1a99eec2f9d1a5", "sha256": "ffdf7100957f8b11f88b3b6acc94ed644fdbc2ac9db655fa77764fc7384f8f8d" }, "downloads": -1, "filename": "miniaudio-1.46-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "57db1b9bf357d3386f1a99eec2f9d1a5", "packagetype": "bdist_wheel", "python_version": "pp37", "requires_python": null, "size": 1156544, "upload_time": "2022-01-05T17:15:09", "upload_time_iso_8601": "2022-01-05T17:15:09.204196Z", "url": "https://files.pythonhosted.org/packages/0f/a2/1756b0502b4dbe70f0d50f2767f1d75e106c4119505182a547fab5a1ee5c/miniaudio-1.46-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f2287d086241ee30232ee42338c29d40", "sha256": "98f00b97c26f236ea707ccd5d67da2f93b1324b4534af1084590a9f054f3796e" }, "downloads": -1, "filename": "miniaudio-1.46-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "f2287d086241ee30232ee42338c29d40", "packagetype": "bdist_wheel", "python_version": "pp37", "requires_python": null, "size": 1032754, "upload_time": "2022-01-05T17:15:11", "upload_time_iso_8601": "2022-01-05T17:15:11.080914Z", "url": "https://files.pythonhosted.org/packages/a0/af/0e9556d9f35c7e984af2ff0c1c8f323cd2a28d799ea636c79263aa12d393/miniaudio-1.46-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8b9b3dee847fa7f8bb4a801749652411", "sha256": "dfc8db6978b93eb87b80b828133db4df98103c17cb1f93ecce4f7b0928abcb7a" }, "downloads": -1, "filename": "miniaudio-1.46-pp37-pypy37_pp73-win_amd64.whl", "has_sig": false, "md5_digest": "8b9b3dee847fa7f8bb4a801749652411", "packagetype": "bdist_wheel", "python_version": "pp37", "requires_python": null, "size": 581068, "upload_time": "2022-01-05T17:15:12", "upload_time_iso_8601": "2022-01-05T17:15:12.227031Z", "url": "https://files.pythonhosted.org/packages/4c/66/c6b3fff209947d98fea773368cbf649b6d8f79fc7925863bbe56b1f0f8b4/miniaudio-1.46-pp37-pypy37_pp73-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4541c92350da7f7c56d8fe1a5ab19ed2", "sha256": "1bb0616c1f151dfbadb4e94c62de6e36a1a1b4e770c5ecd066b4ab0d367007ac" }, "downloads": -1, "filename": "miniaudio-1.46-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", "has_sig": false, "md5_digest": "4541c92350da7f7c56d8fe1a5ab19ed2", "packagetype": "bdist_wheel", "python_version": "pp38", "requires_python": null, "size": 1156776, "upload_time": "2022-01-05T17:15:13", "upload_time_iso_8601": "2022-01-05T17:15:13.259326Z", "url": "https://files.pythonhosted.org/packages/20/6f/c3f1ff25410303361da59bcc8c57f8ad7a82e233dac5189bbaa9f34d4c0e/miniaudio-1.46-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4ccaa24f648ac3198c09ad0b1487eb1f", "sha256": "e38b9815be03512eb30e65d10300fa266181c11e22e938800a2554cf19df8b49" }, "downloads": -1, "filename": "miniaudio-1.46-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "has_sig": false, "md5_digest": "4ccaa24f648ac3198c09ad0b1487eb1f", "packagetype": "bdist_wheel", "python_version": "pp38", "requires_python": null, "size": 1033062, "upload_time": "2022-01-05T17:15:14", "upload_time_iso_8601": "2022-01-05T17:15:14.420020Z", "url": "https://files.pythonhosted.org/packages/b9/12/203c827857dcb9bf12f20f8ec675b9b512ba12033011c03d8415586ca67e/miniaudio-1.46-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d51376e693d98a066e8003740339198b", "sha256": "19dea51000da116759c3b28f708cd5df6fbe9aed96e5d301d36b48980ab477a5" }, "downloads": -1, "filename": "miniaudio-1.46-pp38-pypy38_pp73-win_amd64.whl", "has_sig": false, "md5_digest": "d51376e693d98a066e8003740339198b", "packagetype": "bdist_wheel", "python_version": "pp38", "requires_python": null, "size": 581144, "upload_time": "2022-01-05T17:15:15", "upload_time_iso_8601": "2022-01-05T17:15:15.630747Z", "url": "https://files.pythonhosted.org/packages/ba/0d/b259284aaea706b00a2a2302e76687a9b4edb19346d9ae2d65f27c77354f/miniaudio-1.46-pp38-pypy38_pp73-win_amd64.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7493b00e6c6106c5139a316dd15d05e9", "sha256": "1ea6f13960fe3803904dd4eb368ad94b282aa34db13d3f2175d2be8f4e06eb21" }, "downloads": -1, "filename": "miniaudio-1.46.tar.gz", "has_sig": false, "md5_digest": "7493b00e6c6106c5139a316dd15d05e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 546729, "upload_time": "2022-01-05T17:15:16", "upload_time_iso_8601": "2022-01-05T17:15:16.745509Z", "url": "https://files.pythonhosted.org/packages/5b/a0/c1039d2c73988d3ab69766f3f8ef3c1f7cc15d8dc44287ccfa85b9f0390b/miniaudio-1.46.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }