Name | abjad JSON |
Version |
3.29
JSON |
| download |
home_page | None |
Summary | Abjad is a Python API for building LilyPond files. |
upload_time | 2025-08-28 16:23:06 |
maintainer | None |
docs_url | https://pythonhosted.org/abjad/ |
author | None |
requires_python | >=3.12 |
license | MIT |
keywords |
lilypond
music composition
music notation
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
Abjad 3.29
==========
Abjad helps composers build up complex pieces of music notation in iterative
and incremental ways. Use Abjad to create a symbolic representation of all the
notes, rests, chords, tuplets, beams and slurs in any score. Because Abjad
extends the Python programming language, you can use Abjad to make systematic
changes to music as you work. Because Abjad wraps the LilyPond music notation
package, you can use Abjad to control the typographic detail of symbols on the
page.
.. image:: https://img.shields.io/badge/python-3.12-blue.svg
:target: https://www.python.org/downloads/release/python-312/
:alt: Python 3.12
.. image:: https://img.shields.io/badge/python-3.13-blue.svg
:target: https://www.python.org/downloads/release/python-313/
:alt: Python 3.13
.. image:: https://img.shields.io/pypi/v/abjad.svg?style=flat-square
:target: https://pypi.python.org/pypi/abjad
.. image:: https://img.shields.io/pypi/dm/abjad.svg?style=flat-square
:target: https://pypi.python.org/pypi/abjad
.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
:target: https://github.com/ambv/black
----
Abjad's documentation is available here: https://abjad.github.io
Abjad's install instructions are tested on macOS and Linux.
Abjad requires Python 3.12 (or later):
.. code-block::
~$ python --version
Python 3.13.3
Abjad requires LilyPond 2.25.26 (or later).
Make sure LilyPond is installed:
http://lilypond.org/development.html
Make sure LilyPond is callable from the commandline:
.. code-block::
$ lilypond --version
GNU LilyPond 2.25.26 (running Guile 3.0)
Copyright (c) 1996--2023 by
Han-Wen Nienhuys <hanwen@xs4all.nl>
Jan Nieuwenhuizen <janneke@gnu.org>
and others.
This program is free software. It is covered by the GNU General Public
License and you are welcome to change it and/or distribute copies of it
under certain conditions. Invoke as `lilypond --warranty' for more
information.
Create a Python 3 virtual environment for Abjad:
https://docs.python.org/3/tutorial/venv.html
Activate the virtual environment and then use pip to install Abjad:
.. code-block::
~$ python -m pip install abjad
Start Python, import Abjad, start making music notation:
.. code-block::
~$ python
>>> import abjad
>>> note = abjad.Note("c'4")
>>> abjad.show(note)
..
.. image:: hello.png
----
Join the Abjad community: https://abjad.github.io/appendices/community.html
Raw data
{
"_id": null,
"home_page": null,
"name": "abjad",
"maintainer": null,
"docs_url": "https://pythonhosted.org/abjad/",
"requires_python": ">=3.12",
"maintainer_email": null,
"keywords": "lilypond, music composition, music notation",
"author": null,
"author_email": "Trevor Ba\u010da <trevor.baca@gmail.com>, Jos\u00e9phine Wolf Oberholtzer <josephine.wolf.oberholtzer@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/4b/74/b4c955868f88d72dbf16b145ccf57f8e93dde574059ae05de41aa814754c/abjad-3.29.tar.gz",
"platform": null,
"description": "Abjad 3.29\n==========\n\nAbjad helps composers build up complex pieces of music notation in iterative\nand incremental ways. Use Abjad to create a symbolic representation of all the\nnotes, rests, chords, tuplets, beams and slurs in any score. Because Abjad\nextends the Python programming language, you can use Abjad to make systematic\nchanges to music as you work. Because Abjad wraps the LilyPond music notation\npackage, you can use Abjad to control the typographic detail of symbols on the\npage.\n\n.. image:: https://img.shields.io/badge/python-3.12-blue.svg\n :target: https://www.python.org/downloads/release/python-312/\n :alt: Python 3.12\n\n.. image:: https://img.shields.io/badge/python-3.13-blue.svg\n :target: https://www.python.org/downloads/release/python-313/\n :alt: Python 3.13\n\n.. image:: https://img.shields.io/pypi/v/abjad.svg?style=flat-square\n :target: https://pypi.python.org/pypi/abjad\n\n.. image:: https://img.shields.io/pypi/dm/abjad.svg?style=flat-square\n :target: https://pypi.python.org/pypi/abjad\n\n.. image:: https://img.shields.io/badge/code%20style-black-000000.svg\n :target: https://github.com/ambv/black\n\n----\n\nAbjad's documentation is available here: https://abjad.github.io\n\nAbjad's install instructions are tested on macOS and Linux.\n\nAbjad requires Python 3.12 (or later):\n\n.. code-block::\n\n ~$ python --version\n Python 3.13.3\n\nAbjad requires LilyPond 2.25.26 (or later).\n\nMake sure LilyPond is installed:\nhttp://lilypond.org/development.html\n\nMake sure LilyPond is callable from the commandline:\n\n.. code-block::\n\n $ lilypond --version\n GNU LilyPond 2.25.26 (running Guile 3.0)\n\n Copyright (c) 1996--2023 by\n Han-Wen Nienhuys <hanwen@xs4all.nl>\n Jan Nieuwenhuizen <janneke@gnu.org>\n and others.\n\n This program is free software. It is covered by the GNU General Public\n License and you are welcome to change it and/or distribute copies of it\n under certain conditions. Invoke as `lilypond --warranty' for more\n information.\n\nCreate a Python 3 virtual environment for Abjad:\nhttps://docs.python.org/3/tutorial/venv.html\n\nActivate the virtual environment and then use pip to install Abjad:\n\n.. code-block::\n\n ~$ python -m pip install abjad\n\nStart Python, import Abjad, start making music notation:\n\n.. code-block::\n\n ~$ python\n >>> import abjad\n >>> note = abjad.Note(\"c'4\")\n >>> abjad.show(note)\n\n..\n .. image:: hello.png\n\n----\n\nJoin the Abjad community: https://abjad.github.io/appendices/community.html\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Abjad is a Python API for building LilyPond files.",
"version": "3.29",
"project_urls": {
"Homepage": "https://abjad.github.io"
},
"split_keywords": [
"lilypond",
" music composition",
" music notation"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "e69ba1f4fed441da8b8f4cdc4c46f74a6155f86a9bcf1a73e4a6e0e1aef26831",
"md5": "5c35803982e9945fec2730239e621eb6",
"sha256": "25d83eb8ebe38f182eecac5adecaf10d52fa594281c1458c68021f48b1ced137"
},
"downloads": -1,
"filename": "abjad-3.29-py3-none-any.whl",
"has_sig": false,
"md5_digest": "5c35803982e9945fec2730239e621eb6",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.12",
"size": 427598,
"upload_time": "2025-08-28T16:23:04",
"upload_time_iso_8601": "2025-08-28T16:23:04.095934Z",
"url": "https://files.pythonhosted.org/packages/e6/9b/a1f4fed441da8b8f4cdc4c46f74a6155f86a9bcf1a73e4a6e0e1aef26831/abjad-3.29-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4b74b4c955868f88d72dbf16b145ccf57f8e93dde574059ae05de41aa814754c",
"md5": "05e4ecf0324c84c7c552b9ce6b06a285",
"sha256": "0975b343b6d35f7e81dae31cf4506d52b241ee8422a5cf1fb15ad132f595f4dc"
},
"downloads": -1,
"filename": "abjad-3.29.tar.gz",
"has_sig": false,
"md5_digest": "05e4ecf0324c84c7c552b9ce6b06a285",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.12",
"size": 459904,
"upload_time": "2025-08-28T16:23:06",
"upload_time_iso_8601": "2025-08-28T16:23:06.409100Z",
"url": "https://files.pythonhosted.org/packages/4b/74/b4c955868f88d72dbf16b145ccf57f8e93dde574059ae05de41aa814754c/abjad-3.29.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-08-28 16:23:06",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "abjad"
}