import vlc
p = vlc.MediaPlayer("sample.mp3")
p.play()
import vlc
p = vlc.MediaPlayer("sample.mp3")
p.play()
# This code snippet plays the sample.mp3 file in the current
# working directory.
# If you don’t have vlc package installed on your system,
# you can install it with the command:
"""
$ pip install python-vlc
"""