Metadata-Version: 2.3
Name: pythons_musicals
Version: 1.1.0.3
Summary: This library can play sounds and your music.
Author: JUMP10
Requires-Python: >=3.2
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: asttokens (>=3.0.0,<4.0.0)
Requires-Dist: colorama (>=0.4.6,<0.5.0)
Requires-Dist: executing (>=2.2.0,<3.0.0)
Requires-Dist: loguru (>=0.7.3,<0.8.0)
Requires-Dist: pygments (>=2.19.1,<3.0.0)
Requires-Dist: rich (>=14.0.0,<15.0.0)
Requires-Dist: ruff (>=0.11.13,<0.12.0)
Project-URL: Homepage, https://www.pypi.org/project/pythons_musicals
Description-Content-Type: text/markdown

## Open

 image: https://i.pinimg.com/originals/0f/4e/86/0f4e86b2085cecc78942b05279c961d3.png


## About

This Python's library can "play" the notes and she can download YOUR music.

It's got two modules: `note` and `load_music`

## Installing
Enter in your bash:
```bash
pip install pythons_musicals
```

## Call the functions

Note module's call is:

```py
import pythons_musicals

<yourNoteVariable> = pythons_musicals.note.load(<note>)

if __name__ == "__main__":
    <yourNoteVariable>.play()
```

and load_music module's call is:

```py

    import pythons_musicals

    <SoundVariable> = pythons_muscals.load_music.load(<yourDirectory>)

    if __name__ == "__main__":
        <SoundVariable>.start()
```

ATTENTION!
------

Note module's got method `play()`, and load_music module's got method `start()`
