Name | chipi JSON |
Version |
0.0.1
JSON |
| download |
home_page | https://github.com/remokasu/chipi |
Summary | buffer management tool for Python |
upload_time | 2023-05-10 11:47:12 |
maintainer | |
docs_url | None |
author | remokasu |
requires_python | |
license | MIT License Copyright (c) 2023 Remokasu 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 |
No coveralls.
|
# CHIPI - Comprehensive History and Interactive Python Interface
CHIPI is a flexible and easy-to-use Python package for managing and manipulating data in buffers. It provides a comprehensive history tracking system and an interactive Python interface for handling data operations in buffers.
## Features
- Create and manage multiple buffers
- Flexible buffer size with optional maximum length
- Built-in methods for data manipulation and analysis
- Extendable with custom methods
- Import and export data from JSON and CSV files
## Installation
To install CHIPI, simply run:
```sh
pip install chipi
```
## Quick Start
```python
from chipi import Buffer, BufferManager
# Create a buffer and add some data
buf = Buffer("my_data")
buf.add(1)
buf.add(2)
buf.add(3)
# Retrieve data
print(buf.current_value) # Output: 3
print(buf.previous_value) # Output: 2
print(buf.data) # Output: [1, 2, 3]
# Create a BufferManager for managing multiple buffers
labels = ["data1", "data2", "data3"]
buff_mgr = BufferManager(labels)
# Add data to the managed buffers
buff_mgr.d["data1"].add(10)
buff_mgr.d["data2"].add(20)
buff_mgr.d["data3"].add(30)
# Get data from a managed buffer
print(buff_mgr.get_data("data1")) # Output: [10]
```
Raw data
{
"_id": null,
"home_page": "https://github.com/remokasu/chipi",
"name": "chipi",
"maintainer": "",
"docs_url": null,
"requires_python": "",
"maintainer_email": "",
"keywords": "",
"author": "remokasu",
"author_email": "",
"download_url": "https://files.pythonhosted.org/packages/e0/48/50e4898fe544d8247345631ce1a591513015dc85dac6c2fecc3e510d2794/chipi-0.0.1.tar.gz",
"platform": null,
"description": "# CHIPI - Comprehensive History and Interactive Python Interface\n\nCHIPI is a flexible and easy-to-use Python package for managing and manipulating data in buffers. It provides a comprehensive history tracking system and an interactive Python interface for handling data operations in buffers.\n\n## Features\n\n- Create and manage multiple buffers\n- Flexible buffer size with optional maximum length\n- Built-in methods for data manipulation and analysis\n- Extendable with custom methods\n- Import and export data from JSON and CSV files\n\n## Installation\n\nTo install CHIPI, simply run:\n\n```sh\npip install chipi\n```\n\n## Quick Start\n\n```python\nfrom chipi import Buffer, BufferManager\n\n# Create a buffer and add some data\nbuf = Buffer(\"my_data\")\nbuf.add(1)\nbuf.add(2)\nbuf.add(3)\n\n# Retrieve data\nprint(buf.current_value) # Output: 3\nprint(buf.previous_value) # Output: 2\nprint(buf.data) # Output: [1, 2, 3]\n\n# Create a BufferManager for managing multiple buffers\nlabels = [\"data1\", \"data2\", \"data3\"]\nbuff_mgr = BufferManager(labels)\n\n# Add data to the managed buffers\nbuff_mgr.d[\"data1\"].add(10)\nbuff_mgr.d[\"data2\"].add(20)\nbuff_mgr.d[\"data3\"].add(30)\n\n# Get data from a managed buffer\nprint(buff_mgr.get_data(\"data1\")) # Output: [10]\n```\n",
"bugtrack_url": null,
"license": "MIT License Copyright (c) 2023 Remokasu 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": "buffer management tool for Python",
"version": "0.0.1",
"project_urls": {
"Homepage": "https://github.com/remokasu/chipi"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "e04850e4898fe544d8247345631ce1a591513015dc85dac6c2fecc3e510d2794",
"md5": "8f4d79949f44be3ecc176da7e1d44425",
"sha256": "038f60babf01efba348bdd5cf4ce96220fb91c036c109eae8674c0ce23bbebba"
},
"downloads": -1,
"filename": "chipi-0.0.1.tar.gz",
"has_sig": false,
"md5_digest": "8f4d79949f44be3ecc176da7e1d44425",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 6373,
"upload_time": "2023-05-10T11:47:12",
"upload_time_iso_8601": "2023-05-10T11:47:12.695299Z",
"url": "https://files.pythonhosted.org/packages/e0/48/50e4898fe544d8247345631ce1a591513015dc85dac6c2fecc3e510d2794/chipi-0.0.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-05-10 11:47:12",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "remokasu",
"github_project": "chipi",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"lcname": "chipi"
}