aiodav


Nameaiodav JSON
Version 0.1.12 PyPI version JSON
download
home_pagehttps://github.com/jorgeajimenezl/aiodav
SummaryA Python Async WebDAV Client
upload_time2023-04-27 12:35:20
maintainer
docs_urlNone
authorJorge Alejandro Jimenez Luna
requires_python
licenseMIT License
keywords webdav client files internet download upload
VCS
bugtrack_url
requirements aiohttp aiofiles faust-cchardet aiodns lxml
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Python Async WebDAV Client
![PyPI](https://img.shields.io/pypi/v/aiodav)
![Downloads](https://img.shields.io/pypi/dm/aiodav)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/aiodav)

A asynchronous WebDAV client that use `asyncio` 

> Based on [webdavclient3](https://github.com/ezhov-evgeny/webdav-client-python-3)

## Installation
We periodically publish source code and wheels [on PyPI](https://pypi.python.org/pypi/aiodav).
```bash
$ pip install aiodav
```

For install the most updated version:
```bash
$ git clone https://github.com/jorgeajimenezl/aiodav.git
$ cd aiodav
$ pip install -e .
```

## Getting started
```python
from aiodav import Client
import asyncio

async def main():
    async with Client('https://webdav.server.com', login='juan', password='cabilla') as client:
        space = await client.free()
        print(f"Free space: {space} bytes")
        
        async def progress(c, t):
            print(f"{c} bytes / {t} bytes")

        await client.download_file('/remote/file.zip', 
                                    '/local/file.zip',
                                    progress=progress)

asyncio.run(main())
```

## License
[MIT License](./LICENSE)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/jorgeajimenezl/aiodav",
    "name": "aiodav",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "webdav,client,files,internet,download,upload",
    "author": "Jorge Alejandro Jimenez Luna",
    "author_email": "jorgeajimenezl17@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/de/8a/663fa9bea27c0085f58294652dbca806ce03e650d1af433c58e9ae851b92/aiodav-0.1.12.tar.gz",
    "platform": null,
    "description": "# Python Async WebDAV Client\n![PyPI](https://img.shields.io/pypi/v/aiodav)\n![Downloads](https://img.shields.io/pypi/dm/aiodav)\n![PyPI - Python Version](https://img.shields.io/pypi/pyversions/aiodav)\n\nA asynchronous WebDAV client that use `asyncio` \n\n> Based on [webdavclient3](https://github.com/ezhov-evgeny/webdav-client-python-3)\n\n## Installation\nWe periodically publish source code and wheels [on PyPI](https://pypi.python.org/pypi/aiodav).\n```bash\n$ pip install aiodav\n```\n\nFor install the most updated version:\n```bash\n$ git clone https://github.com/jorgeajimenezl/aiodav.git\n$ cd aiodav\n$ pip install -e .\n```\n\n## Getting started\n```python\nfrom aiodav import Client\nimport asyncio\n\nasync def main():\n    async with Client('https://webdav.server.com', login='juan', password='cabilla') as client:\n        space = await client.free()\n        print(f\"Free space: {space} bytes\")\n        \n        async def progress(c, t):\n            print(f\"{c} bytes / {t} bytes\")\n\n        await client.download_file('/remote/file.zip', \n                                    '/local/file.zip',\n                                    progress=progress)\n\nasyncio.run(main())\n```\n\n## License\n[MIT License](./LICENSE)\n",
    "bugtrack_url": null,
    "license": "MIT License",
    "summary": "A Python Async WebDAV Client",
    "version": "0.1.12",
    "split_keywords": [
        "webdav",
        "client",
        "files",
        "internet",
        "download",
        "upload"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ac20e20015cdc7912ffbf10ee43bd8eddec821bed02a4558514d37b668912b4b",
                "md5": "e2c693f17cd668c083c1dac4c0f109a4",
                "sha256": "c5afdd65918c01f716e6cc6a673f5118e85adeb7127a0eb1c70bcb748f0b025a"
            },
            "downloads": -1,
            "filename": "aiodav-0.1.12-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "e2c693f17cd668c083c1dac4c0f109a4",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 14287,
            "upload_time": "2023-04-27T12:35:18",
            "upload_time_iso_8601": "2023-04-27T12:35:18.927952Z",
            "url": "https://files.pythonhosted.org/packages/ac/20/e20015cdc7912ffbf10ee43bd8eddec821bed02a4558514d37b668912b4b/aiodav-0.1.12-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "de8a663fa9bea27c0085f58294652dbca806ce03e650d1af433c58e9ae851b92",
                "md5": "8500c7db2459549f1a50dca0be10be29",
                "sha256": "ad6eb3b95f473afc329c4f9081a3510f0bf84171f5d9c6773a09b6e515f464e8"
            },
            "downloads": -1,
            "filename": "aiodav-0.1.12.tar.gz",
            "has_sig": false,
            "md5_digest": "8500c7db2459549f1a50dca0be10be29",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 13915,
            "upload_time": "2023-04-27T12:35:20",
            "upload_time_iso_8601": "2023-04-27T12:35:20.875617Z",
            "url": "https://files.pythonhosted.org/packages/de/8a/663fa9bea27c0085f58294652dbca806ce03e650d1af433c58e9ae851b92/aiodav-0.1.12.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-04-27 12:35:20",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "jorgeajimenezl",
    "github_project": "aiodav",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "aiohttp",
            "specs": []
        },
        {
            "name": "aiofiles",
            "specs": []
        },
        {
            "name": "faust-cchardet",
            "specs": []
        },
        {
            "name": "aiodns",
            "specs": []
        },
        {
            "name": "lxml",
            "specs": []
        }
    ],
    "lcname": "aiodav"
}
        
Elapsed time: 0.06075s