Skip to main content

A small package for playing audio in python with file format independent methods for playback control

Project description

just_playback

A small library for playing audio files in python. Provides file format independent methods for loading audio files, playing, pausing, resuming, stopping, seeking, getting the current playback position, and changing the volume.

The package uses miniaudio for awesome cross-platform, dependency-free asynchronous audio playback that stays away from your main thread.

Installation

pip install just_playback

Usage

from just_playback import Playback
playback = Playback() # creates an object for managing playback of a single audio file
playback.load_file('music-files/sample.mp3')
# or just pass the filename directly to the constructor

playback.play() # plays loaded audio file from the beginning
playback.pause() # pauses playback. Has no effect if playback is already paused
playback.resume() # resumes playback. Has no effect if playback is playing
playback.stop() # stops playback. Has no effect if playback is not active

playback.seek(60) # positions playback at 1 minute from the start of the audio file
playback.set_volume(0.5) # sets the playback volume to 50% of the audio file's original value

playback.loop_at_end(True) # since 0.1.5. Causes playback to automatically restart when it completes.

playback.active # True if playback is active i.e playing or paused
playback.playing # True if playback is active and not paused
playback.curr_pos # current absolute playback position in seconds from 
				  #	the start of the audio file (unlike pygame.mixer.get_pos). 
playback.paused # True if playback is paused.
playback.duration # length of the audio file in seconds. 
playback.volume # current playback volume
playback.loops_at_end # True if playback is set to restart when it completes.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

just_playback-0.1.7.tar.gz (504.8 kB view details)

Uploaded Source

Built Distributions

just_playback-0.1.7-pp39-pypy39_pp73-win_amd64.whl (168.3 kB view details)

Uploaded PyPy Windows x86-64

