File: __init__.py

package info (click to toggle)
python-playsound3 3.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 880 kB
  • sloc: python: 540; sh: 10; makefile: 4
file content (19 lines) | stat: -rw-r--r-- 345 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
__license__ = "MIT"
__version__ = "3.3.0"
__author__ = "Szymon Mikler"

from playsound3.playsound3 import (
    AVAILABLE_BACKENDS,
    DEFAULT_BACKEND,
    PlaysoundException,
    playsound,
    prefer_backends,
)

__all__ = [
    "AVAILABLE_BACKENDS",
    "DEFAULT_BACKEND",
    "playsound",
    "prefer_backends",
    "PlaysoundException",
]