Name | glow JSON |
Version |
0.14.2
JSON |
| download |
home_page | None |
Summary | Functional Python tools |
upload_time | 2025-01-23 14:57:32 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.12 |
license | MIT License
Copyright (c) 2019 Paul Maevskikh
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 |
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
|
# Glow Library
Set of functional tools for easier prototyping
## Overview
...
## Installation
For basic installation use:
```bash
pip install glow
```
<details>
<summary>Specific versions with additional requirements</summary>
```bash
pip install glow[io] # For I/O extras
pip install glow[all] # For all
```
</details>
Glow is compatible with: Python 3.10+.
Tested on ArchLinux, Ubuntu 20.04/22.04, Windows 10/11.
## Structure
- `glow.*` - Core parts, available out the box
- `glow.io.*` - I/O wrappers to access data in convenient formats
## Core features
- `glow.mapped` - convenient tool to parallelize computations
- `glow.memoize` - use if you want to reduce number of calls for any function
## IO features
### `glow.io.Sound` - playable sound wrapper
<details>
```python
from datetime import timedelta
import numpy as np
from glow.io import Sound
array: np.ndarray
sound = Sound(array, rate=44100) # Wrap np.ndarray
sound = Sound.load('test.flac') # Load sound into memory from file
# Get properties
rate: int = sound.rate
duration: timedelta = sound.duration
dtype: np.dtype = sound.dtype
# Plays sound through default device, supports Ctrl-C for interruption
sound.play()
```
</details>
Raw data
{
"_id": null,
"home_page": null,
"name": "glow",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.12",
"maintainer_email": "Paul Maevskikh <arquolo@gmail.com>",
"keywords": null,
"author": null,
"author_email": "Paul Maevskikh <arquolo@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/73/4e/4e2718f574017ab6825272f019f559a1cc99a68eb7a3b196839cf56534e2/glow-0.14.2.tar.gz",
"platform": null,
"description": "# Glow Library\nSet of functional tools for easier prototyping\n\n## Overview\n...\n\n## Installation\n\nFor basic installation use:\n\n```bash\npip install glow\n```\n<details>\n<summary>Specific versions with additional requirements</summary>\n\n```bash\npip install glow[io] # For I/O extras\npip install glow[all] # For all\n```\n</details>\nGlow is compatible with: Python 3.10+.\nTested on ArchLinux, Ubuntu 20.04/22.04, Windows 10/11.\n\n## Structure\n- `glow.*` - Core parts, available out the box\n- `glow.io.*` - I/O wrappers to access data in convenient formats\n\n## Core features\n- `glow.mapped` - convenient tool to parallelize computations\n- `glow.memoize` - use if you want to reduce number of calls for any function\n\n## IO features\n\n### `glow.io.Sound` - playable sound wrapper\n<details>\n\n```python\nfrom datetime import timedelta\n\nimport numpy as np\nfrom glow.io import Sound\n\narray: np.ndarray\nsound = Sound(array, rate=44100) # Wrap np.ndarray\nsound = Sound.load('test.flac') # Load sound into memory from file\n\n# Get properties\nrate: int = sound.rate\nduration: timedelta = sound.duration\ndtype: np.dtype = sound.dtype\n\n # Plays sound through default device, supports Ctrl-C for interruption\nsound.play()\n```\n</details>\n",
"bugtrack_url": null,
"license": "MIT License\n \n Copyright (c) 2019 Paul Maevskikh\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.",
"summary": "Functional Python tools",
"version": "0.14.2",
"project_urls": {
"homepage": "https://github.com/arquolo/glow"
},
"split_keywords": [],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "ddd4ead8678395fa7c48c3a61ebb43705331943ac119d3652863689b6b56c33b",
"md5": "5774c1e4608a6435720accb0199cd835",
"sha256": "344c3959166c09852b76b0b6bda02ad347a5dc3b754d2de2785e35569f986431"
},
"downloads": -1,
"filename": "glow-0.14.2-py3-none-any.whl",
"has_sig": false,
"md5_digest": "5774c1e4608a6435720accb0199cd835",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.12",
"size": 56420,
"upload_time": "2025-01-23T14:57:31",
"upload_time_iso_8601": "2025-01-23T14:57:31.040610Z",
"url": "https://files.pythonhosted.org/packages/dd/d4/ead8678395fa7c48c3a61ebb43705331943ac119d3652863689b6b56c33b/glow-0.14.2-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "734e4e2718f574017ab6825272f019f559a1cc99a68eb7a3b196839cf56534e2",
"md5": "6ea7f10b6982b3ffcd5287b201cb45d8",
"sha256": "6be6692c88c2f37b23915db96a6c94669b3983c51e74f8d00ead64fabda890f0"
},
"downloads": -1,
"filename": "glow-0.14.2.tar.gz",
"has_sig": false,
"md5_digest": "6ea7f10b6982b3ffcd5287b201cb45d8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.12",
"size": 48911,
"upload_time": "2025-01-23T14:57:32",
"upload_time_iso_8601": "2025-01-23T14:57:32.624189Z",
"url": "https://files.pythonhosted.org/packages/73/4e/4e2718f574017ab6825272f019f559a1cc99a68eb7a3b196839cf56534e2/glow-0.14.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-01-23 14:57:32",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "arquolo",
"github_project": "glow",
"travis_ci": false,
"coveralls": true,
"github_actions": false,
"lcname": "glow"
}