Metadata-Version: 2.1
Name: euphony
Version: 0.0.4
Summary: Play music while your code runs
Home-page: https://github.com/vinaykale64/euphony
Author: Vinay Dinkar Kale
Author-email: vinaykale64@protonmail.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
Requires-Dist: pygame (>=2.0.0)

# Euphony

![py27](https://img.shields.io/badge/python-2.7-brightgreen)
![py36](https://img.shields.io/badge/python-3.6%2B-brightgreen)
![black](https://img.shields.io/badge/black--white)
![pypi](https://img.shields.io/badge/pypi-v0.0.2-blue)
![license](https://img.shields.io/badge/license-MIT-white)

Python package to play music in background while your code runs.

## How to use

Its pretty simple to use. Create a instance of the `player` class and let your code run enclosed in a with statement with the instance.

``` python

  from euphony import player
  mozart = player.player()

  with mozart:
      for i in range(1000000000):
          pass
  # plays music while the code runs
```

That's all ~!

## Installation

Euphony is pip-installable. Just run following cmd in terminal:

``` bash
  pip install euphony
```


