edopi


Nameedopi JSON
Version 1.1.0 PyPI version JSON
download
home_pagehttps://github.com/luansimoes/edopi
SummaryPython package to deal with Group-Theoretic microtonal music structures
upload_time2023-05-28 21:08:21
maintainer
docs_urlNone
authorFlavia Elias e Luan Simões
requires_python
licenseMIT License
keywords microtonal edo music group-theoretic
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # EDOπ: A Python Library for Group-Theoretic Microtonal Music Structures

### Installation
```
pip install edopi
```

### Get started
How to generate the main structures and visualizations:

```Python
from edopi import TonalSystem

# Instantiate a 12-EDO with generator 7
edo_12 = TonalSystem(12, 7)

# Show the Chromatic representation
edo_12.show()

# Show the cycle of Fifths
edo_12.show_gCycle()

# Get the diatonic scale and show it
diatonic = edo_12.diatonic_scale()
diatonic.show()

# Get Balzano Diagram and show it
b_diagram = edo_12.balzano_diagram(3, 4)
b_diagram.show()
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/luansimoes/edopi",
    "name": "edopi",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "microtonal edo music group-theoretic",
    "author": "Flavia Elias e Luan Sim\u00f5es",
    "author_email": "luansimoes@cos.ufrj.br",
    "download_url": "https://files.pythonhosted.org/packages/d3/0b/7379533acf507c64b597fdb9ed58676e2e2bb377047029f5eb697672a4bc/edopi-1.1.0.tar.gz",
    "platform": null,
    "description": "# EDOπ: A Python Library for Group-Theoretic Microtonal Music Structures\n\n### Installation\n```\npip install edopi\n```\n\n### Get started\nHow to generate the main structures and visualizations:\n\n```Python\nfrom edopi import TonalSystem\n\n# Instantiate a 12-EDO with generator 7\nedo_12 = TonalSystem(12, 7)\n\n# Show the Chromatic representation\nedo_12.show()\n\n# Show the cycle of Fifths\nedo_12.show_gCycle()\n\n# Get the diatonic scale and show it\ndiatonic = edo_12.diatonic_scale()\ndiatonic.show()\n\n# Get Balzano Diagram and show it\nb_diagram = edo_12.balzano_diagram(3, 4)\nb_diagram.show()\n```\n",
    "bugtrack_url": null,
    "license": "MIT License",
    "summary": "Python package to deal with Group-Theoretic microtonal music structures",
    "version": "1.1.0",
    "project_urls": {
        "Homepage": "https://github.com/luansimoes/edopi"
    },
    "split_keywords": [
        "microtonal",
        "edo",
        "music",
        "group-theoretic"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cfa564b61088f2539e71ed675fc031151038494afb6e59c808c976a4a036d378",
                "md5": "88f7b54c9fec927d88ee16335a263cec",
                "sha256": "8b06fbd8bd5c652318433d0200c4b4bf83a840a4ca55e2d97ecf39aa645a2dd5"
            },
            "downloads": -1,
            "filename": "edopi-1.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "88f7b54c9fec927d88ee16335a263cec",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 11687,
            "upload_time": "2023-05-28T21:08:18",
            "upload_time_iso_8601": "2023-05-28T21:08:18.034252Z",
            "url": "https://files.pythonhosted.org/packages/cf/a5/64b61088f2539e71ed675fc031151038494afb6e59c808c976a4a036d378/edopi-1.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d30b7379533acf507c64b597fdb9ed58676e2e2bb377047029f5eb697672a4bc",
                "md5": "fc7294e67795ba885fcf64b713ff99a7",
                "sha256": "1858a4449157ace6153db7f8b783adcb07fe5705444d3e13ca1179f8fe8ae24d"
            },
            "downloads": -1,
            "filename": "edopi-1.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "fc7294e67795ba885fcf64b713ff99a7",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 11392,
            "upload_time": "2023-05-28T21:08:21",
            "upload_time_iso_8601": "2023-05-28T21:08:21.384301Z",
            "url": "https://files.pythonhosted.org/packages/d3/0b/7379533acf507c64b597fdb9ed58676e2e2bb377047029f5eb697672a4bc/edopi-1.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-05-28 21:08:21",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "luansimoes",
    "github_project": "edopi",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "lcname": "edopi"
}
        
Elapsed time: 0.07511s