euphony package

Submodules

euphony.player module

class euphony.player.Player(artist=None)[source]

Bases: object

The player class creates an instance which can be used to play classical music while code runs in background. It’s instance will be used as an argument to the with statement.

Parameters

artist (str, Optional) – Choose among ‘bach’, ‘beethoven’ and ‘mozart’ to play specific music. If not specified, the code plays a random music file.

Returns

object – To be used as an argument for with statement to wrap code around

Return type

type player

Example

from euphony.player import Player
artist = Player() # random music selector
bach = Player(artist='bach') # for bach music
beethoven = Player(artist='beethoven') # for beethoven music
mozart = Player(artist='mozart') # for mozart music

# Works for any of the above 4
with mozart:
    for i in range(1000000000):
        pass
# Music plays till code completes and then stops.
...

Module contents

Package Initialization