Name | cyal JSON |
Version |
0.4.3
JSON |
| download |
home_page | |
Summary | Cython bindings for OpenAL |
upload_time | 2024-03-04 17:15:18 |
maintainer | |
docs_url | None |
author | |
requires_python | >=3.10 |
license | MIT License Copyright (c) 2023 Michael Connor Buchan <mikey@blindcomputing.org> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
keywords |
audio
openal
cython
bindings
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# Cyal - Cython Wrapper for OpenAL
[![PyPI version](https://badge.fury.io/py/cyal.svg)](https://badge.fury.io/py/cyal)
[![Build](https://github.com/lower-elements/cyal/actions/workflows/release.yml/badge.svg)](https://github.com/lower-elements/cyal/actions/workflows/release.yml)
Cyal is a [Python][python] wrapper for [OpenAL][openal], a cross platform, 3D audio API built by Creative Labs. This
project aims to be compatible with any conforming OpenAL 1.1 implementation, but receives the most testing on [OpenAL
Soft][openal-soft]. It is written in [Cython][cython].
[python]: <https://python.org>
[openal]: <https://openal.org>
[openal-soft]: <https://openal-soft.org>
[cython]: <https://cython.org>
## Installation
Install with pip, just as you would any Python package.
```sh
pip install cyal
```
Binary distributions are available for Windows, macOS and Linux, and include a bundled version of OpenAL Soft.
## Building from source
When building from source, CMake will try to detect an existing OpenAL implementation on your system, and will use that
if it finds one. If an OpenAL implementation isn't found, OpenAL Soft will be downloaded, compiled, and bundled with
Cyal.
Manual installation:
```bash
# Clone the repository
git clone https://github.com/lower-elements/cyal
cd cyal
# Install a simple wheel build tool
pip install build
# Build both the sdist and bdist (see the options to build if you only want to build one)
python -m build .
# Install the .whl file in the dist directory
```
## Contributing
[This project][project-page] is hosted on [Github][github]. Feel free to [submit an issue][issues] if you find a bug,
open a [pull request][pr] to contribute, or join our Matrix room, [#cyal:lowerelements.club][[matrix-room] for Cyal
discussion and support.
[project-page]: <https://github.com/lower-elements/cyal>
[github]: <https://github.com>
[issues]: <https://github.com/lower-elements/cyal/issues/new>
[pr]: <https://github.com/lower-elements/cyal/pull/new>
[matrix-room]: <https://matrix.to/#/#cyal:lowerelements.club>
## License
Cyal is licensed under the MIT License.
MIT License
Copyright (c) 2023 Michael Connor Buchan <mikey@blindcomputing.org>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Raw data
{
"_id": null,
"home_page": "",
"name": "cyal",
"maintainer": "",
"docs_url": null,
"requires_python": ">=3.10",
"maintainer_email": "",
"keywords": "audio openal cython bindings",
"author": "",
"author_email": "Michael Connor Buchan <mikey@blindcomputing.org>",
"download_url": "",
"platform": null,
"description": "# Cyal - Cython Wrapper for OpenAL\n\n[![PyPI version](https://badge.fury.io/py/cyal.svg)](https://badge.fury.io/py/cyal)\n[![Build](https://github.com/lower-elements/cyal/actions/workflows/release.yml/badge.svg)](https://github.com/lower-elements/cyal/actions/workflows/release.yml)\n\nCyal is a [Python][python] wrapper for [OpenAL][openal], a cross platform, 3D audio API built by Creative Labs. This\nproject aims to be compatible with any conforming OpenAL 1.1 implementation, but receives the most testing on [OpenAL\nSoft][openal-soft]. It is written in [Cython][cython].\n\n[python]: <https://python.org>\n[openal]: <https://openal.org>\n[openal-soft]: <https://openal-soft.org>\n[cython]: <https://cython.org>\n\n## Installation\n\n\nInstall with pip, just as you would any Python package.\n\n```sh\npip install cyal\n```\n\nBinary distributions are available for Windows, macOS and Linux, and include a bundled version of OpenAL Soft.\n\n## Building from source\n\nWhen building from source, CMake will try to detect an existing OpenAL implementation on your system, and will use that\nif it finds one. If an OpenAL implementation isn't found, OpenAL Soft will be downloaded, compiled, and bundled with\nCyal.\n\nManual installation:\n\n```bash\n# Clone the repository\ngit clone https://github.com/lower-elements/cyal\ncd cyal\n# Install a simple wheel build tool\npip install build\n# Build both the sdist and bdist (see the options to build if you only want to build one)\npython -m build .\n# Install the .whl file in the dist directory\n```\n\n## Contributing\n\n[This project][project-page] is hosted on [Github][github]. Feel free to [submit an issue][issues] if you find a bug,\nopen a [pull request][pr] to contribute, or join our Matrix room, [#cyal:lowerelements.club][[matrix-room] for Cyal\ndiscussion and support.\n\n[project-page]: <https://github.com/lower-elements/cyal>\n[github]: <https://github.com>\n[issues]: <https://github.com/lower-elements/cyal/issues/new>\n[pr]: <https://github.com/lower-elements/cyal/pull/new>\n[matrix-room]: <https://matrix.to/#/#cyal:lowerelements.club>\n\n## License\n\nCyal is licensed under the MIT License.\n\n MIT License\n\n Copyright (c) 2023 Michael Connor Buchan <mikey@blindcomputing.org>\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n",
"bugtrack_url": null,
"license": "MIT License Copyright (c) 2023 Michael Connor Buchan <mikey@blindcomputing.org> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.",
"summary": "Cython bindings for OpenAL",
"version": "0.4.3",
"project_urls": {
"Bug tracker": "https://github.com/lower-elements/cyal/issues",
"Contribute": "https://github.com/lower-elements/cyal/pull/new",
"Homepage": "https://github.com/lower-elements/cyal#readme",
"Repository": "https://github.com/lower-elements/cyal"
},
"split_keywords": [
"audio",
"openal",
"cython",
"bindings"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "927267083a465d517951b658ab3efaa3182920cdb78442eefa9a3e0c339d47c8",
"md5": "b6a2fcb823170d838e7c3dd71232ac0d",
"sha256": "fdc1f8b6d7aa4c3ec338baf524524998fb5cf82d9d89ee20e542acd51fb5f5dc"
},
"downloads": -1,
"filename": "cyal-0.4.3-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "b6a2fcb823170d838e7c3dd71232ac0d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.10",
"size": 4362189,
"upload_time": "2024-03-04T17:15:18",
"upload_time_iso_8601": "2024-03-04T17:15:18.706047Z",
"url": "https://files.pythonhosted.org/packages/92/72/67083a465d517951b658ab3efaa3182920cdb78442eefa9a3e0c339d47c8/cyal-0.4.3-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "09632497825c6fc71610f28026dd7a7584d6ca907cb5479880b34f31fa7f3b3b",
"md5": "ad6c5acacd4569d2aac40f65242f5c4e",
"sha256": "1dc0819b269b2d2351e57118fef3f3fce692d7375da2f276fbc70f590e817df4"
},
"downloads": -1,
"filename": "cyal-0.4.3-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "ad6c5acacd4569d2aac40f65242f5c4e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.10",
"size": 1153323,
"upload_time": "2024-03-04T17:28:48",
"upload_time_iso_8601": "2024-03-04T17:28:48.583510Z",
"url": "https://files.pythonhosted.org/packages/09/63/2497825c6fc71610f28026dd7a7584d6ca907cb5479880b34f31fa7f3b3b/cyal-0.4.3-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fc9ff0edf828f221fb45a07bb44b536261eff66c2d21bec2bea37f4c41a1325b",
"md5": "807b08a3b2f9016c3a2c8d661e36944d",
"sha256": "4367f36704a99ec31d09930c2d4d04367cec51338b78598c19cb908afe25fedf"
},
"downloads": -1,
"filename": "cyal-0.4.3-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "807b08a3b2f9016c3a2c8d661e36944d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.10",
"size": 1322113,
"upload_time": "2024-03-04T17:28:49",
"upload_time_iso_8601": "2024-03-04T17:28:49.891913Z",
"url": "https://files.pythonhosted.org/packages/fc/9f/f0edf828f221fb45a07bb44b536261eff66c2d21bec2bea37f4c41a1325b/cyal-0.4.3-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "921b32e7c5e22be0f15d84b6ce1af9e7d311c153e5fa539fdf45dc1519477db1",
"md5": "53a2f295cb6dbe90c35ef80be2cc5376",
"sha256": "f8e8c8dbb38c0591966d82ce9561b85c351510311ac89143422e4a7dd262ce3c"
},
"downloads": -1,
"filename": "cyal-0.4.3-cp310-cp310-win_arm64.whl",
"has_sig": false,
"md5_digest": "53a2f295cb6dbe90c35ef80be2cc5376",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.10",
"size": 1163780,
"upload_time": "2024-03-04T17:28:51",
"upload_time_iso_8601": "2024-03-04T17:28:51.218181Z",
"url": "https://files.pythonhosted.org/packages/92/1b/32e7c5e22be0f15d84b6ce1af9e7d311c153e5fa539fdf45dc1519477db1/cyal-0.4.3-cp310-cp310-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3136d152e5f6f0381be29b03f3a830dee3998a4b93c56a12bf888749c00bd71f",
"md5": "37f9c736232d460c40543f6050ff8114",
"sha256": "fae1fd78609596ce4d2b91b8b6f60d63e6c10da371bc70d3d624feee4ef40f25"
},
"downloads": -1,
"filename": "cyal-0.4.3-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "37f9c736232d460c40543f6050ff8114",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.10",
"size": 4364025,
"upload_time": "2024-03-04T17:15:21",
"upload_time_iso_8601": "2024-03-04T17:15:21.809653Z",
"url": "https://files.pythonhosted.org/packages/31/36/d152e5f6f0381be29b03f3a830dee3998a4b93c56a12bf888749c00bd71f/cyal-0.4.3-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "508b8dfac0d36ac2447ef80bfc2e4149e23a694e68902c0a3647cfc2ea314dea",
"md5": "f9462fca4eb5f434504cc1de7eef2d64",
"sha256": "1a0f36f431dcbdd95eb38362e52a27d78c3adec9bc24616990962b8c6602e66b"
},
"downloads": -1,
"filename": "cyal-0.4.3-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "f9462fca4eb5f434504cc1de7eef2d64",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.10",
"size": 1151188,
"upload_time": "2024-03-04T17:28:53",
"upload_time_iso_8601": "2024-03-04T17:28:53.109508Z",
"url": "https://files.pythonhosted.org/packages/50/8b/8dfac0d36ac2447ef80bfc2e4149e23a694e68902c0a3647cfc2ea314dea/cyal-0.4.3-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f23d3ae8d7478d07ad3708a791fd1d9248760b4d11d319b244f6b62f18cb77cc",
"md5": "2e867ae5f1d0691acdef606fb7400656",
"sha256": "be3ff74a42b9fcb40da6c5eb163bb571b62b862fc984ed58a0166e7daa7d48d3"
},
"downloads": -1,
"filename": "cyal-0.4.3-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "2e867ae5f1d0691acdef606fb7400656",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.10",
"size": 1324677,
"upload_time": "2024-03-04T17:28:54",
"upload_time_iso_8601": "2024-03-04T17:28:54.824924Z",
"url": "https://files.pythonhosted.org/packages/f2/3d/3ae8d7478d07ad3708a791fd1d9248760b4d11d319b244f6b62f18cb77cc/cyal-0.4.3-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5ffb4236e6a9f5de34ad6871de31f9a2edeeb4f3f278d682c527adb5352aaf93",
"md5": "c2a1748da544765a9d1e867da60a4004",
"sha256": "89de69c7d0a6ed15d77bf52d811bddd33c2415a42c6aae08fe4c92951ce99cfb"
},
"downloads": -1,
"filename": "cyal-0.4.3-cp311-cp311-win_arm64.whl",
"has_sig": false,
"md5_digest": "c2a1748da544765a9d1e867da60a4004",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.10",
"size": 1169639,
"upload_time": "2024-03-04T17:28:56",
"upload_time_iso_8601": "2024-03-04T17:28:56.120849Z",
"url": "https://files.pythonhosted.org/packages/5f/fb/4236e6a9f5de34ad6871de31f9a2edeeb4f3f278d682c527adb5352aaf93/cyal-0.4.3-cp311-cp311-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a2a70351819d8504c268db17c7643f98f375d5a92fbb3a9dd58cdd67a1837155",
"md5": "cd7edabd807481a79c797c126e20e2a4",
"sha256": "1d43078eef90e3d1e05120669a1c390e8077bf6d22e31704067a3d1546589095"
},
"downloads": -1,
"filename": "cyal-0.4.3-cp312-cp312-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "cd7edabd807481a79c797c126e20e2a4",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.10",
"size": 4387538,
"upload_time": "2024-03-04T17:15:23",
"upload_time_iso_8601": "2024-03-04T17:15:23.282992Z",
"url": "https://files.pythonhosted.org/packages/a2/a7/0351819d8504c268db17c7643f98f375d5a92fbb3a9dd58cdd67a1837155/cyal-0.4.3-cp312-cp312-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "69b769832c5d71b86cfee3d054d1d1776d22494afe94df768d5528228102ac81",
"md5": "d199c9d71fe250f8b64910d9e5487ac2",
"sha256": "b8f546fe51d9cb2309b5b1cdaf6be11e3772598c3e282a66e2b763fa561ade54"
},
"downloads": -1,
"filename": "cyal-0.4.3-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "d199c9d71fe250f8b64910d9e5487ac2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.10",
"size": 1157195,
"upload_time": "2024-03-04T17:28:57",
"upload_time_iso_8601": "2024-03-04T17:28:57.323746Z",
"url": "https://files.pythonhosted.org/packages/69/b7/69832c5d71b86cfee3d054d1d1776d22494afe94df768d5528228102ac81/cyal-0.4.3-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "12abf772791fcede684ea8959fdb24773b26876af283e4278124f7cfc0cace9c",
"md5": "f751016a8b14119558e9b493bc1969a4",
"sha256": "e4462fecd7748c1ac9b39310527b89488f20cd8b4a78e4b15fc6a1d1d3889a5d"
},
"downloads": -1,
"filename": "cyal-0.4.3-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "f751016a8b14119558e9b493bc1969a4",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.10",
"size": 1332154,
"upload_time": "2024-03-04T17:28:58",
"upload_time_iso_8601": "2024-03-04T17:28:58.622829Z",
"url": "https://files.pythonhosted.org/packages/12/ab/f772791fcede684ea8959fdb24773b26876af283e4278124f7cfc0cace9c/cyal-0.4.3-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "81bb8bddaef909d86ff34a9667504d3d0ed260958ef821abf2c1684334b42262",
"md5": "52a111524780045deb20c1a79bfe7a04",
"sha256": "1b9b665c5b93c6d09f31dac321676ed135b9249688f507d18dd6e991c84357bf"
},
"downloads": -1,
"filename": "cyal-0.4.3-cp312-cp312-win_arm64.whl",
"has_sig": false,
"md5_digest": "52a111524780045deb20c1a79bfe7a04",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.10",
"size": 1169436,
"upload_time": "2024-03-04T17:29:00",
"upload_time_iso_8601": "2024-03-04T17:29:00.434569Z",
"url": "https://files.pythonhosted.org/packages/81/bb/8bddaef909d86ff34a9667504d3d0ed260958ef821abf2c1684334b42262/cyal-0.4.3-cp312-cp312-win_arm64.whl",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-03-04 17:15:18",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "lower-elements",
"github_project": "cyal",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "cyal"
}