just_playback-0.1.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (485.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

just_playback-0.1.7-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (563.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

just_playback-0.1.7-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (269.4 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

just_playback-0.1.7-pp38-pypy38_pp73-win_amd64.whl (168.4 kB view details)

Uploaded PyPy Windows x86-64

just_playback-0.1.7-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (485.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

just_playback-0.1.7-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (563.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

just_playback-0.1.7-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (269.4 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

just_playback-0.1.7-pp37-pypy37_pp73-win_amd64.whl (168.3 kB view details)

Uploaded PyPy Windows x86-64

just_playback-0.1.7-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (490.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

just_playback-0.1.7-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (568.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

just_playback-0.1.7-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (269.4 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

just_playback-0.1.7-cp310-cp310-win_amd64.whl (170.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

just_playback-0.1.7-cp310-cp310-win32.whl (156.4 kB view details)

Uploaded CPython 3.10 Windows x86

just_playback-0.1.7-cp310-cp310-musllinux_1_1_x86_64.whl (484.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

just_playback-0.1.7-cp310-cp310-musllinux_1_1_i686.whl (554.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

just_playback-0.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (488.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

just_playback-0.1.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (575.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

just_playback-0.1.7-cp310-cp310-macosx_10_9_x86_64.whl (273.9 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

just_playback-0.1.7-cp39-cp39-win_amd64.whl (170.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

just_playback-0.1.7-cp39-cp39-win32.whl (156.4 kB view details)

Uploaded CPython 3.9 Windows x86

just_playback-0.1.7-cp39-cp39-musllinux_1_1_x86_64.whl (484.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

just_playback-0.1.7-cp39-cp39-musllinux_1_1_i686.whl (554.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

just_playback-0.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (488.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

just_playback-0.1.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (575.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

just_playback-0.1.7-cp39-cp39-macosx_10_9_x86_64.whl (273.9 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

just_playback-0.1.7-cp38-cp38-win_amd64.whl (170.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

just_playback-0.1.7-cp38-cp38-win32.whl (156.4 kB view details)

Uploaded CPython 3.8 Windows x86

just_playback-0.1.7-cp38-cp38-musllinux_1_1_x86_64.whl (484.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

just_playback-0.1.7-cp38-cp38-musllinux_1_1_i686.whl (554.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

just_playback-0.1.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (488.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

just_playback-0.1.7-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (575.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

just_playback-0.1.7-cp38-cp38-macosx_10_9_x86_64.whl (273.9 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

just_playback-0.1.7-cp37-cp37m-win_amd64.whl (170.6 kB view details)

Uploaded CPython 3.7m Windows x86-64

just_playback-0.1.7-cp37-cp37m-win32.whl (156.4 kB view details)

Uploaded CPython 3.7m Windows x86

just_playback-0.1.7-cp37-cp37m-musllinux_1_1_x86_64.whl (484.8 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

just_playback-0.1.7-cp37-cp37m-musllinux_1_1_i686.whl (554.5 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

just_playback-0.1.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (488.3 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

just_playback-0.1.7-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (575.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

just_playback-0.1.7-cp37-cp37m-macosx_10_9_x86_64.whl (273.8 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

just_playback-0.1.7-cp36-cp36m-win_amd64.whl (223.3 kB view details)

Uploaded CPython 3.6m Windows x86-64

just_playback-0.1.7-cp36-cp36m-win32.whl (195.8 kB view details)

Uploaded CPython 3.6m Windows x86

just_playback-0.1.7-cp36-cp36m-musllinux_1_1_x86_64.whl (484.8 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

just_playback-0.1.7-cp36-cp36m-musllinux_1_1_i686.whl (554.5 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

just_playback-0.1.7-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (488.2 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

just_playback-0.1.7-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (575.4 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

just_playback-0.1.7-cp36-cp36m-macosx_10_9_x86_64.whl (273.9 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file just_playback-0.1.7.tar.gz.

File metadata

  • Download URL: just_playback-0.1.7.tar.gz
  • Upload date:
  • Size: 504.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.13

File hashes

Hashes for just_playback-0.1.7.tar.gz
Algorithm Hash digest
SHA256 f27d6bbc3bb2d9d504b501d00467bf0f3ba54eb70808c0e2d2f3fdecf2c13710
MD5 6a3a5e3ef3bd22b78ea92c1b7c5df3b9
BLAKE2b-256 6e4665315876056313e6b696b072671e8cdf2a1f84bb90342765304a55beae5f

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7563bd3e53e67847b24a25a45100926ef3fa900d2881540632aa0723d2ec4c16
MD5 495e66f394b755eecf6a488a8109fac7
BLAKE2b-256 cf2163079acdaef67b374d62a9c16b1f9eb2987fbb35f9738d370b4648cbc4ff

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b908ce7f931b574a2930c348d64dbb43bf4a8517bd83fdf85578126bc46d0282
MD5 30fde45057997810340395ca08ddc235
BLAKE2b-256 cafbc506e2771b5e06fe70bcea74296116edb793ec1867b0f24bec7e0b64ee5a

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e746cdd41447fb817f813d5295877d1196a63949d285d36dfaeea8ec917fa374
MD5 1ec8e41c48ec64e5d35943754d517a50
BLAKE2b-256 f72d2a83078200e8107da6c5e3243a70fca841c6eb248d4ca1844f3919c5f40b

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b169ef27fcd741dc4d350022d723dee3d93d541f26d3b03ab75fd89f0b4c0a79
MD5 a33bc524bb58d834ed09629cdbf6a302
BLAKE2b-256 92ee6356c5ef1b960e351072f10f2938113bf017f6c07b78786874cecbabc144

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d62ac847e7af43b39a62888bac1b9876b2418b59f2050d13ca0b8247effb6585
MD5 f9bf5d5c4cb13808d77af7ac08ea19b8
BLAKE2b-256 2ed09a1524e5facbc7143cc67fb6d4d2cb101d0e5f03324fb14e80d5366b6705

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f95cbe9b5e9d9967682af70eeb56b0ba8f4029305f716a699e79b5a52c53f0b
MD5 a440776f3490710e4735a3ed6250f296
BLAKE2b-256 286835d233c22128b0a91273ea3e7bdf9eb0a102ae169dbd2e6b900a0c1572c0

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c210077a91dbe1b3300b9d5077ce97c9cdf383836aebf5083530e5aac635e3d7
MD5 e705c710af2167d098bdb3085421393c
BLAKE2b-256 36904c3f0bfe145574194385b43926f7d8a2045fe043309c446342e211920039

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 639f6bbbada9a7fbb300d53a4be3444e9247341b6eec9581bdf69714cea9f853
MD5 5393f380a9909faf23b1b076a7813041
BLAKE2b-256 c416ffdc8f871cb8bae18e321fb938d2a5876c29783b0bbab60c92851c5dc0f4

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ddbe0eedda3bbb9706b07f7c1a9e97ba14385df3f24e325fd6d8230884bb4c79
MD5 b6b32a54ff2ab9f4273dd16c2e20ed59
BLAKE2b-256 9d6a699538cb1501f7728033c4e217f27bc1fc4327a02910dccf8b5fa00f2491

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 edbc21c536d27feda5f00cc9e4ea18fce1fc30815cef0eacaae974a067cd0346
MD5 7c38de5cb1b5eef438de9f81eba6218c
BLAKE2b-256 2687444fd099ca13b1de546a6e20aa2be8ddb4d88060dd8c55be79832af6038e

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a31a7a694d0115fcea454e9623a06f23fcd981f68adafda83661f8d39531a1d3
MD5 1e6cb312e884e311d4d44664dbd6ee23
BLAKE2b-256 feecf93d70a79f54a568375cbebdf98fa42de0030161aabb926fdad27cb295db

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5242463e1697cfa5bcde6d9457591f798359f7be81b0b78ba64ab1e5a26c12f2
MD5 007a573f321e448f544e4f2de349563a
BLAKE2b-256 d50da9ac91e6a795cadf5fe4aa1805abc6af736febd301515a0f323de9fba966

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7a8e2255f01b7c5cd10301c9fd8b5974a104850c6395f62fdb2c4e9e692802d9
MD5 ede42618f904b80c93d70bd794268df6
BLAKE2b-256 1c546cb55d90280a87d58daf3b14a4c4fd02279300608e2466083c3218564811

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 97d988ffe00a6a42593b6174feafe15939c1de63fc1d079fb53f3e91d2eb07b2
MD5 6a7d2eedaf756323bdb3817d283ddfe0
BLAKE2b-256 dd1d3bf94398e0f319b551364f328f7463579d977a5964db8572aaa0e0c33fa4

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0cb838e29727a70c5935d7c3643038fb2a617b29270d2cf9ab03b4ef95a5adad
MD5 81812270656036b2c0b5e03a6c45a45f
BLAKE2b-256 9cff8f27eb2b63c673921deb476cc4e11be77a22910a0f2b7ce82c6748e926bd

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 95e61008e9d2a58d7072d2c77536c849ccc3251281407d8d1ea9b47109f2670d
MD5 d16d72a24d5d83c2d2b079bb4f3cffe7
BLAKE2b-256 d5bdcd6a1feb4bb9670c0ca9f4bcbb145765b6640c45cdc70d743268c63fdcaa

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 278b30e3b4fd9cfd7ea495a8b0afbbf12ca97ac7545d0ec8227b1c42c0a63922
MD5 12c72c3161af377b29672a54c6816e73
BLAKE2b-256 c3130524bba29a9d73b105f607014a26482800cd3a18e5e22aca37b49291807f

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 01029a00a1a677886c02cac15ec2fc110e8616d2d48c139d62bc26dc080df9a1
MD5 c06a4219874d1efe9309ba6fb942b4be
BLAKE2b-256 fb14f3f7f66b9f8a6d451876db924018d14593d9e28f27983bd5541968fbaba8

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1c5f1427d33a64117cf6de0c8a17bb52f95aae923f39693dec3ef214a0e799ec
MD5 3059e7fabfdb00c7657f35dfecb0d947
BLAKE2b-256 091bfef2a75fb6b927229808f80565601f9614c17b43e6b06f8ba93ee2596e45

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 85c241e10c25a9a3af6af0ed89d0870d2753862092d416cee02cc5e0217dac0b
MD5 06e95e101c53570d9ad85bc4b6c9c7bd
BLAKE2b-256 b75ef40c1790c1fc3d9d04eb8dffe3ac80b4fac8c6ddbac8d805a63177f3cc78

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-cp39-cp39-win32.whl.

File metadata

  • Download URL: just_playback-0.1.7-cp39-cp39-win32.whl
  • Upload date:
  • Size: 156.4 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.13

File hashes

Hashes for just_playback-0.1.7-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6f34e5b4e3202aa7d00e354d0a4378ce4555017dcf91b5f2c573ed9989de8d9e
MD5 3fd5edc7106282fb140d44663b2d45b1
BLAKE2b-256 1c437d41c0e72366286cc017ad3c53a49cd3e934724badb635c25a01bc57c8e6

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 960946c673e22f88da991955d745a161950a81e1f4f3aa39d33d314ba96d01ba
MD5 425e0ddf3a98b8cff7e29904a8d2bc2a
BLAKE2b-256 431161bbb72d8e6a7bc7be37b1f59ce671d68b483944eb594a9cbf9e98a85097

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2b18612374fe618c57d7f0d69106679e4ac0ee53a6e086ea62958850a8ce3aaa
MD5 6d4c10fc121e0c701dca9b00a83dfa59
BLAKE2b-256 637ca53d90782fd9e5f7afbffeb9b90a7cdea066860d13e52c05a9600faff5d2

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca7d1b7630420c7d0a2ea98c4ef8fd42b1eecf0f4bfe6bc473f41d9929cc90cb
MD5 e4865f063d115fa39c9d2d6020e00f0c
BLAKE2b-256 98457eb3e4a6818eabb5a52fc657454b4a1ca781f6840cb95207249b7a635865

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 71fc92c8e2f765f2abfe6a8cd6a47eedbd494dacc08193df730e25b13b250680
MD5 3bb16c259567a5d3658b1e03820f205b
BLAKE2b-256 cc259eec6f087cd57542ed79e64cdcfdddacc9bf39322aabe03a6e8cff906a4a

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cdf780ed41cfa1d311019d308df3a52ed3504814d8b8961aefa26b44ad803360
MD5 a68d9d92c29d1459c0f76a2e2e2b65cc
BLAKE2b-256 95c5ac93d53346f1c67894fa1bb7654a0622430fbea7fb63b0745e4de8a0de1c

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 da6e251564bd964d44e3834b903882f83a5a06d91992b42b6a3845452d51da18
MD5 89b5ff6cd1d33040a392076ed63a2c6d
BLAKE2b-256 eec90660762f47b983499a8b91ee97191c583278371461ebf820c7981a19d0f2

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-cp38-cp38-win32.whl.

File metadata

  • Download URL: just_playback-0.1.7-cp38-cp38-win32.whl
  • Upload date:
  • Size: 156.4 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.13

File hashes

Hashes for just_playback-0.1.7-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a48c4152da8a2c925b87bf1321d83fbb3b0ca4ee8155e24c880dd14dac5c7b3c
MD5 5d1490db9c102f2898f26399d1a8640b
BLAKE2b-256 7cfee005c3500881b9218bc4cf3b4d24d333c559fd08e8877b802371d9ce3e3e

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b75611a35f8b7f89fb47d4ce68f0ef0d63a5b4a4b60a1d5b7f6b32955e9894f4
MD5 5f27f5d592a9570ad0f5a9c26003e581
BLAKE2b-256 4d738f374599a2fd67452158da1de301b8ac86c7249b4604ce6a8642990bc01d

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4f79c92a7c710a4746af0febeb2dcef12a2ee767edd8e27d1acd051b944d3d23
MD5 3c152b880774f852f6173e6df770a5fa
BLAKE2b-256 37f700a4b06f4f6b8a137e82e90cbabd70fc58095b945bd43a9013147a096850

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2fb5b2b343404c1cc6ce36c7ea11f78db3aecdd6acf05c096e41894ee4d98744
MD5 8e209b32ff00cdb0677f54515c0bbe66
BLAKE2b-256 86bc01c02c360ed032b67a122b035966fef6a82219c6279d5dad61dde660d73d

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 13232cb233b4d2c63a58885caa6b34247cedac68c35e448e01e9fed8fdba7ff2
MD5 33ccad22b9317802c8235fcab1fdf683
BLAKE2b-256 d65d838e9a7eedad6d9fae9ebb6116e05150db3c613ca0e2e6f97a8d876478c7

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6364c5a41e826c6ce0fd57757669596e296d44ad5fb81d3a3f79f8742d86cd9e
MD5 cc2d3067175cd1015e212706cdc31082
BLAKE2b-256 dcf66301f16053edc51091136ad2951f112a09269e4dc9d2f3ef09d863a9f2e8

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 777d4f28d5259094a870d7efb5175d35c96ed3040293df6d3f6f38368466245a
MD5 2576cf48d7191d933db5a025ef97d987
BLAKE2b-256 eaf39b4735b29a82970be27a9547932bc7f15377b9e49e913a80e82c67693ea4

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 4d6ddf39f4137b13425861c0ebf59c6eb759712043e6a2d562ef61f9c4326574
MD5 b825ca9ae33197538a4cfb829a8ad68b
BLAKE2b-256 9939b4b6a9c490add9f621a1e5c159db0fbb40cb042e45e88f3f6f9c41d8045d

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2fc9261c9845572376eeca3be45acd8b3d1405a6c4eb2bda734460565aaafb47
MD5 d66a44dad90477b59e945e08ac93f5d4
BLAKE2b-256 182c52fc7b28debff9e61a154daf3cd8e7dcf09965cff580ceec9d14b7d36e96

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 099e4f16eeba3c7b13959c7006b29812b1a14a4561aef38f3ad55cf556b06f86
MD5 252c09a0c6133efcb84977c175c6176d
BLAKE2b-256 7f1310e3fb961818f4e5b9eb39c1f7169a9e4053c5c1dc0c804b749bb06797f5

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac7bd1a10c153a37b02892e27ed644b6dfee0a8a4523352caa2964301d97ab62
MD5 a88d70c2c9a9fa9f6c212521b6fb7e70
BLAKE2b-256 cfda66a61e9bebaf255f5c68a2f8b3d9f8361931e7dc58cfe288b9acfa925a3f

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3a70ecdcf3797b5db826db81f030032164c68ed76a91e213d1c956fff4b218be
MD5 b7a8f9849791e9fa43b28dc5cb16a9d9
BLAKE2b-256 d4fa49a1ec1bacee223e10e11461ebc593343c684b4cab76bf795efc031eb2df

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4a837f808b27ea41e16efb3a9ea7d1d779bbfdba446bebf7ee8f8c9d228701af
MD5 eb95043b6c913af6f0b0be14f10b13fe
BLAKE2b-256 d98d8beed3a418d9963fce222e2df88d92748b9a41eb19310b427ea2b60f7f88

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 4d8a8c48de31ac51173e0efbddc2614d9577a6e91ad42d7a7ae4068022fc240e
MD5 30e72d70359a507c5c4974b12a4aa420
BLAKE2b-256 3c44a0134143c8745c09188a811dd0daa5c748c05420b1ec851b7090b2420640

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-cp36-cp36m-win32.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 c19b4697b27cec1a367801a06660c214dfd1e90de8cc8815c45b32fe11dc8a27
MD5 9446fedd78048615f8fbbbb7d1a11bc6
BLAKE2b-256 922b7c0b4035aa2a0ccfdc26c6ab06b75a78a87c92659ae250c74e96ef59544c

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b2db8252338b9a35fd7d199917fe9de5f5ad59449fbc70b6cfe188f73e7587d4
MD5 6282a9e57e41ae5dd9fc9b9b53b21892
BLAKE2b-256 d655f66b1902f5865a94e91add09342bf03aa66ff246c90f096900ae5f40ff17

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6ecfc6382ba049e3f485cba4244689d53ef1c2d23bd8609bbac4cbf5bdb439c0
MD5 dc53e65fde35229c102c8657237a292d
BLAKE2b-256 c3bf007c1d48d40dbc43ee91be76fb549e9247b73868d222b7258f215d3671c6

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bc685b20844987cb2f11e0d3d275eec9edc7aade7b50a3d31eb29aba0f2109bf
MD5 ef59e6cd0f5411c96cb4636d8f5af4b7
BLAKE2b-256 50fc31d430d2895728be1ae79b9d5744c50aab6c25a49f8ad44ccf1270e3fc5d

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ea3cf0beab7eed878b30db56d8db161582273e1470273b8a5c23d4459829a99a
MD5 ffea401c495e73e6fd3f7e50e2824dd9
BLAKE2b-256 729445f62e669a4eaa7201f4e063cdde3c3088a0ede719018db423ca7d1ef1cb

See more details on using hashes here.

File details

Details for the file just_playback-0.1.7-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for just_playback-0.1.7-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8a7c7a9f58a34201dd2a29f5da8d969bcff11d3eefb51fbea743999fd0b54acc
MD5 8d7b6c5845c026927b0a6d1679f3ba82
BLAKE2b-256 bfcd447502440dbd690097a54a4792cbd760f6a70b9b83880da3ffdbcdd8d093

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page