async-unzip


Nameasync-unzip JSON
Version 0.3.5 PyPI version JSON
download
home_pagehttps://github.com/ueni-ltd/async-unzip
SummaryAsync unzipping to prevent asyncio timeout errors and decrease the memory usage for bigger zip files
upload_time2023-03-27 13:54:44
maintainer
docs_urlNone
authorDmytro Nikolayev
requires_python
licenseMIT
keywords async unzip
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # async-unzip
Asynchronous unzipping of big files with low memory usage in Python
Helps with big zip files unpacking (memory usage + buffer_size could be changed).
Also, prevents having Asyncio Timeout errors especially in case of many workers using same CPU cores.

```python
from async_unzip.unzipper import unzip
import asyncio

asyncio.run(unzip('tests/test_files/nvidia_me.zip', path='some_dir'))
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/ueni-ltd/async-unzip",
    "name": "async-unzip",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "async unzip",
    "author": "Dmytro Nikolayev",
    "author_email": "dnikolayev@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/d4/2a/6d771016474e418bec550ac4bb4d8b342887ebb56f5e74d0e964c5465858/async-unzip-0.3.5.tar.gz",
    "platform": null,
    "description": "# async-unzip\nAsynchronous unzipping of big files with low memory usage in Python\nHelps with big zip files unpacking (memory usage + buffer_size could be changed).\nAlso, prevents having Asyncio Timeout errors especially in case of many workers using same CPU cores.\n\n```python\nfrom async_unzip.unzipper import unzip\nimport asyncio\n\nasyncio.run(unzip('tests/test_files/nvidia_me.zip', path='some_dir'))\n```\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Async unzipping to prevent asyncio timeout errors and decrease the memory usage for bigger zip files",
    "version": "0.3.5",
    "split_keywords": [
        "async",
        "unzip"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7fd3cbf5e3676fffde13be93c1efaf6ef98d05ee1ec6ad1f63c065d831a06577",
                "md5": "332ff73675b1872c1f40e5bbc4838d34",
                "sha256": "e40f0bb41111b566091bd6eac1f7113c67123a3fd0e9f26d3b586e3218a5a723"
            },
            "downloads": -1,
            "filename": "async_unzip-0.3.5-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "332ff73675b1872c1f40e5bbc4838d34",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 3886,
            "upload_time": "2023-03-27T13:54:39",
            "upload_time_iso_8601": "2023-03-27T13:54:39.837491Z",
            "url": "https://files.pythonhosted.org/packages/7f/d3/cbf5e3676fffde13be93c1efaf6ef98d05ee1ec6ad1f63c065d831a06577/async_unzip-0.3.5-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d42a6d771016474e418bec550ac4bb4d8b342887ebb56f5e74d0e964c5465858",
                "md5": "0a3042cc5ef1704835f789359cdae450",
                "sha256": "684523b68f44d4bbbb57a93ece8d7d579e7ae6b991d9c444abfe6df969de6f60"
            },
            "downloads": -1,
            "filename": "async-unzip-0.3.5.tar.gz",
            "has_sig": false,
            "md5_digest": "0a3042cc5ef1704835f789359cdae450",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 3860,
            "upload_time": "2023-03-27T13:54:44",
            "upload_time_iso_8601": "2023-03-27T13:54:44.959056Z",
            "url": "https://files.pythonhosted.org/packages/d4/2a/6d771016474e418bec550ac4bb4d8b342887ebb56f5e74d0e964c5465858/async-unzip-0.3.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-03-27 13:54:44",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "ueni-ltd",
    "github_project": "async-unzip",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "async-unzip"
}
        
Elapsed time: 0.05047s