array-cache


Namearray-cache JSON
Version 1.0.1 PyPI version JSON
download
home_page
SummaryCache the current index of you array
upload_time2023-11-01 16:01:24
maintainer
docs_urlNone
author
requires_python>=3.6
licenseMIT License Copyright (c) 2023 n4n5 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 cache array array-cache array_cache arraycache
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # array-cache

## Usage

```python
from array_cache import ArrayCache

# save to cache every x item
CACHE_DELAY=10

cached_array = array_cache.ArrayCache(data_array, "my-identifier", CACHE_DELAY)
for one_word in cached_array.get_data():
    # use here
```

## License

Licensed under the MIT License - [LICENSE](LICENSE)

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "array-cache",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "cache,array,array-cache,array_cache,arraycache",
    "author": "",
    "author_email": "n4n5 <its.just.n4n5@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/e7/26/1189150bb3c3ad56393c1eeb6008d14a46ac8e7763895163d8dcfdc8f9d6/array-cache-1.0.1.tar.gz",
    "platform": null,
    "description": "# array-cache\n\n## Usage\n\n```python\nfrom array_cache import ArrayCache\n\n# save to cache every x item\nCACHE_DELAY=10\n\ncached_array = array_cache.ArrayCache(data_array, \"my-identifier\", CACHE_DELAY)\nfor one_word in cached_array.get_data():\n    # use here\n```\n\n## License\n\nLicensed under the MIT License - [LICENSE](LICENSE)\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2023 n4n5  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": "Cache the current index of you array",
    "version": "1.0.1",
    "project_urls": {
        "Bug Tracker": "https://github.com/Its-Just-Nans/array-cache/issues",
        "Homepage": "https://github.com/Its-Just-Nans/array-cache"
    },
    "split_keywords": [
        "cache",
        "array",
        "array-cache",
        "array_cache",
        "arraycache"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c74a51a1eecf01f45708ea7d373d248ee097081531a357915f5080bf66cc8b30",
                "md5": "21281f5fbbc53ffc55dec48ed1cbfdc5",
                "sha256": "24e62730788af17dee3be0228ad29f6983f2d8923dac8f521d0c0750fe9c3228"
            },
            "downloads": -1,
            "filename": "array_cache-1.0.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "21281f5fbbc53ffc55dec48ed1cbfdc5",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 3602,
            "upload_time": "2023-11-01T16:01:22",
            "upload_time_iso_8601": "2023-11-01T16:01:22.931859Z",
            "url": "https://files.pythonhosted.org/packages/c7/4a/51a1eecf01f45708ea7d373d248ee097081531a357915f5080bf66cc8b30/array_cache-1.0.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e7261189150bb3c3ad56393c1eeb6008d14a46ac8e7763895163d8dcfdc8f9d6",
                "md5": "8c1b10eda78890b30d6555f6d598d81b",
                "sha256": "6721fae75dfb3b7571f243b37fa599f4596d3feaa0edf8500f5b2c5e27a1a95b"
            },
            "downloads": -1,
            "filename": "array-cache-1.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "8c1b10eda78890b30d6555f6d598d81b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 2849,
            "upload_time": "2023-11-01T16:01:24",
            "upload_time_iso_8601": "2023-11-01T16:01:24.081945Z",
            "url": "https://files.pythonhosted.org/packages/e7/26/1189150bb3c3ad56393c1eeb6008d14a46ac8e7763895163d8dcfdc8f9d6/array-cache-1.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-01 16:01:24",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Its-Just-Nans",
    "github_project": "array-cache",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "lcname": "array-cache"
}
        
Elapsed time: 0.13491s