Metadata-Version: 2.1
Name: FoxDotChord
Version: 0.0.4b0
Summary: Chords for use in FoxDot
Project-URL: Homepage, https://codeberg.com/taconi/FoxDotChord
Project-URL: Documentation, https://foxdotchord.readthedocs.io
Project-URL: Repository, https://codeberg.com/taconi/FoxDotChord
Project-URL: Contributor Guide, https://foxdotchord.readthedocs.io/contributing
Project-URL: Issue tracker, https://codeberg.com/taconi/FoxDotChord/issues
Author-email: taconi <igor.taconi@protonmail.com>
Maintainer-email: taconi <igor.taconi@protonmail.com>
License-Expression: GPL-3.0-or-later
License-File: LICENSE
Keywords: FoxDot,chord,foxdot
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Utilities
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# FoxDotChord

[![Documentation](https://img.shields.io/badge/docs-latest-1769AA?color=%234051b5)](https://foxdotchord.readthedocs.io)
[![License](https://img.shields.io/pypi/l/FoxDotChord?label=License&color=%234051b5)](https://spdx.org/licenses/)

[![Supported Python versions](https://img.shields.io/pypi/pyversions/FoxDotChord.svg?logo=python&label=Python&color=%2373DC8C)](https://pypi.python.org/pypi/FoxDotChord/)
[![PyPI version](https://img.shields.io/pypi/v/FoxDotChord.svg?logo=pypi&label=PyPI&color=%2373DC8C)](https://pypi.org/project/FoxDotChord/)
[![Downloads](https://img.shields.io/pypi/dm/FoxDotChord?logo=pypi&label=Downloads&color=%2373DC8C)](https://pypi.org/project/FoxDotChord/)

[![Issue Tracker](https://img.shields.io/badge/Issue-Tracker-1769AA?color=%234B78E6)](https://codeberg.org/taconi/FoxDotChord/issues)
[![Contributing](https://img.shields.io/badge/Contributing-welcome-1769AA?color=%234B78E6)](https://foxdotchord.readthedocs.io/contributing)
[![Built with Material for MkDocs](https://img.shields.io/badge/Material_for_MkDocs-526CFE?logo=MaterialForMkDocs&logoColor=white)](https://squidfunk.github.io/mkdocs-material/)

---

Chords for use in FoxDot.

## Instalation

Use the package manager you prefer

```sh
pip install FoxDotChord
```

## How to use?

```python
from FoxDotChord import PChord

Scale.default = 'chromatic'  # It needs to be chromatic

c0 = PChord['C, Am7, Dm, Em']

t0 >> keys(c0.every(3, 'bubble'), dur=PDur(3, 8))

b0 >> sawbass(c0, amp=1, pan=[0, 1, -1, 0])

d0 >> play('x-o({-=}[--])')
```

## Contribute

See the [Contributor Guide](https://foxdotchord.readthedocs.io/contributing).
